From b1b06e08e1ab6965853509d5f0398b9befe9c906 Mon Sep 17 00:00:00 2001 From: JohnBraham Date: Wed, 9 Sep 2026 19:21:46 +0100 Subject: [PATCH] Port Mineralogy 6.1.2 to NeoForge 1.21.11 --- .github/workflows/ci.yml | 18 +- .github/workflows/codeql-analysis.yml | 4 +- .github/workflows/validate-gradle-build.yml | 4 +- CHANGELOG.txt | 37 +++ README.md | 10 +- build.gradle | 140 ++++++++--- docs/CONTENT_CONFIG.md | 2 +- docs/DEVELOPER_GUIDE.md | 50 ++-- docs/PLAYER_GUIDE.md | 23 +- docs/PROVIDER.md | 8 +- docs/README.md | 2 +- docs/VERSIONS.md | 18 +- gradle.properties | 20 +- resourcepack/x128/pack.mcmeta | 5 +- resourcepack/x16/pack.mcmeta | 5 +- resourcepack/x32/pack.mcmeta | 5 +- resourcepack/x64/pack.mcmeta | 5 +- scripts/generate-locales.ps1 | 2 +- scripts/generate-recipes.ps1 | 80 ++++--- .../zone/moddev/mc/mineralogy/Mineralogy.java | 3 +- .../mc/mineralogy/MineralogyConfig.java | 6 +- .../moddev/mc/mineralogy/blocks/Chalk.java | 4 +- .../mc/mineralogy/blocks/DoubleSlab.java | 12 +- .../moddev/mc/mineralogy/blocks/DryWall.java | 8 +- .../moddev/mc/mineralogy/blocks/Gypsum.java | 4 +- .../blocks/MineralogyLiquidBlock.java | 31 ++- .../zone/moddev/mc/mineralogy/blocks/Ore.java | 10 +- .../moddev/mc/mineralogy/blocks/Rock.java | 14 +- .../mc/mineralogy/blocks/RockFurnace.java | 49 ++-- .../mc/mineralogy/blocks/RockRelief.java | 2 +- .../moddev/mc/mineralogy/blocks/RockSalt.java | 4 +- .../mc/mineralogy/blocks/RockSaltLamp.java | 17 +- .../mineralogy/blocks/RockSaltStreetLamp.java | 17 +- .../moddev/mc/mineralogy/blocks/RockSlab.java | 34 +-- .../mc/mineralogy/blocks/RockStairs.java | 7 +- .../moddev/mc/mineralogy/blocks/RockWall.java | 7 +- .../mc/mineralogy/client/ClientSetup.java | 25 +- .../compat/CobblestoneTagPolicy.java | 177 +++++++------- .../moddev/mc/mineralogy/init/Blocks.java | 6 +- .../zone/moddev/mc/mineralogy/init/Items.java | 34 +-- .../mc/mineralogy/init/MineralogyFluids.java | 53 ++--- .../mineralogy/init/MineralogyItemGroups.java | 10 +- .../init/RegistrationProperties.java | 33 +++ .../mc/mineralogy/init/TileEntities.java | 13 +- .../inventory/SlotRockFurnaceOutput.java | 17 +- .../mineralogy/items/MineralFertilizer.java | 4 +- .../mixin/BlockStateDataAccessor.java | 15 ++ .../mineralogy/mixin/BlockStateDataMixin.java | 33 +++ .../mc/mineralogy/mixin/CommonHooksMixin.java | 20 ++ .../OreSpawnEarlyTagCompatibilityMixin.java | 40 ++++ .../mixin/ReloadableServerResourcesMixin.java | 22 ++ .../mixin/SimpleRegionStorageMixin.java | 30 +++ .../mineralogy/mixin/WorldGenRegionMixin.java | 20 ++ .../LegacyTileEntityIdNormalizer.java | 2 +- .../patching/LegacyWorldDataHook.java | 161 ++++++------- .../mc/mineralogy/patching/PatchHandler.java | 26 +-- .../tileentity/TileEntityRockFurnace.java | 100 ++++---- .../resources/META-INF/accesstransformer.cfg | 10 +- src/main/resources/META-INF/coremods.json | 3 - .../resources/META-INF/neoforge.mods.toml | 5 +- .../assets/mineralogy/items/amphibolite.json | 6 + .../mineralogy/items/amphibolite_brick.json | 6 + .../items/amphibolite_brick_furnace.json | 6 + .../items/amphibolite_brick_slab.json | 6 + .../items/amphibolite_brick_stairs.json | 6 + .../items/amphibolite_brick_wall.json | 6 + .../mineralogy/items/amphibolite_furnace.json | 6 + .../items/amphibolite_relief_axe.json | 6 + .../items/amphibolite_relief_blank.json | 6 + .../items/amphibolite_relief_cross.json | 6 + .../items/amphibolite_relief_hammer.json | 6 + .../items/amphibolite_relief_hoe.json | 6 + .../items/amphibolite_relief_horizontal.json | 6 + .../items/amphibolite_relief_i.json | 6 + .../items/amphibolite_relief_left.json | 6 + .../items/amphibolite_relief_pickaxe.json | 6 + .../items/amphibolite_relief_plus.json | 6 + .../items/amphibolite_relief_right.json | 6 + .../items/amphibolite_relief_sword.json | 6 + .../items/amphibolite_relief_vertical.json | 6 + .../mineralogy/items/amphibolite_slab.json | 6 + .../mineralogy/items/amphibolite_smooth.json | 6 + .../items/amphibolite_smooth_brick.json | 6 + .../amphibolite_smooth_brick_furnace.json | 6 + .../items/amphibolite_smooth_brick_slab.json | 6 + .../amphibolite_smooth_brick_stairs.json | 6 + .../items/amphibolite_smooth_brick_wall.json | 6 + .../items/amphibolite_smooth_furnace.json | 6 + .../items/amphibolite_smooth_slab.json | 6 + .../items/amphibolite_smooth_stairs.json | 6 + .../items/amphibolite_smooth_wall.json | 6 + .../mineralogy/items/amphibolite_stairs.json | 6 + .../mineralogy/items/amphibolite_wall.json | 6 + .../assets/mineralogy/items/andesite.json | 6 + .../mineralogy/items/andesite_brick.json | 6 + .../items/andesite_brick_furnace.json | 6 + .../mineralogy/items/andesite_brick_slab.json | 6 + .../items/andesite_brick_stairs.json | 6 + .../mineralogy/items/andesite_brick_wall.json | 6 + .../mineralogy/items/andesite_furnace.json | 6 + .../mineralogy/items/andesite_relief_axe.json | 6 + .../items/andesite_relief_blank.json | 6 + .../items/andesite_relief_cross.json | 6 + .../items/andesite_relief_hammer.json | 6 + .../mineralogy/items/andesite_relief_hoe.json | 6 + .../items/andesite_relief_horizontal.json | 6 + .../mineralogy/items/andesite_relief_i.json | 6 + .../items/andesite_relief_left.json | 6 + .../items/andesite_relief_pickaxe.json | 6 + .../items/andesite_relief_plus.json | 6 + .../items/andesite_relief_right.json | 6 + .../items/andesite_relief_sword.json | 6 + .../items/andesite_relief_vertical.json | 6 + .../mineralogy/items/andesite_slab.json | 6 + .../mineralogy/items/andesite_smooth.json | 6 + .../items/andesite_smooth_brick.json | 6 + .../items/andesite_smooth_brick_furnace.json | 6 + .../items/andesite_smooth_brick_slab.json | 6 + .../items/andesite_smooth_brick_stairs.json | 6 + .../items/andesite_smooth_brick_wall.json | 6 + .../items/andesite_smooth_furnace.json | 6 + .../items/andesite_smooth_slab.json | 6 + .../items/andesite_smooth_stairs.json | 6 + .../items/andesite_smooth_wall.json | 6 + .../mineralogy/items/andesite_stairs.json | 6 + .../mineralogy/items/andesite_wall.json | 6 + .../assets/mineralogy/items/basalt.json | 6 + .../assets/mineralogy/items/basalt_brick.json | 6 + .../items/basalt_brick_furnace.json | 6 + .../mineralogy/items/basalt_brick_slab.json | 6 + .../mineralogy/items/basalt_brick_stairs.json | 6 + .../mineralogy/items/basalt_brick_wall.json | 6 + .../mineralogy/items/basalt_furnace.json | 6 + .../mineralogy/items/basalt_relief_axe.json | 6 + .../mineralogy/items/basalt_relief_blank.json | 6 + .../mineralogy/items/basalt_relief_cross.json | 6 + .../items/basalt_relief_hammer.json | 6 + .../mineralogy/items/basalt_relief_hoe.json | 6 + .../items/basalt_relief_horizontal.json | 6 + .../mineralogy/items/basalt_relief_i.json | 6 + .../mineralogy/items/basalt_relief_left.json | 6 + .../items/basalt_relief_pickaxe.json | 6 + .../mineralogy/items/basalt_relief_plus.json | 6 + .../mineralogy/items/basalt_relief_right.json | 6 + .../mineralogy/items/basalt_relief_sword.json | 6 + .../items/basalt_relief_vertical.json | 6 + .../assets/mineralogy/items/basalt_slab.json | 6 + .../mineralogy/items/basalt_smooth.json | 6 + .../mineralogy/items/basalt_smooth_brick.json | 6 + .../items/basalt_smooth_brick_furnace.json | 6 + .../items/basalt_smooth_brick_slab.json | 6 + .../items/basalt_smooth_brick_stairs.json | 6 + .../items/basalt_smooth_brick_wall.json | 6 + .../items/basalt_smooth_furnace.json | 6 + .../mineralogy/items/basalt_smooth_slab.json | 6 + .../items/basalt_smooth_stairs.json | 6 + .../mineralogy/items/basalt_smooth_wall.json | 6 + .../mineralogy/items/basalt_stairs.json | 6 + .../assets/mineralogy/items/basalt_wall.json | 6 + .../mineralogy/items/basaltic_glass.json | 6 + .../items/basaltic_glass_brick.json | 6 + .../items/basaltic_glass_brick_furnace.json | 6 + .../items/basaltic_glass_brick_slab.json | 6 + .../items/basaltic_glass_brick_stairs.json | 6 + .../items/basaltic_glass_brick_wall.json | 6 + .../items/basaltic_glass_furnace.json | 6 + .../items/basaltic_glass_relief_axe.json | 6 + .../items/basaltic_glass_relief_blank.json | 6 + .../items/basaltic_glass_relief_cross.json | 6 + .../items/basaltic_glass_relief_hammer.json | 6 + .../items/basaltic_glass_relief_hoe.json | 6 + .../basaltic_glass_relief_horizontal.json | 6 + .../items/basaltic_glass_relief_i.json | 6 + .../items/basaltic_glass_relief_left.json | 6 + .../items/basaltic_glass_relief_pickaxe.json | 6 + .../items/basaltic_glass_relief_plus.json | 6 + .../items/basaltic_glass_relief_right.json | 6 + .../items/basaltic_glass_relief_sword.json | 6 + .../items/basaltic_glass_relief_vertical.json | 6 + .../mineralogy/items/basaltic_glass_slab.json | 6 + .../items/basaltic_glass_smooth.json | 6 + .../items/basaltic_glass_smooth_brick.json | 6 + .../basaltic_glass_smooth_brick_furnace.json | 6 + .../basaltic_glass_smooth_brick_slab.json | 6 + .../basaltic_glass_smooth_brick_stairs.json | 6 + .../basaltic_glass_smooth_brick_wall.json | 6 + .../items/basaltic_glass_smooth_furnace.json | 6 + .../items/basaltic_glass_smooth_slab.json | 6 + .../items/basaltic_glass_smooth_stairs.json | 6 + .../items/basaltic_glass_smooth_wall.json | 6 + .../items/basaltic_glass_stairs.json | 6 + .../mineralogy/items/basaltic_glass_wall.json | 6 + .../assets/mineralogy/items/chalk.json | 6 + .../assets/mineralogy/items/chalk_dust.json | 6 + .../assets/mineralogy/items/chert.json | 6 + .../assets/mineralogy/items/conglomerate.json | 6 + .../mineralogy/items/conglomerate_brick.json | 6 + .../items/conglomerate_brick_furnace.json | 6 + .../items/conglomerate_brick_slab.json | 6 + .../items/conglomerate_brick_stairs.json | 6 + .../items/conglomerate_brick_wall.json | 6 + .../items/conglomerate_furnace.json | 6 + .../items/conglomerate_relief_axe.json | 6 + .../items/conglomerate_relief_blank.json | 6 + .../items/conglomerate_relief_cross.json | 6 + .../items/conglomerate_relief_hammer.json | 6 + .../items/conglomerate_relief_hoe.json | 6 + .../items/conglomerate_relief_horizontal.json | 6 + .../items/conglomerate_relief_i.json | 6 + .../items/conglomerate_relief_left.json | 6 + .../items/conglomerate_relief_pickaxe.json | 6 + .../items/conglomerate_relief_plus.json | 6 + .../items/conglomerate_relief_right.json | 6 + .../items/conglomerate_relief_sword.json | 6 + .../items/conglomerate_relief_vertical.json | 6 + .../mineralogy/items/conglomerate_slab.json | 6 + .../mineralogy/items/conglomerate_smooth.json | 6 + .../items/conglomerate_smooth_brick.json | 6 + .../conglomerate_smooth_brick_furnace.json | 6 + .../items/conglomerate_smooth_brick_slab.json | 6 + .../conglomerate_smooth_brick_stairs.json | 6 + .../items/conglomerate_smooth_brick_wall.json | 6 + .../items/conglomerate_smooth_furnace.json | 6 + .../items/conglomerate_smooth_slab.json | 6 + .../items/conglomerate_smooth_stairs.json | 6 + .../items/conglomerate_smooth_wall.json | 6 + .../mineralogy/items/conglomerate_stairs.json | 6 + .../mineralogy/items/conglomerate_wall.json | 6 + .../mineralogy/items/crude_oil_bucket.json | 6 + .../assets/mineralogy/items/diabase.json | 6 + .../mineralogy/items/diabase_brick.json | 6 + .../items/diabase_brick_furnace.json | 6 + .../mineralogy/items/diabase_brick_slab.json | 6 + .../items/diabase_brick_stairs.json | 6 + .../mineralogy/items/diabase_brick_wall.json | 6 + .../mineralogy/items/diabase_furnace.json | 6 + .../mineralogy/items/diabase_relief_axe.json | 6 + .../items/diabase_relief_blank.json | 6 + .../items/diabase_relief_cross.json | 6 + .../items/diabase_relief_hammer.json | 6 + .../mineralogy/items/diabase_relief_hoe.json | 6 + .../items/diabase_relief_horizontal.json | 6 + .../mineralogy/items/diabase_relief_i.json | 6 + .../mineralogy/items/diabase_relief_left.json | 6 + .../items/diabase_relief_pickaxe.json | 6 + .../mineralogy/items/diabase_relief_plus.json | 6 + .../items/diabase_relief_right.json | 6 + .../items/diabase_relief_sword.json | 6 + .../items/diabase_relief_vertical.json | 6 + .../assets/mineralogy/items/diabase_slab.json | 6 + .../mineralogy/items/diabase_smooth.json | 6 + .../items/diabase_smooth_brick.json | 6 + .../items/diabase_smooth_brick_furnace.json | 6 + .../items/diabase_smooth_brick_slab.json | 6 + .../items/diabase_smooth_brick_stairs.json | 6 + .../items/diabase_smooth_brick_wall.json | 6 + .../items/diabase_smooth_furnace.json | 6 + .../mineralogy/items/diabase_smooth_slab.json | 6 + .../items/diabase_smooth_stairs.json | 6 + .../mineralogy/items/diabase_smooth_wall.json | 6 + .../mineralogy/items/diabase_stairs.json | 6 + .../assets/mineralogy/items/diabase_wall.json | 6 + .../assets/mineralogy/items/diorite.json | 6 + .../mineralogy/items/diorite_brick.json | 6 + .../items/diorite_brick_furnace.json | 6 + .../mineralogy/items/diorite_brick_slab.json | 6 + .../items/diorite_brick_stairs.json | 6 + .../mineralogy/items/diorite_brick_wall.json | 6 + .../mineralogy/items/diorite_furnace.json | 6 + .../mineralogy/items/diorite_relief_axe.json | 6 + .../items/diorite_relief_blank.json | 6 + .../items/diorite_relief_cross.json | 6 + .../items/diorite_relief_hammer.json | 6 + .../mineralogy/items/diorite_relief_hoe.json | 6 + .../items/diorite_relief_horizontal.json | 6 + .../mineralogy/items/diorite_relief_i.json | 6 + .../mineralogy/items/diorite_relief_left.json | 6 + .../items/diorite_relief_pickaxe.json | 6 + .../mineralogy/items/diorite_relief_plus.json | 6 + .../items/diorite_relief_right.json | 6 + .../items/diorite_relief_sword.json | 6 + .../items/diorite_relief_vertical.json | 6 + .../assets/mineralogy/items/diorite_slab.json | 6 + .../mineralogy/items/diorite_smooth.json | 6 + .../items/diorite_smooth_brick.json | 6 + .../items/diorite_smooth_brick_furnace.json | 6 + .../items/diorite_smooth_brick_slab.json | 6 + .../items/diorite_smooth_brick_stairs.json | 6 + .../items/diorite_smooth_brick_wall.json | 6 + .../items/diorite_smooth_furnace.json | 6 + .../mineralogy/items/diorite_smooth_slab.json | 6 + .../items/diorite_smooth_stairs.json | 6 + .../mineralogy/items/diorite_smooth_wall.json | 6 + .../mineralogy/items/diorite_stairs.json | 6 + .../assets/mineralogy/items/diorite_wall.json | 6 + .../assets/mineralogy/items/dolomite.json | 6 + .../mineralogy/items/dolomite_brick.json | 6 + .../items/dolomite_brick_furnace.json | 6 + .../mineralogy/items/dolomite_brick_slab.json | 6 + .../items/dolomite_brick_stairs.json | 6 + .../mineralogy/items/dolomite_brick_wall.json | 6 + .../mineralogy/items/dolomite_furnace.json | 6 + .../mineralogy/items/dolomite_relief_axe.json | 6 + .../items/dolomite_relief_blank.json | 6 + .../items/dolomite_relief_cross.json | 6 + .../items/dolomite_relief_hammer.json | 6 + .../mineralogy/items/dolomite_relief_hoe.json | 6 + .../items/dolomite_relief_horizontal.json | 6 + .../mineralogy/items/dolomite_relief_i.json | 6 + .../items/dolomite_relief_left.json | 6 + .../items/dolomite_relief_pickaxe.json | 6 + .../items/dolomite_relief_plus.json | 6 + .../items/dolomite_relief_right.json | 6 + .../items/dolomite_relief_sword.json | 6 + .../items/dolomite_relief_vertical.json | 6 + .../mineralogy/items/dolomite_slab.json | 6 + .../mineralogy/items/dolomite_smooth.json | 6 + .../items/dolomite_smooth_brick.json | 6 + .../items/dolomite_smooth_brick_furnace.json | 6 + .../items/dolomite_smooth_brick_slab.json | 6 + .../items/dolomite_smooth_brick_stairs.json | 6 + .../items/dolomite_smooth_brick_wall.json | 6 + .../items/dolomite_smooth_furnace.json | 6 + .../items/dolomite_smooth_slab.json | 6 + .../items/dolomite_smooth_stairs.json | 6 + .../items/dolomite_smooth_wall.json | 6 + .../mineralogy/items/dolomite_stairs.json | 6 + .../mineralogy/items/dolomite_wall.json | 6 + .../mineralogy/items/drywall_black.json | 6 + .../assets/mineralogy/items/drywall_blue.json | 6 + .../mineralogy/items/drywall_brown.json | 6 + .../assets/mineralogy/items/drywall_cyan.json | 6 + .../assets/mineralogy/items/drywall_gray.json | 6 + .../mineralogy/items/drywall_green.json | 6 + .../mineralogy/items/drywall_light_blue.json | 6 + .../assets/mineralogy/items/drywall_lime.json | 6 + .../mineralogy/items/drywall_magenta.json | 6 + .../mineralogy/items/drywall_orange.json | 6 + .../assets/mineralogy/items/drywall_pink.json | 6 + .../mineralogy/items/drywall_purple.json | 6 + .../assets/mineralogy/items/drywall_red.json | 6 + .../mineralogy/items/drywall_silver.json | 6 + .../mineralogy/items/drywall_white.json | 6 + .../mineralogy/items/drywall_yellow.json | 6 + .../assets/mineralogy/items/gabbro.json | 6 + .../assets/mineralogy/items/gabbro_brick.json | 6 + .../items/gabbro_brick_furnace.json | 6 + .../mineralogy/items/gabbro_brick_slab.json | 6 + .../mineralogy/items/gabbro_brick_stairs.json | 6 + .../mineralogy/items/gabbro_brick_wall.json | 6 + .../mineralogy/items/gabbro_furnace.json | 6 + .../mineralogy/items/gabbro_relief_axe.json | 6 + .../mineralogy/items/gabbro_relief_blank.json | 6 + .../mineralogy/items/gabbro_relief_cross.json | 6 + .../items/gabbro_relief_hammer.json | 6 + .../mineralogy/items/gabbro_relief_hoe.json | 6 + .../items/gabbro_relief_horizontal.json | 6 + .../mineralogy/items/gabbro_relief_i.json | 6 + .../mineralogy/items/gabbro_relief_left.json | 6 + .../items/gabbro_relief_pickaxe.json | 6 + .../mineralogy/items/gabbro_relief_plus.json | 6 + .../mineralogy/items/gabbro_relief_right.json | 6 + .../mineralogy/items/gabbro_relief_sword.json | 6 + .../items/gabbro_relief_vertical.json | 6 + .../assets/mineralogy/items/gabbro_slab.json | 6 + .../mineralogy/items/gabbro_smooth.json | 6 + .../mineralogy/items/gabbro_smooth_brick.json | 6 + .../items/gabbro_smooth_brick_furnace.json | 6 + .../items/gabbro_smooth_brick_slab.json | 6 + .../items/gabbro_smooth_brick_stairs.json | 6 + .../items/gabbro_smooth_brick_wall.json | 6 + .../items/gabbro_smooth_furnace.json | 6 + .../mineralogy/items/gabbro_smooth_slab.json | 6 + .../items/gabbro_smooth_stairs.json | 6 + .../mineralogy/items/gabbro_smooth_wall.json | 6 + .../mineralogy/items/gabbro_stairs.json | 6 + .../assets/mineralogy/items/gabbro_wall.json | 6 + .../assets/mineralogy/items/gneiss.json | 6 + .../assets/mineralogy/items/gneiss_brick.json | 6 + .../items/gneiss_brick_furnace.json | 6 + .../mineralogy/items/gneiss_brick_slab.json | 6 + .../mineralogy/items/gneiss_brick_stairs.json | 6 + .../mineralogy/items/gneiss_brick_wall.json | 6 + .../mineralogy/items/gneiss_furnace.json | 6 + .../mineralogy/items/gneiss_relief_axe.json | 6 + .../mineralogy/items/gneiss_relief_blank.json | 6 + .../mineralogy/items/gneiss_relief_cross.json | 6 + .../items/gneiss_relief_hammer.json | 6 + .../mineralogy/items/gneiss_relief_hoe.json | 6 + .../items/gneiss_relief_horizontal.json | 6 + .../mineralogy/items/gneiss_relief_i.json | 6 + .../mineralogy/items/gneiss_relief_left.json | 6 + .../items/gneiss_relief_pickaxe.json | 6 + .../mineralogy/items/gneiss_relief_plus.json | 6 + .../mineralogy/items/gneiss_relief_right.json | 6 + .../mineralogy/items/gneiss_relief_sword.json | 6 + .../items/gneiss_relief_vertical.json | 6 + .../assets/mineralogy/items/gneiss_slab.json | 6 + .../mineralogy/items/gneiss_smooth.json | 6 + .../mineralogy/items/gneiss_smooth_brick.json | 6 + .../items/gneiss_smooth_brick_furnace.json | 6 + .../items/gneiss_smooth_brick_slab.json | 6 + .../items/gneiss_smooth_brick_stairs.json | 6 + .../items/gneiss_smooth_brick_wall.json | 6 + .../items/gneiss_smooth_furnace.json | 6 + .../mineralogy/items/gneiss_smooth_slab.json | 6 + .../items/gneiss_smooth_stairs.json | 6 + .../mineralogy/items/gneiss_smooth_wall.json | 6 + .../mineralogy/items/gneiss_stairs.json | 6 + .../assets/mineralogy/items/gneiss_wall.json | 6 + .../assets/mineralogy/items/granite.json | 6 + .../mineralogy/items/granite_brick.json | 6 + .../items/granite_brick_furnace.json | 6 + .../mineralogy/items/granite_brick_slab.json | 6 + .../items/granite_brick_stairs.json | 6 + .../mineralogy/items/granite_brick_wall.json | 6 + .../mineralogy/items/granite_furnace.json | 6 + .../mineralogy/items/granite_relief_axe.json | 6 + .../items/granite_relief_blank.json | 6 + .../items/granite_relief_cross.json | 6 + .../items/granite_relief_hammer.json | 6 + .../mineralogy/items/granite_relief_hoe.json | 6 + .../items/granite_relief_horizontal.json | 6 + .../mineralogy/items/granite_relief_i.json | 6 + .../mineralogy/items/granite_relief_left.json | 6 + .../items/granite_relief_pickaxe.json | 6 + .../mineralogy/items/granite_relief_plus.json | 6 + .../items/granite_relief_right.json | 6 + .../items/granite_relief_sword.json | 6 + .../items/granite_relief_vertical.json | 6 + .../assets/mineralogy/items/granite_slab.json | 6 + .../mineralogy/items/granite_smooth.json | 6 + .../items/granite_smooth_brick.json | 6 + .../items/granite_smooth_brick_furnace.json | 6 + .../items/granite_smooth_brick_slab.json | 6 + .../items/granite_smooth_brick_stairs.json | 6 + .../items/granite_smooth_brick_wall.json | 6 + .../items/granite_smooth_furnace.json | 6 + .../mineralogy/items/granite_smooth_slab.json | 6 + .../items/granite_smooth_stairs.json | 6 + .../mineralogy/items/granite_smooth_wall.json | 6 + .../mineralogy/items/granite_stairs.json | 6 + .../assets/mineralogy/items/granite_wall.json | 6 + .../assets/mineralogy/items/gypsum.json | 6 + .../assets/mineralogy/items/gypsum_dust.json | 6 + .../assets/mineralogy/items/hornfels.json | 6 + .../mineralogy/items/hornfels_brick.json | 6 + .../items/hornfels_brick_furnace.json | 6 + .../mineralogy/items/hornfels_brick_slab.json | 6 + .../items/hornfels_brick_stairs.json | 6 + .../mineralogy/items/hornfels_brick_wall.json | 6 + .../mineralogy/items/hornfels_furnace.json | 6 + .../mineralogy/items/hornfels_relief_axe.json | 6 + .../items/hornfels_relief_blank.json | 6 + .../items/hornfels_relief_cross.json | 6 + .../items/hornfels_relief_hammer.json | 6 + .../mineralogy/items/hornfels_relief_hoe.json | 6 + .../items/hornfels_relief_horizontal.json | 6 + .../mineralogy/items/hornfels_relief_i.json | 6 + .../items/hornfels_relief_left.json | 6 + .../items/hornfels_relief_pickaxe.json | 6 + .../items/hornfels_relief_plus.json | 6 + .../items/hornfels_relief_right.json | 6 + .../items/hornfels_relief_sword.json | 6 + .../items/hornfels_relief_vertical.json | 6 + .../mineralogy/items/hornfels_slab.json | 6 + .../mineralogy/items/hornfels_smooth.json | 6 + .../items/hornfels_smooth_brick.json | 6 + .../items/hornfels_smooth_brick_furnace.json | 6 + .../items/hornfels_smooth_brick_slab.json | 6 + .../items/hornfels_smooth_brick_stairs.json | 6 + .../items/hornfels_smooth_brick_wall.json | 6 + .../items/hornfels_smooth_furnace.json | 6 + .../items/hornfels_smooth_slab.json | 6 + .../items/hornfels_smooth_stairs.json | 6 + .../items/hornfels_smooth_wall.json | 6 + .../mineralogy/items/hornfels_stairs.json | 6 + .../mineralogy/items/hornfels_wall.json | 6 + .../assets/mineralogy/items/limestone.json | 6 + .../mineralogy/items/limestone_brick.json | 6 + .../items/limestone_brick_furnace.json | 6 + .../items/limestone_brick_slab.json | 6 + .../items/limestone_brick_stairs.json | 6 + .../items/limestone_brick_wall.json | 6 + .../mineralogy/items/limestone_furnace.json | 6 + .../items/limestone_relief_axe.json | 6 + .../items/limestone_relief_blank.json | 6 + .../items/limestone_relief_cross.json | 6 + .../items/limestone_relief_hammer.json | 6 + .../items/limestone_relief_hoe.json | 6 + .../items/limestone_relief_horizontal.json | 6 + .../mineralogy/items/limestone_relief_i.json | 6 + .../items/limestone_relief_left.json | 6 + .../items/limestone_relief_pickaxe.json | 6 + .../items/limestone_relief_plus.json | 6 + .../items/limestone_relief_right.json | 6 + .../items/limestone_relief_sword.json | 6 + .../items/limestone_relief_vertical.json | 6 + .../mineralogy/items/limestone_slab.json | 6 + .../mineralogy/items/limestone_smooth.json | 6 + .../items/limestone_smooth_brick.json | 6 + .../items/limestone_smooth_brick_furnace.json | 6 + .../items/limestone_smooth_brick_slab.json | 6 + .../items/limestone_smooth_brick_stairs.json | 6 + .../items/limestone_smooth_brick_wall.json | 6 + .../items/limestone_smooth_furnace.json | 6 + .../items/limestone_smooth_slab.json | 6 + .../items/limestone_smooth_stairs.json | 6 + .../items/limestone_smooth_wall.json | 6 + .../mineralogy/items/limestone_stairs.json | 6 + .../mineralogy/items/limestone_wall.json | 6 + .../assets/mineralogy/items/marble.json | 6 + .../assets/mineralogy/items/marble_brick.json | 6 + .../items/marble_brick_furnace.json | 6 + .../mineralogy/items/marble_brick_slab.json | 6 + .../mineralogy/items/marble_brick_stairs.json | 6 + .../mineralogy/items/marble_brick_wall.json | 6 + .../mineralogy/items/marble_furnace.json | 6 + .../mineralogy/items/marble_relief_axe.json | 6 + .../mineralogy/items/marble_relief_blank.json | 6 + .../mineralogy/items/marble_relief_cross.json | 6 + .../items/marble_relief_hammer.json | 6 + .../mineralogy/items/marble_relief_hoe.json | 6 + .../items/marble_relief_horizontal.json | 6 + .../mineralogy/items/marble_relief_i.json | 6 + .../mineralogy/items/marble_relief_left.json | 6 + .../items/marble_relief_pickaxe.json | 6 + .../mineralogy/items/marble_relief_plus.json | 6 + .../mineralogy/items/marble_relief_right.json | 6 + .../mineralogy/items/marble_relief_sword.json | 6 + .../items/marble_relief_vertical.json | 6 + .../assets/mineralogy/items/marble_slab.json | 6 + .../mineralogy/items/marble_smooth.json | 6 + .../mineralogy/items/marble_smooth_brick.json | 6 + .../items/marble_smooth_brick_furnace.json | 6 + .../items/marble_smooth_brick_slab.json | 6 + .../items/marble_smooth_brick_stairs.json | 6 + .../items/marble_smooth_brick_wall.json | 6 + .../items/marble_smooth_furnace.json | 6 + .../mineralogy/items/marble_smooth_slab.json | 6 + .../items/marble_smooth_stairs.json | 6 + .../mineralogy/items/marble_smooth_wall.json | 6 + .../mineralogy/items/marble_stairs.json | 6 + .../assets/mineralogy/items/marble_wall.json | 6 + .../mineralogy/items/mineral_fertilizer.json | 6 + .../mineralogy/items/nitrate_block.json | 6 + .../assets/mineralogy/items/nitrate_dust.json | 6 + .../assets/mineralogy/items/nitrate_ore.json | 6 + .../assets/mineralogy/items/novaculite.json | 6 + .../mineralogy/items/novaculite_brick.json | 6 + .../items/novaculite_brick_furnace.json | 6 + .../items/novaculite_brick_slab.json | 6 + .../items/novaculite_brick_stairs.json | 6 + .../items/novaculite_brick_wall.json | 6 + .../mineralogy/items/novaculite_furnace.json | 6 + .../items/novaculite_relief_axe.json | 6 + .../items/novaculite_relief_blank.json | 6 + .../items/novaculite_relief_cross.json | 6 + .../items/novaculite_relief_hammer.json | 6 + .../items/novaculite_relief_hoe.json | 6 + .../items/novaculite_relief_horizontal.json | 6 + .../mineralogy/items/novaculite_relief_i.json | 6 + .../items/novaculite_relief_left.json | 6 + .../items/novaculite_relief_pickaxe.json | 6 + .../items/novaculite_relief_plus.json | 6 + .../items/novaculite_relief_right.json | 6 + .../items/novaculite_relief_sword.json | 6 + .../items/novaculite_relief_vertical.json | 6 + .../mineralogy/items/novaculite_slab.json | 6 + .../mineralogy/items/novaculite_smooth.json | 6 + .../items/novaculite_smooth_brick.json | 6 + .../novaculite_smooth_brick_furnace.json | 6 + .../items/novaculite_smooth_brick_slab.json | 6 + .../items/novaculite_smooth_brick_stairs.json | 6 + .../items/novaculite_smooth_brick_wall.json | 6 + .../items/novaculite_smooth_furnace.json | 6 + .../items/novaculite_smooth_slab.json | 6 + .../items/novaculite_smooth_stairs.json | 6 + .../items/novaculite_smooth_wall.json | 6 + .../mineralogy/items/novaculite_stairs.json | 6 + .../mineralogy/items/novaculite_wall.json | 6 + .../assets/mineralogy/items/pegmatite.json | 6 + .../mineralogy/items/pegmatite_brick.json | 6 + .../items/pegmatite_brick_furnace.json | 6 + .../items/pegmatite_brick_slab.json | 6 + .../items/pegmatite_brick_stairs.json | 6 + .../items/pegmatite_brick_wall.json | 6 + .../mineralogy/items/pegmatite_furnace.json | 6 + .../items/pegmatite_relief_axe.json | 6 + .../items/pegmatite_relief_blank.json | 6 + .../items/pegmatite_relief_cross.json | 6 + .../items/pegmatite_relief_hammer.json | 6 + .../items/pegmatite_relief_hoe.json | 6 + .../items/pegmatite_relief_horizontal.json | 6 + .../mineralogy/items/pegmatite_relief_i.json | 6 + .../items/pegmatite_relief_left.json | 6 + .../items/pegmatite_relief_pickaxe.json | 6 + .../items/pegmatite_relief_plus.json | 6 + .../items/pegmatite_relief_right.json | 6 + .../items/pegmatite_relief_sword.json | 6 + .../items/pegmatite_relief_vertical.json | 6 + .../mineralogy/items/pegmatite_slab.json | 6 + .../mineralogy/items/pegmatite_smooth.json | 6 + .../items/pegmatite_smooth_brick.json | 6 + .../items/pegmatite_smooth_brick_furnace.json | 6 + .../items/pegmatite_smooth_brick_slab.json | 6 + .../items/pegmatite_smooth_brick_stairs.json | 6 + .../items/pegmatite_smooth_brick_wall.json | 6 + .../items/pegmatite_smooth_furnace.json | 6 + .../items/pegmatite_smooth_slab.json | 6 + .../items/pegmatite_smooth_stairs.json | 6 + .../items/pegmatite_smooth_wall.json | 6 + .../mineralogy/items/pegmatite_stairs.json | 6 + .../mineralogy/items/pegmatite_wall.json | 6 + .../assets/mineralogy/items/peridotite.json | 6 + .../mineralogy/items/peridotite_brick.json | 6 + .../items/peridotite_brick_furnace.json | 6 + .../items/peridotite_brick_slab.json | 6 + .../items/peridotite_brick_stairs.json | 6 + .../items/peridotite_brick_wall.json | 6 + .../mineralogy/items/peridotite_furnace.json | 6 + .../items/peridotite_relief_axe.json | 6 + .../items/peridotite_relief_blank.json | 6 + .../items/peridotite_relief_cross.json | 6 + .../items/peridotite_relief_hammer.json | 6 + .../items/peridotite_relief_hoe.json | 6 + .../items/peridotite_relief_horizontal.json | 6 + .../mineralogy/items/peridotite_relief_i.json | 6 + .../items/peridotite_relief_left.json | 6 + .../items/peridotite_relief_pickaxe.json | 6 + .../items/peridotite_relief_plus.json | 6 + .../items/peridotite_relief_right.json | 6 + .../items/peridotite_relief_sword.json | 6 + .../items/peridotite_relief_vertical.json | 6 + .../mineralogy/items/peridotite_slab.json | 6 + .../mineralogy/items/peridotite_smooth.json | 6 + .../items/peridotite_smooth_brick.json | 6 + .../peridotite_smooth_brick_furnace.json | 6 + .../items/peridotite_smooth_brick_slab.json | 6 + .../items/peridotite_smooth_brick_stairs.json | 6 + .../items/peridotite_smooth_brick_wall.json | 6 + .../items/peridotite_smooth_furnace.json | 6 + .../items/peridotite_smooth_slab.json | 6 + .../items/peridotite_smooth_stairs.json | 6 + .../items/peridotite_smooth_wall.json | 6 + .../mineralogy/items/peridotite_stairs.json | 6 + .../mineralogy/items/peridotite_wall.json | 6 + .../mineralogy/items/phosphorous_block.json | 6 + .../mineralogy/items/phosphorous_dust.json | 6 + .../mineralogy/items/phosphorous_ore.json | 6 + .../assets/mineralogy/items/phyllite.json | 6 + .../mineralogy/items/phyllite_brick.json | 6 + .../items/phyllite_brick_furnace.json | 6 + .../mineralogy/items/phyllite_brick_slab.json | 6 + .../items/phyllite_brick_stairs.json | 6 + .../mineralogy/items/phyllite_brick_wall.json | 6 + .../mineralogy/items/phyllite_furnace.json | 6 + .../mineralogy/items/phyllite_relief_axe.json | 6 + .../items/phyllite_relief_blank.json | 6 + .../items/phyllite_relief_cross.json | 6 + .../items/phyllite_relief_hammer.json | 6 + .../mineralogy/items/phyllite_relief_hoe.json | 6 + .../items/phyllite_relief_horizontal.json | 6 + .../mineralogy/items/phyllite_relief_i.json | 6 + .../items/phyllite_relief_left.json | 6 + .../items/phyllite_relief_pickaxe.json | 6 + .../items/phyllite_relief_plus.json | 6 + .../items/phyllite_relief_right.json | 6 + .../items/phyllite_relief_sword.json | 6 + .../items/phyllite_relief_vertical.json | 6 + .../mineralogy/items/phyllite_slab.json | 6 + .../mineralogy/items/phyllite_smooth.json | 6 + .../items/phyllite_smooth_brick.json | 6 + .../items/phyllite_smooth_brick_furnace.json | 6 + .../items/phyllite_smooth_brick_slab.json | 6 + .../items/phyllite_smooth_brick_stairs.json | 6 + .../items/phyllite_smooth_brick_wall.json | 6 + .../items/phyllite_smooth_furnace.json | 6 + .../items/phyllite_smooth_slab.json | 6 + .../items/phyllite_smooth_stairs.json | 6 + .../items/phyllite_smooth_wall.json | 6 + .../mineralogy/items/phyllite_stairs.json | 6 + .../mineralogy/items/phyllite_wall.json | 6 + .../assets/mineralogy/items/pumice.json | 6 + .../assets/mineralogy/items/quartzite.json | 6 + .../mineralogy/items/quartzite_brick.json | 6 + .../items/quartzite_brick_furnace.json | 6 + .../items/quartzite_brick_slab.json | 6 + .../items/quartzite_brick_stairs.json | 6 + .../items/quartzite_brick_wall.json | 6 + .../mineralogy/items/quartzite_furnace.json | 6 + .../items/quartzite_relief_axe.json | 6 + .../items/quartzite_relief_blank.json | 6 + .../items/quartzite_relief_cross.json | 6 + .../items/quartzite_relief_hammer.json | 6 + .../items/quartzite_relief_hoe.json | 6 + .../items/quartzite_relief_horizontal.json | 6 + .../mineralogy/items/quartzite_relief_i.json | 6 + .../items/quartzite_relief_left.json | 6 + .../items/quartzite_relief_pickaxe.json | 6 + .../items/quartzite_relief_plus.json | 6 + .../items/quartzite_relief_right.json | 6 + .../items/quartzite_relief_sword.json | 6 + .../items/quartzite_relief_vertical.json | 6 + .../mineralogy/items/quartzite_slab.json | 6 + .../mineralogy/items/quartzite_smooth.json | 6 + .../items/quartzite_smooth_brick.json | 6 + .../items/quartzite_smooth_brick_furnace.json | 6 + .../items/quartzite_smooth_brick_slab.json | 6 + .../items/quartzite_smooth_brick_stairs.json | 6 + .../items/quartzite_smooth_brick_wall.json | 6 + .../items/quartzite_smooth_furnace.json | 6 + .../items/quartzite_smooth_slab.json | 6 + .../items/quartzite_smooth_stairs.json | 6 + .../items/quartzite_smooth_wall.json | 6 + .../mineralogy/items/quartzite_stairs.json | 6 + .../mineralogy/items/quartzite_wall.json | 6 + .../assets/mineralogy/items/rhyolite.json | 6 + .../mineralogy/items/rhyolite_brick.json | 6 + .../items/rhyolite_brick_furnace.json | 6 + .../mineralogy/items/rhyolite_brick_slab.json | 6 + .../items/rhyolite_brick_stairs.json | 6 + .../mineralogy/items/rhyolite_brick_wall.json | 6 + .../mineralogy/items/rhyolite_furnace.json | 6 + .../mineralogy/items/rhyolite_relief_axe.json | 6 + .../items/rhyolite_relief_blank.json | 6 + .../items/rhyolite_relief_cross.json | 6 + .../items/rhyolite_relief_hammer.json | 6 + .../mineralogy/items/rhyolite_relief_hoe.json | 6 + .../items/rhyolite_relief_horizontal.json | 6 + .../mineralogy/items/rhyolite_relief_i.json | 6 + .../items/rhyolite_relief_left.json | 6 + .../items/rhyolite_relief_pickaxe.json | 6 + .../items/rhyolite_relief_plus.json | 6 + .../items/rhyolite_relief_right.json | 6 + .../items/rhyolite_relief_sword.json | 6 + .../items/rhyolite_relief_vertical.json | 6 + .../mineralogy/items/rhyolite_slab.json | 6 + .../mineralogy/items/rhyolite_smooth.json | 6 + .../items/rhyolite_smooth_brick.json | 6 + .../items/rhyolite_smooth_brick_furnace.json | 6 + .../items/rhyolite_smooth_brick_slab.json | 6 + .../items/rhyolite_smooth_brick_stairs.json | 6 + .../items/rhyolite_smooth_brick_wall.json | 6 + .../items/rhyolite_smooth_furnace.json | 6 + .../items/rhyolite_smooth_slab.json | 6 + .../items/rhyolite_smooth_stairs.json | 6 + .../items/rhyolite_smooth_wall.json | 6 + .../mineralogy/items/rhyolite_stairs.json | 6 + .../mineralogy/items/rhyolite_wall.json | 6 + .../assets/mineralogy/items/rock_salt.json | 6 + .../mineralogy/items/rock_salt_brick.json | 6 + .../items/rock_salt_brick_furnace.json | 6 + .../items/rock_salt_brick_slab.json | 6 + .../items/rock_salt_brick_stairs.json | 6 + .../items/rock_salt_brick_wall.json | 6 + .../mineralogy/items/rock_salt_dust.json | 6 + .../mineralogy/items/rock_salt_furnace.json | 6 + .../items/rock_salt_relief_axe.json | 6 + .../items/rock_salt_relief_blank.json | 6 + .../items/rock_salt_relief_cross.json | 6 + .../items/rock_salt_relief_hammer.json | 6 + .../items/rock_salt_relief_hoe.json | 6 + .../items/rock_salt_relief_horizontal.json | 6 + .../mineralogy/items/rock_salt_relief_i.json | 6 + .../items/rock_salt_relief_left.json | 6 + .../items/rock_salt_relief_pickaxe.json | 6 + .../items/rock_salt_relief_plus.json | 6 + .../items/rock_salt_relief_right.json | 6 + .../items/rock_salt_relief_sword.json | 6 + .../items/rock_salt_relief_vertical.json | 6 + .../mineralogy/items/rock_salt_slab.json | 6 + .../mineralogy/items/rock_salt_smooth.json | 6 + .../items/rock_salt_smooth_brick.json | 6 + .../items/rock_salt_smooth_brick_furnace.json | 6 + .../items/rock_salt_smooth_brick_slab.json | 6 + .../items/rock_salt_smooth_brick_stairs.json | 6 + .../items/rock_salt_smooth_brick_wall.json | 6 + .../items/rock_salt_smooth_furnace.json | 6 + .../items/rock_salt_smooth_slab.json | 6 + .../items/rock_salt_smooth_stairs.json | 6 + .../items/rock_salt_smooth_wall.json | 6 + .../mineralogy/items/rock_salt_stairs.json | 6 + .../mineralogy/items/rock_salt_wall.json | 6 + .../assets/mineralogy/items/rocksaltlamp.json | 6 + .../mineralogy/items/rocksaltstreetlamp.json | 6 + .../assets/mineralogy/items/salt_dust.json | 6 + .../assets/mineralogy/items/schist.json | 6 + .../assets/mineralogy/items/schist_brick.json | 6 + .../items/schist_brick_furnace.json | 6 + .../mineralogy/items/schist_brick_slab.json | 6 + .../mineralogy/items/schist_brick_stairs.json | 6 + .../mineralogy/items/schist_brick_wall.json | 6 + .../mineralogy/items/schist_furnace.json | 6 + .../mineralogy/items/schist_relief_axe.json | 6 + .../mineralogy/items/schist_relief_blank.json | 6 + .../mineralogy/items/schist_relief_cross.json | 6 + .../items/schist_relief_hammer.json | 6 + .../mineralogy/items/schist_relief_hoe.json | 6 + .../items/schist_relief_horizontal.json | 6 + .../mineralogy/items/schist_relief_i.json | 6 + .../mineralogy/items/schist_relief_left.json | 6 + .../items/schist_relief_pickaxe.json | 6 + .../mineralogy/items/schist_relief_plus.json | 6 + .../mineralogy/items/schist_relief_right.json | 6 + .../mineralogy/items/schist_relief_sword.json | 6 + .../items/schist_relief_vertical.json | 6 + .../assets/mineralogy/items/schist_slab.json | 6 + .../mineralogy/items/schist_smooth.json | 6 + .../mineralogy/items/schist_smooth_brick.json | 6 + .../items/schist_smooth_brick_furnace.json | 6 + .../items/schist_smooth_brick_slab.json | 6 + .../items/schist_smooth_brick_stairs.json | 6 + .../items/schist_smooth_brick_wall.json | 6 + .../items/schist_smooth_furnace.json | 6 + .../mineralogy/items/schist_smooth_slab.json | 6 + .../items/schist_smooth_stairs.json | 6 + .../mineralogy/items/schist_smooth_wall.json | 6 + .../mineralogy/items/schist_stairs.json | 6 + .../assets/mineralogy/items/schist_wall.json | 6 + .../assets/mineralogy/items/scoria.json | 6 + .../assets/mineralogy/items/scoria_brick.json | 6 + .../items/scoria_brick_furnace.json | 6 + .../mineralogy/items/scoria_brick_slab.json | 6 + .../mineralogy/items/scoria_brick_stairs.json | 6 + .../mineralogy/items/scoria_brick_wall.json | 6 + .../mineralogy/items/scoria_furnace.json | 6 + .../mineralogy/items/scoria_relief_axe.json | 6 + .../mineralogy/items/scoria_relief_blank.json | 6 + .../mineralogy/items/scoria_relief_cross.json | 6 + .../items/scoria_relief_hammer.json | 6 + .../mineralogy/items/scoria_relief_hoe.json | 6 + .../items/scoria_relief_horizontal.json | 6 + .../mineralogy/items/scoria_relief_i.json | 6 + .../mineralogy/items/scoria_relief_left.json | 6 + .../items/scoria_relief_pickaxe.json | 6 + .../mineralogy/items/scoria_relief_plus.json | 6 + .../mineralogy/items/scoria_relief_right.json | 6 + .../mineralogy/items/scoria_relief_sword.json | 6 + .../items/scoria_relief_vertical.json | 6 + .../assets/mineralogy/items/scoria_slab.json | 6 + .../mineralogy/items/scoria_smooth.json | 6 + .../mineralogy/items/scoria_smooth_brick.json | 6 + .../items/scoria_smooth_brick_furnace.json | 6 + .../items/scoria_smooth_brick_slab.json | 6 + .../items/scoria_smooth_brick_stairs.json | 6 + .../items/scoria_smooth_brick_wall.json | 6 + .../items/scoria_smooth_furnace.json | 6 + .../mineralogy/items/scoria_smooth_slab.json | 6 + .../items/scoria_smooth_stairs.json | 6 + .../mineralogy/items/scoria_smooth_wall.json | 6 + .../mineralogy/items/scoria_stairs.json | 6 + .../assets/mineralogy/items/scoria_wall.json | 6 + .../assets/mineralogy/items/shale.json | 6 + .../assets/mineralogy/items/shale_brick.json | 6 + .../mineralogy/items/shale_brick_furnace.json | 6 + .../mineralogy/items/shale_brick_slab.json | 6 + .../mineralogy/items/shale_brick_stairs.json | 6 + .../mineralogy/items/shale_brick_wall.json | 6 + .../mineralogy/items/shale_furnace.json | 6 + .../mineralogy/items/shale_relief_axe.json | 6 + .../mineralogy/items/shale_relief_blank.json | 6 + .../mineralogy/items/shale_relief_cross.json | 6 + .../mineralogy/items/shale_relief_hammer.json | 6 + .../mineralogy/items/shale_relief_hoe.json | 6 + .../items/shale_relief_horizontal.json | 6 + .../mineralogy/items/shale_relief_i.json | 6 + .../mineralogy/items/shale_relief_left.json | 6 + .../items/shale_relief_pickaxe.json | 6 + .../mineralogy/items/shale_relief_plus.json | 6 + .../mineralogy/items/shale_relief_right.json | 6 + .../mineralogy/items/shale_relief_sword.json | 6 + .../items/shale_relief_vertical.json | 6 + .../assets/mineralogy/items/shale_slab.json | 6 + .../assets/mineralogy/items/shale_smooth.json | 6 + .../mineralogy/items/shale_smooth_brick.json | 6 + .../items/shale_smooth_brick_furnace.json | 6 + .../items/shale_smooth_brick_slab.json | 6 + .../items/shale_smooth_brick_stairs.json | 6 + .../items/shale_smooth_brick_wall.json | 6 + .../items/shale_smooth_furnace.json | 6 + .../mineralogy/items/shale_smooth_slab.json | 6 + .../mineralogy/items/shale_smooth_stairs.json | 6 + .../mineralogy/items/shale_smooth_wall.json | 6 + .../assets/mineralogy/items/shale_stairs.json | 6 + .../assets/mineralogy/items/shale_wall.json | 6 + .../assets/mineralogy/items/siltstone.json | 6 + .../mineralogy/items/siltstone_brick.json | 6 + .../items/siltstone_brick_furnace.json | 6 + .../items/siltstone_brick_slab.json | 6 + .../items/siltstone_brick_stairs.json | 6 + .../items/siltstone_brick_wall.json | 6 + .../mineralogy/items/siltstone_furnace.json | 6 + .../items/siltstone_relief_axe.json | 6 + .../items/siltstone_relief_blank.json | 6 + .../items/siltstone_relief_cross.json | 6 + .../items/siltstone_relief_hammer.json | 6 + .../items/siltstone_relief_hoe.json | 6 + .../items/siltstone_relief_horizontal.json | 6 + .../mineralogy/items/siltstone_relief_i.json | 6 + .../items/siltstone_relief_left.json | 6 + .../items/siltstone_relief_pickaxe.json | 6 + .../items/siltstone_relief_plus.json | 6 + .../items/siltstone_relief_right.json | 6 + .../items/siltstone_relief_sword.json | 6 + .../items/siltstone_relief_vertical.json | 6 + .../mineralogy/items/siltstone_slab.json | 6 + .../mineralogy/items/siltstone_smooth.json | 6 + .../items/siltstone_smooth_brick.json | 6 + .../items/siltstone_smooth_brick_furnace.json | 6 + .../items/siltstone_smooth_brick_slab.json | 6 + .../items/siltstone_smooth_brick_stairs.json | 6 + .../items/siltstone_smooth_brick_wall.json | 6 + .../items/siltstone_smooth_furnace.json | 6 + .../items/siltstone_smooth_slab.json | 6 + .../items/siltstone_smooth_stairs.json | 6 + .../items/siltstone_smooth_wall.json | 6 + .../mineralogy/items/siltstone_stairs.json | 6 + .../mineralogy/items/siltstone_wall.json | 6 + .../assets/mineralogy/items/slate.json | 6 + .../assets/mineralogy/items/slate_brick.json | 6 + .../mineralogy/items/slate_brick_furnace.json | 6 + .../mineralogy/items/slate_brick_slab.json | 6 + .../mineralogy/items/slate_brick_stairs.json | 6 + .../mineralogy/items/slate_brick_wall.json | 6 + .../mineralogy/items/slate_furnace.json | 6 + .../mineralogy/items/slate_relief_axe.json | 6 + .../mineralogy/items/slate_relief_blank.json | 6 + .../mineralogy/items/slate_relief_cross.json | 6 + .../mineralogy/items/slate_relief_hammer.json | 6 + .../mineralogy/items/slate_relief_hoe.json | 6 + .../items/slate_relief_horizontal.json | 6 + .../mineralogy/items/slate_relief_i.json | 6 + .../mineralogy/items/slate_relief_left.json | 6 + .../items/slate_relief_pickaxe.json | 6 + .../mineralogy/items/slate_relief_plus.json | 6 + .../mineralogy/items/slate_relief_right.json | 6 + .../mineralogy/items/slate_relief_sword.json | 6 + .../items/slate_relief_vertical.json | 6 + .../assets/mineralogy/items/slate_slab.json | 6 + .../assets/mineralogy/items/slate_smooth.json | 6 + .../mineralogy/items/slate_smooth_brick.json | 6 + .../items/slate_smooth_brick_furnace.json | 6 + .../items/slate_smooth_brick_slab.json | 6 + .../items/slate_smooth_brick_stairs.json | 6 + .../items/slate_smooth_brick_wall.json | 6 + .../items/slate_smooth_furnace.json | 6 + .../mineralogy/items/slate_smooth_slab.json | 6 + .../mineralogy/items/slate_smooth_stairs.json | 6 + .../mineralogy/items/slate_smooth_wall.json | 6 + .../assets/mineralogy/items/slate_stairs.json | 6 + .../assets/mineralogy/items/slate_wall.json | 6 + .../assets/mineralogy/items/sulfur_block.json | 6 + .../assets/mineralogy/items/sulfur_dust.json | 6 + .../assets/mineralogy/items/sulfur_ore.json | 6 + .../assets/mineralogy/items/tuff.json | 6 + .../assets/mineralogy/items/tuff_brick.json | 6 + .../mineralogy/items/tuff_brick_furnace.json | 6 + .../mineralogy/items/tuff_brick_slab.json | 6 + .../mineralogy/items/tuff_brick_stairs.json | 6 + .../mineralogy/items/tuff_brick_wall.json | 6 + .../assets/mineralogy/items/tuff_furnace.json | 6 + .../mineralogy/items/tuff_relief_axe.json | 6 + .../mineralogy/items/tuff_relief_blank.json | 6 + .../mineralogy/items/tuff_relief_cross.json | 6 + .../mineralogy/items/tuff_relief_hammer.json | 6 + .../mineralogy/items/tuff_relief_hoe.json | 6 + .../items/tuff_relief_horizontal.json | 6 + .../mineralogy/items/tuff_relief_i.json | 6 + .../mineralogy/items/tuff_relief_left.json | 6 + .../mineralogy/items/tuff_relief_pickaxe.json | 6 + .../mineralogy/items/tuff_relief_plus.json | 6 + .../mineralogy/items/tuff_relief_right.json | 6 + .../mineralogy/items/tuff_relief_sword.json | 6 + .../items/tuff_relief_vertical.json | 6 + .../assets/mineralogy/items/tuff_slab.json | 6 + .../assets/mineralogy/items/tuff_smooth.json | 6 + .../mineralogy/items/tuff_smooth_brick.json | 6 + .../items/tuff_smooth_brick_furnace.json | 6 + .../items/tuff_smooth_brick_slab.json | 6 + .../items/tuff_smooth_brick_stairs.json | 6 + .../items/tuff_smooth_brick_wall.json | 6 + .../mineralogy/items/tuff_smooth_furnace.json | 6 + .../mineralogy/items/tuff_smooth_slab.json | 6 + .../mineralogy/items/tuff_smooth_stairs.json | 6 + .../mineralogy/items/tuff_smooth_wall.json | 6 + .../assets/mineralogy/items/tuff_stairs.json | 6 + .../assets/mineralogy/items/tuff_wall.json | 6 + .../mineralogy/models/block/andesite.json | 2 +- .../models/block/andesite_double_slab.json | 6 +- .../models/block/andesite_furnace.json | 4 +- .../models/block/andesite_relief_axe.json | 6 +- .../block/andesite_relief_axe_inventory.json | 6 +- .../models/block/andesite_relief_blank.json | 4 +- .../andesite_relief_blank_inventory.json | 6 +- .../models/block/andesite_relief_cross.json | 6 +- .../andesite_relief_cross_inventory.json | 6 +- .../models/block/andesite_relief_hammer.json | 6 +- .../andesite_relief_hammer_inventory.json | 6 +- .../models/block/andesite_relief_hoe.json | 6 +- .../block/andesite_relief_hoe_inventory.json | 6 +- .../block/andesite_relief_horizontal.json | 6 +- .../andesite_relief_horizontal_inventory.json | 6 +- .../models/block/andesite_relief_i.json | 6 +- .../block/andesite_relief_i_inventory.json | 6 +- .../models/block/andesite_relief_left.json | 6 +- .../block/andesite_relief_left_inventory.json | 6 +- .../models/block/andesite_relief_pickaxe.json | 6 +- .../andesite_relief_pickaxe_inventory.json | 6 +- .../models/block/andesite_relief_plus.json | 6 +- .../block/andesite_relief_plus_inventory.json | 6 +- .../models/block/andesite_relief_right.json | 6 +- .../andesite_relief_right_inventory.json | 6 +- .../models/block/andesite_relief_sword.json | 6 +- .../andesite_relief_sword_inventory.json | 6 +- .../block/andesite_relief_vertical.json | 6 +- .../andesite_relief_vertical_inventory.json | 6 +- .../models/block/andesite_slab.json | 4 +- .../models/block/andesite_smooth.json | 2 +- .../block/andesite_smooth_double_slab.json | 6 +- .../models/block/andesite_smooth_furnace.json | 4 +- .../models/block/andesite_smooth_slab.json | 4 +- .../models/block/andesite_smooth_stairs.json | 4 +- .../block/andesite_smooth_stairs_inner.json | 4 +- .../block/andesite_smooth_stairs_outer.json | 4 +- .../block/andesite_smooth_wall_inventory.json | 2 +- .../block/andesite_smooth_wall_post.json | 2 +- .../block/andesite_smooth_wall_side.json | 2 +- .../block/andesite_smooth_wall_side_tall.json | 2 +- .../models/block/andesite_stairs.json | 4 +- .../models/block/andesite_stairs_inner.json | 4 +- .../models/block/andesite_stairs_outer.json | 4 +- .../models/block/andesite_wall_inventory.json | 2 +- .../models/block/andesite_wall_post.json | 2 +- .../models/block/andesite_wall_side.json | 2 +- .../models/block/andesite_wall_side_tall.json | 2 +- .../mineralogy/models/block/basalt.json | 5 +- .../models/block/basalt_double_slab.json | 6 +- .../models/block/basalt_furnace.json | 4 +- .../models/block/basalt_relief_axe.json | 6 +- .../block/basalt_relief_axe_inventory.json | 2 +- .../models/block/basalt_relief_blank.json | 4 +- .../block/basalt_relief_blank_inventory.json | 4 +- .../models/block/basalt_relief_cross.json | 6 +- .../block/basalt_relief_cross_inventory.json | 2 +- .../models/block/basalt_relief_hammer.json | 6 +- .../block/basalt_relief_hammer_inventory.json | 4 +- .../models/block/basalt_relief_hoe.json | 6 +- .../block/basalt_relief_hoe_inventory.json | 2 +- .../block/basalt_relief_horizontal.json | 6 +- .../basalt_relief_horizontal_inventory.json | 2 +- .../models/block/basalt_relief_i.json | 6 +- .../block/basalt_relief_i_inventory.json | 4 +- .../models/block/basalt_relief_left.json | 6 +- .../block/basalt_relief_left_inventory.json | 4 +- .../models/block/basalt_relief_pickaxe.json | 6 +- .../basalt_relief_pickaxe_inventory.json | 2 +- .../models/block/basalt_relief_plus.json | 6 +- .../block/basalt_relief_plus_inventory.json | 2 +- .../models/block/basalt_relief_right.json | 6 +- .../block/basalt_relief_right_inventory.json | 4 +- .../models/block/basalt_relief_sword.json | 6 +- .../block/basalt_relief_sword_inventory.json | 2 +- .../models/block/basalt_relief_vertical.json | 6 +- .../basalt_relief_vertical_inventory.json | 4 +- .../mineralogy/models/block/basalt_slab.json | 4 +- .../models/block/basalt_smooth.json | 5 +- .../block/basalt_smooth_double_slab.json | 6 +- .../models/block/basalt_smooth_furnace.json | 4 +- .../models/block/basalt_smooth_slab.json | 4 +- .../models/block/basalt_smooth_stairs.json | 4 +- .../block/basalt_smooth_stairs_inner.json | 4 +- .../block/basalt_smooth_stairs_outer.json | 4 +- .../block/basalt_smooth_wall_inventory.json | 2 +- .../models/block/basalt_smooth_wall_post.json | 2 +- .../models/block/basalt_smooth_wall_side.json | 2 +- .../block/basalt_smooth_wall_side_tall.json | 2 +- .../models/block/basalt_stairs.json | 4 +- .../models/block/basalt_stairs_inner.json | 4 +- .../models/block/basalt_stairs_outer.json | 4 +- .../models/block/basalt_wall_inventory.json | 2 +- .../models/block/basalt_wall_post.json | 2 +- .../models/block/basalt_wall_side.json | 2 +- .../models/block/basalt_wall_side_tall.json | 2 +- .../mineralogy/models/block/diorite.json | 2 +- .../models/block/diorite_double_slab.json | 6 +- .../models/block/diorite_furnace.json | 4 +- .../models/block/diorite_relief_axe.json | 6 +- .../block/diorite_relief_axe_inventory.json | 6 +- .../models/block/diorite_relief_blank.json | 4 +- .../block/diorite_relief_blank_inventory.json | 6 +- .../models/block/diorite_relief_cross.json | 6 +- .../block/diorite_relief_cross_inventory.json | 6 +- .../models/block/diorite_relief_hammer.json | 6 +- .../diorite_relief_hammer_inventory.json | 6 +- .../models/block/diorite_relief_hoe.json | 6 +- .../block/diorite_relief_hoe_inventory.json | 6 +- .../block/diorite_relief_horizontal.json | 6 +- .../diorite_relief_horizontal_inventory.json | 6 +- .../models/block/diorite_relief_i.json | 6 +- .../block/diorite_relief_i_inventory.json | 6 +- .../models/block/diorite_relief_left.json | 6 +- .../block/diorite_relief_left_inventory.json | 6 +- .../models/block/diorite_relief_pickaxe.json | 6 +- .../diorite_relief_pickaxe_inventory.json | 6 +- .../models/block/diorite_relief_plus.json | 6 +- .../block/diorite_relief_plus_inventory.json | 6 +- .../models/block/diorite_relief_right.json | 6 +- .../block/diorite_relief_right_inventory.json | 6 +- .../models/block/diorite_relief_sword.json | 6 +- .../block/diorite_relief_sword_inventory.json | 6 +- .../models/block/diorite_relief_vertical.json | 6 +- .../diorite_relief_vertical_inventory.json | 6 +- .../mineralogy/models/block/diorite_slab.json | 4 +- .../models/block/diorite_smooth.json | 2 +- .../block/diorite_smooth_double_slab.json | 6 +- .../models/block/diorite_smooth_furnace.json | 4 +- .../models/block/diorite_smooth_slab.json | 4 +- .../models/block/diorite_smooth_stairs.json | 4 +- .../block/diorite_smooth_stairs_inner.json | 4 +- .../block/diorite_smooth_stairs_outer.json | 4 +- .../block/diorite_smooth_wall_inventory.json | 2 +- .../block/diorite_smooth_wall_post.json | 2 +- .../block/diorite_smooth_wall_side.json | 2 +- .../block/diorite_smooth_wall_side_tall.json | 2 +- .../models/block/diorite_stairs.json | 4 +- .../models/block/diorite_stairs_inner.json | 4 +- .../models/block/diorite_stairs_outer.json | 4 +- .../models/block/diorite_wall_inventory.json | 2 +- .../models/block/diorite_wall_post.json | 2 +- .../models/block/diorite_wall_side.json | 2 +- .../models/block/diorite_wall_side_tall.json | 2 +- .../block/dolomite_relief_axe_inventory.json | 4 +- .../dolomite_relief_blank_inventory.json | 2 +- .../dolomite_relief_cross_inventory.json | 4 +- .../dolomite_relief_hammer_inventory.json | 2 +- .../block/dolomite_relief_hoe_inventory.json | 4 +- .../dolomite_relief_horizontal_inventory.json | 4 +- .../block/dolomite_relief_i_inventory.json | 2 +- .../block/dolomite_relief_left_inventory.json | 2 +- .../dolomite_relief_pickaxe_inventory.json | 4 +- .../block/dolomite_relief_plus_inventory.json | 4 +- .../dolomite_relief_right_inventory.json | 2 +- .../dolomite_relief_sword_inventory.json | 4 +- .../dolomite_relief_vertical_inventory.json | 2 +- .../mineralogy/models/block/granite.json | 2 +- .../models/block/granite_double_slab.json | 6 +- .../models/block/granite_furnace.json | 4 +- .../models/block/granite_relief_axe.json | 6 +- .../block/granite_relief_axe_inventory.json | 2 +- .../models/block/granite_relief_blank.json | 4 +- .../block/granite_relief_blank_inventory.json | 4 +- .../models/block/granite_relief_cross.json | 6 +- .../block/granite_relief_cross_inventory.json | 2 +- .../models/block/granite_relief_hammer.json | 6 +- .../granite_relief_hammer_inventory.json | 4 +- .../models/block/granite_relief_hoe.json | 6 +- .../block/granite_relief_hoe_inventory.json | 2 +- .../block/granite_relief_horizontal.json | 6 +- .../granite_relief_horizontal_inventory.json | 2 +- .../models/block/granite_relief_i.json | 6 +- .../block/granite_relief_i_inventory.json | 4 +- .../models/block/granite_relief_left.json | 6 +- .../block/granite_relief_left_inventory.json | 4 +- .../models/block/granite_relief_pickaxe.json | 6 +- .../granite_relief_pickaxe_inventory.json | 2 +- .../models/block/granite_relief_plus.json | 6 +- .../block/granite_relief_plus_inventory.json | 2 +- .../models/block/granite_relief_right.json | 6 +- .../block/granite_relief_right_inventory.json | 4 +- .../models/block/granite_relief_sword.json | 6 +- .../block/granite_relief_sword_inventory.json | 2 +- .../models/block/granite_relief_vertical.json | 6 +- .../granite_relief_vertical_inventory.json | 4 +- .../mineralogy/models/block/granite_slab.json | 4 +- .../models/block/granite_smooth.json | 2 +- .../block/granite_smooth_double_slab.json | 6 +- .../models/block/granite_smooth_furnace.json | 4 +- .../models/block/granite_smooth_slab.json | 4 +- .../models/block/granite_smooth_stairs.json | 4 +- .../block/granite_smooth_stairs_inner.json | 4 +- .../block/granite_smooth_stairs_outer.json | 4 +- .../block/granite_smooth_wall_inventory.json | 2 +- .../block/granite_smooth_wall_post.json | 2 +- .../block/granite_smooth_wall_side.json | 2 +- .../block/granite_smooth_wall_side_tall.json | 2 +- .../models/block/granite_stairs.json | 4 +- .../models/block/granite_stairs_inner.json | 4 +- .../models/block/granite_stairs_outer.json | 4 +- .../models/block/granite_wall_inventory.json | 2 +- .../models/block/granite_wall_post.json | 2 +- .../models/block/granite_wall_side.json | 2 +- .../models/block/granite_wall_side_tall.json | 2 +- .../models/block/half_andesite_slab.json | 6 +- .../block/half_andesite_smooth_slab.json | 6 +- .../models/block/half_basalt_slab.json | 6 +- .../models/block/half_basalt_smooth_slab.json | 6 +- .../models/block/half_diorite_slab.json | 6 +- .../block/half_diorite_smooth_slab.json | 6 +- .../models/block/half_granite_slab.json | 6 +- .../block/half_granite_smooth_slab.json | 6 +- .../models/block/half_tuff_brick_slab.json | 6 +- .../models/block/half_tuff_slab.json | 6 +- .../models/block/half_tuff_smooth_slab.json | 6 +- .../models/block/lit_andesite_furnace.json | 4 +- .../block/lit_andesite_smooth_furnace.json | 4 +- .../models/block/lit_basalt_furnace.json | 4 +- .../block/lit_basalt_smooth_furnace.json | 4 +- .../models/block/lit_diorite_furnace.json | 4 +- .../block/lit_diorite_smooth_furnace.json | 4 +- .../models/block/lit_granite_furnace.json | 4 +- .../block/lit_granite_smooth_furnace.json | 4 +- .../models/block/lit_tuff_brick_furnace.json | 4 +- .../models/block/lit_tuff_furnace.json | 4 +- .../models/block/lit_tuff_smooth_furnace.json | 4 +- .../block/marble_relief_axe_inventory.json | 4 +- .../block/marble_relief_blank_inventory.json | 2 +- .../block/marble_relief_cross_inventory.json | 4 +- .../block/marble_relief_hammer_inventory.json | 2 +- .../block/marble_relief_hoe_inventory.json | 4 +- .../marble_relief_horizontal_inventory.json | 4 +- .../block/marble_relief_i_inventory.json | 2 +- .../block/marble_relief_left_inventory.json | 2 +- .../marble_relief_pickaxe_inventory.json | 4 +- .../block/marble_relief_plus_inventory.json | 4 +- .../block/marble_relief_right_inventory.json | 2 +- .../block/marble_relief_sword_inventory.json | 4 +- .../marble_relief_vertical_inventory.json | 2 +- .../block/rock_salt_relief_axe_inventory.json | 4 +- .../rock_salt_relief_blank_inventory.json | 2 +- .../rock_salt_relief_cross_inventory.json | 4 +- .../rock_salt_relief_hammer_inventory.json | 2 +- .../block/rock_salt_relief_hoe_inventory.json | 4 +- ...rock_salt_relief_horizontal_inventory.json | 4 +- .../block/rock_salt_relief_i_inventory.json | 2 +- .../rock_salt_relief_left_inventory.json | 2 +- .../rock_salt_relief_pickaxe_inventory.json | 4 +- .../rock_salt_relief_plus_inventory.json | 4 +- .../rock_salt_relief_right_inventory.json | 2 +- .../rock_salt_relief_sword_inventory.json | 4 +- .../rock_salt_relief_vertical_inventory.json | 2 +- .../assets/mineralogy/models/block/tuff.json | 2 +- .../mineralogy/models/block/tuff_brick.json | 6 +- .../models/block/tuff_brick_double_slab.json | 6 +- .../models/block/tuff_brick_furnace.json | 4 +- .../models/block/tuff_brick_slab.json | 4 +- .../models/block/tuff_brick_stairs.json | 4 +- .../models/block/tuff_brick_stairs_inner.json | 4 +- .../models/block/tuff_brick_stairs_outer.json | 4 +- .../block/tuff_brick_wall_inventory.json | 2 +- .../models/block/tuff_brick_wall_post.json | 2 +- .../models/block/tuff_brick_wall_side.json | 2 +- .../block/tuff_brick_wall_side_tall.json | 2 +- .../models/block/tuff_double_slab.json | 6 +- .../mineralogy/models/block/tuff_furnace.json | 4 +- .../models/block/tuff_relief_axe.json | 6 +- .../block/tuff_relief_axe_inventory.json | 2 +- .../models/block/tuff_relief_blank.json | 4 +- .../block/tuff_relief_blank_inventory.json | 4 +- .../models/block/tuff_relief_cross.json | 6 +- .../block/tuff_relief_cross_inventory.json | 2 +- .../models/block/tuff_relief_hammer.json | 6 +- .../block/tuff_relief_hammer_inventory.json | 4 +- .../models/block/tuff_relief_hoe.json | 6 +- .../block/tuff_relief_hoe_inventory.json | 2 +- .../models/block/tuff_relief_horizontal.json | 6 +- .../tuff_relief_horizontal_inventory.json | 2 +- .../models/block/tuff_relief_i.json | 6 +- .../models/block/tuff_relief_i_inventory.json | 4 +- .../models/block/tuff_relief_left.json | 6 +- .../block/tuff_relief_left_inventory.json | 4 +- .../models/block/tuff_relief_pickaxe.json | 6 +- .../block/tuff_relief_pickaxe_inventory.json | 2 +- .../models/block/tuff_relief_plus.json | 6 +- .../block/tuff_relief_plus_inventory.json | 2 +- .../models/block/tuff_relief_right.json | 6 +- .../block/tuff_relief_right_inventory.json | 4 +- .../models/block/tuff_relief_sword.json | 6 +- .../block/tuff_relief_sword_inventory.json | 2 +- .../models/block/tuff_relief_vertical.json | 6 +- .../block/tuff_relief_vertical_inventory.json | 4 +- .../mineralogy/models/block/tuff_slab.json | 4 +- .../mineralogy/models/block/tuff_smooth.json | 2 +- .../models/block/tuff_smooth_double_slab.json | 6 +- .../models/block/tuff_smooth_furnace.json | 4 +- .../models/block/tuff_smooth_slab.json | 4 +- .../models/block/tuff_smooth_stairs.json | 4 +- .../block/tuff_smooth_stairs_inner.json | 4 +- .../block/tuff_smooth_stairs_outer.json | 4 +- .../block/tuff_smooth_wall_inventory.json | 2 +- .../models/block/tuff_smooth_wall_post.json | 2 +- .../models/block/tuff_smooth_wall_side.json | 2 +- .../block/tuff_smooth_wall_side_tall.json | 2 +- .../mineralogy/models/block/tuff_stairs.json | 4 +- .../models/block/tuff_stairs_inner.json | 4 +- .../models/block/tuff_stairs_outer.json | 4 +- .../models/block/tuff_wall_inventory.json | 2 +- .../models/block/tuff_wall_post.json | 2 +- .../models/block/tuff_wall_side.json | 2 +- .../models/block/tuff_wall_side_tall.json | 2 +- .../models/block/upper_andesite_slab.json | 6 +- .../block/upper_andesite_smooth_slab.json | 6 +- .../models/block/upper_basalt_slab.json | 6 +- .../block/upper_basalt_smooth_slab.json | 6 +- .../models/block/upper_diorite_slab.json | 6 +- .../block/upper_diorite_smooth_slab.json | 6 +- .../models/block/upper_granite_slab.json | 6 +- .../block/upper_granite_smooth_slab.json | 6 +- .../models/block/upper_tuff_brick_slab.json | 6 +- .../models/block/upper_tuff_slab.json | 6 +- .../models/block/upper_tuff_smooth_slab.json | 6 +- .../models/item/crude_oil_bucket.json | 6 +- .../coremods/mineralogy_legacy_world_fix.js | 151 ------------ .../data/c/tags/block/cobblestones.json | 10 +- .../data/c/tags/block/ores/nitrate.json | 8 +- .../data/c/tags/block/ores/phosphorous.json | 8 +- .../data/c/tags/block/ores/sulfur.json | 8 +- .../c/tags/block/storage_blocks/chalk.json | 8 +- .../c/tags/block/storage_blocks/gypsum.json | 8 +- .../c/tags/block/storage_blocks/nitrate.json | 8 +- .../block/storage_blocks/phosphorous.json | 8 +- .../tags/block/storage_blocks/rock_salt.json | 8 +- .../c/tags/block/storage_blocks/sulfur.json | 8 +- .../data/c/tags/fluid/crude_oil.json | 10 +- .../data/c/tags/item/buckets/crude_oil.json | 8 +- .../data/c/tags/item/cobblestones.json | 10 +- .../data/c/tags/item/dusts/carbon.json | 6 +- .../data/c/tags/item/dusts/chalk.json | 8 +- .../data/c/tags/item/dusts/coal.json | 6 +- .../data/c/tags/item/dusts/gypsum.json | 8 +- .../data/c/tags/item/dusts/nitrate.json | 8 +- .../data/c/tags/item/dusts/phosphorous.json | 8 +- .../data/c/tags/item/dusts/rock_salt.json | 8 +- .../data/c/tags/item/dusts/sulfur.json | 8 +- .../data/c/tags/item/lamps/rock_salt.json | 6 + .../data/c/tags/item/ores/nitrate.json | 8 +- .../data/c/tags/item/ores/phosphorous.json | 8 +- .../data/c/tags/item/ores/sulfur.json | 8 +- .../resources/data/c/tags/item/paper.json | 6 + .../c/tags/item/storage_blocks/chalk.json | 8 +- .../c/tags/item/storage_blocks/gypsum.json | 8 +- .../c/tags/item/storage_blocks/nitrate.json | 8 +- .../tags/item/storage_blocks/phosphorous.json | 8 +- .../c/tags/item/storage_blocks/rock_salt.json | 8 +- .../c/tags/item/storage_blocks/sulfur.json | 8 +- .../data/forge/tags/block/cobblestone.json | 8 +- .../data/forge/tags/block/ores/nitrate.json | 8 +- .../forge/tags/block/ores/phosphorous.json | 8 +- .../data/forge/tags/block/ores/sulfur.json | 8 +- .../tags/block/storage_blocks/chalk.json | 8 +- .../tags/block/storage_blocks/gypsum.json | 8 +- .../tags/block/storage_blocks/nitrate.json | 8 +- .../block/storage_blocks/phosphorous.json | 8 +- .../tags/block/storage_blocks/rock_salt.json | 8 +- .../tags/block/storage_blocks/sulfur.json | 8 +- .../data/forge/tags/fluid/crude_oil.json | 8 +- .../forge/tags/item/buckets/crude_oil.json | 8 +- .../data/forge/tags/item/cobblestone.json | 8 +- .../data/forge/tags/item/dusts/carbon.json | 8 +- .../data/forge/tags/item/dusts/chalk.json | 8 +- .../data/forge/tags/item/dusts/coal.json | 8 +- .../data/forge/tags/item/dusts/gypsum.json | 8 +- .../data/forge/tags/item/dusts/nitrate.json | 8 +- .../forge/tags/item/dusts/phosphorous.json | 8 +- .../data/forge/tags/item/dusts/rock_salt.json | 8 +- .../data/forge/tags/item/dusts/sulfur.json | 8 +- .../data/forge/tags/item/lamps/rock_salt.json | 8 +- .../data/forge/tags/item/ores/nitrate.json | 8 +- .../forge/tags/item/ores/phosphorous.json | 8 +- .../data/forge/tags/item/ores/sulfur.json | 8 +- .../resources/data/forge/tags/item/paper.json | 2 +- .../forge/tags/item/storage_blocks/chalk.json | 8 +- .../tags/item/storage_blocks/gypsum.json | 8 +- .../tags/item/storage_blocks/nitrate.json | 8 +- .../tags/item/storage_blocks/phosphorous.json | 8 +- .../tags/item/storage_blocks/rock_salt.json | 8 +- .../tags/item/storage_blocks/sulfur.json | 8 +- .../recipes/brewing/brewing_stand.json | 62 ++--- .../recipes/building_blocks/andesite.json | 62 ++--- .../recipes/building_blocks/diorite.json | 62 ++--- .../mossy_cobblestone_from_moss_block.json | 62 ++--- .../mossy_cobblestone_from_vine.json | 62 ++--- .../building_blocks/polished_andesite.json | 90 +++---- .../building_blocks/polished_basalt.json | 90 +++---- .../building_blocks/polished_diorite.json | 90 +++---- .../building_blocks/polished_granite.json | 90 +++---- .../building_blocks/polished_tuff.json | 90 +++---- .../recipes/combat/stone_sword.json | 62 ++--- .../recipes/decorations/furnace.json | 62 ++--- .../recipes/redstone/dispenser.json | 62 ++--- .../advancement/recipes/redstone/dropper.json | 62 ++--- .../advancement/recipes/redstone/lever.json | 62 ++--- .../recipes/redstone/observer.json | 62 ++--- .../advancement/recipes/redstone/piston.json | 62 ++--- .../advancement/recipes/tools/stone_axe.json | 62 ++--- .../advancement/recipes/tools/stone_hoe.json | 62 ++--- .../recipes/tools/stone_pickaxe.json | 62 ++--- .../recipes/tools/stone_shovel.json | 62 ++--- .../data/minecraft/recipe/andesite.json | 24 +- .../data/minecraft/recipe/andesite_slab.json | 28 ++- ...esite_slab_from_andesite_stonecutting.json | 14 +- .../data/minecraft/recipe/brewing_stand.json | 32 ++- .../coast_armor_trim_smithing_template.json | 40 ++-- .../data/minecraft/recipe/diorite.json | 34 ++- .../data/minecraft/recipe/diorite_slab.json | 28 ++- ...iorite_slab_from_diorite_stonecutting.json | 14 +- .../data/minecraft/recipe/dispenser.json | 38 ++- .../data/minecraft/recipe/dropper.json | 34 ++- .../data/minecraft/recipe/furnace.json | 30 ++- .../data/minecraft/recipe/granite_slab.json | 28 ++- ...ranite_slab_from_granite_stonecutting.json | 14 +- .../data/minecraft/recipe/lever.json | 32 ++- .../mossy_cobblestone_from_moss_block.json | 24 +- .../recipe/mossy_cobblestone_from_vine.json | 24 +- .../data/minecraft/recipe/observer.json | 38 ++- .../data/minecraft/recipe/piston.json | 42 ++-- .../minecraft/recipe/polished_andesite.json | 24 +- .../recipe/polished_andesite_slab.json | 28 ++- ...esite_slab_from_andesite_stonecutting.json | 14 +- ...b_from_polished_andesite_stonecutting.json | 14 +- .../minecraft/recipe/polished_basalt.json | 24 +- .../minecraft/recipe/polished_diorite.json | 24 +- .../recipe/polished_diorite_slab.json | 28 ++- ...iorite_slab_from_diorite_stonecutting.json | 14 +- ...ab_from_polished_diorite_stonecutting.json | 14 +- .../minecraft/recipe/polished_granite.json | 24 +- .../recipe/polished_granite_slab.json | 28 ++- ...ranite_slab_from_granite_stonecutting.json | 14 +- ...ab_from_polished_granite_stonecutting.json | 14 +- .../data/minecraft/recipe/polished_tuff.json | 24 +- .../minecraft/recipe/polished_tuff_slab.json | 28 ++- ..._slab_from_polished_tuff_stonecutting.json | 14 +- ...shed_tuff_slab_from_tuff_stonecutting.json | 14 +- .../sentry_armor_trim_smithing_template.json | 40 ++-- .../data/minecraft/recipe/stone_axe.json | 34 ++- .../data/minecraft/recipe/stone_hoe.json | 34 ++- .../data/minecraft/recipe/stone_pickaxe.json | 34 ++- .../data/minecraft/recipe/stone_shovel.json | 34 ++- .../data/minecraft/recipe/stone_sword.json | 34 ++- .../minecraft/recipe/tuff_brick_slab.json | 28 ++- ..._slab_from_polished_tuff_stonecutting.json | 14 +- ...ck_slab_from_tuff_bricks_stonecutting.json | 14 +- ...uff_brick_slab_from_tuff_stonecutting.json | 14 +- .../data/minecraft/recipe/tuff_slab.json | 28 ++- .../tuff_slab_from_tuff_stonecutting.json | 14 +- .../vex_armor_trim_smithing_template.json | 40 ++-- .../recipes/amphibolite_brick.json | 60 ++--- .../amphibolite_brick_block_polishing.json | 114 +++++---- .../recipes/amphibolite_brick_furnace.json | 60 ++--- .../recipes/amphibolite_brick_slab.json | 60 ++--- .../amphibolite_brick_slab_polishing.json | 114 +++++---- .../amphibolite_brick_slab_recombination.json | 60 ++--- .../recipes/amphibolite_brick_stairs.json | 60 ++--- .../amphibolite_brick_stairs_polishing.json | 114 +++++---- .../recipes/amphibolite_brick_wall.json | 60 ++--- .../amphibolite_brick_wall_polishing.json | 114 +++++---- .../recipes/amphibolite_cobblestone.json | 60 ++--- .../recipes/amphibolite_furnace.json | 60 ++--- ...ite_polished_brick_slab_recombination.json | 60 ++--- ...phibolite_polished_slab_recombination.json | 60 ++--- .../amphibolite_polished_slabs_to_brick.json | 60 ++--- .../amphibolite_polished_stairs_to_brick.json | 60 ++--- .../amphibolite_polished_walls_to_brick.json | 60 ++--- .../amphibolite_raw_slab_polishing.json | 114 +++++---- .../amphibolite_raw_slab_recombination.json | 60 ++--- .../amphibolite_raw_slabs_to_brick.json | 60 ++--- .../amphibolite_raw_stairs_polishing.json | 114 +++++---- .../amphibolite_raw_stairs_to_brick.json | 60 ++--- .../amphibolite_raw_wall_polishing.json | 114 +++++---- .../amphibolite_raw_walls_to_brick.json | 60 ++--- .../recipes/amphibolite_relief_axe.json | 60 ++--- .../recipes/amphibolite_relief_blank.json | 60 ++--- .../recipes/amphibolite_relief_cross.json | 60 ++--- .../recipes/amphibolite_relief_hammer.json | 60 ++--- .../recipes/amphibolite_relief_hoe.json | 60 ++--- .../amphibolite_relief_horizontal.json | 60 ++--- .../recipes/amphibolite_relief_i.json | 60 ++--- .../recipes/amphibolite_relief_left.json | 60 ++--- .../recipes/amphibolite_relief_pickaxe.json | 60 ++--- .../recipes/amphibolite_relief_plus.json | 60 ++--- .../recipes/amphibolite_relief_right.json | 60 ++--- .../recipes/amphibolite_relief_sword.json | 60 ++--- .../recipes/amphibolite_relief_vertical.json | 60 ++--- .../advancement/recipes/amphibolite_slab.json | 60 ++--- .../recipes/amphibolite_smooth.json | 90 ++++--- .../recipes/amphibolite_smooth_brick.json | 60 ++--- .../amphibolite_smooth_brick_furnace.json | 60 ++--- .../amphibolite_smooth_brick_slab.json | 60 ++--- .../amphibolite_smooth_brick_stairs.json | 60 ++--- .../amphibolite_smooth_brick_wall.json | 60 ++--- .../recipes/amphibolite_smooth_furnace.json | 60 ++--- .../recipes/amphibolite_smooth_slab.json | 60 ++--- .../recipes/amphibolite_smooth_stairs.json | 60 ++--- .../recipes/amphibolite_smooth_wall.json | 60 ++--- .../recipes/amphibolite_stairs.json | 60 ++--- .../recipes/amphibolite_to_stone.json | 60 ++--- .../advancement/recipes/amphibolite_wall.json | 60 ++--- .../advancement/recipes/andesite_brick.json | 60 ++--- .../andesite_brick_block_polishing.json | 114 +++++---- .../recipes/andesite_brick_furnace.json | 60 ++--- .../recipes/andesite_brick_slab.json | 60 ++--- .../andesite_brick_slab_polishing.json | 114 +++++---- .../andesite_brick_slab_recombination.json | 60 ++--- .../recipes/andesite_brick_stairs.json | 60 ++--- .../andesite_brick_stairs_polishing.json | 114 +++++---- .../recipes/andesite_brick_wall.json | 60 ++--- .../andesite_brick_wall_polishing.json | 114 +++++---- .../recipes/andesite_cobblestone.json | 60 ++--- .../advancement/recipes/andesite_furnace.json | 60 ++--- ...ite_polished_brick_slab_recombination.json | 60 ++--- .../andesite_polished_slab_recombination.json | 60 ++--- .../andesite_polished_slabs_to_brick.json | 60 ++--- .../andesite_polished_stairs_to_brick.json | 60 ++--- .../andesite_polished_walls_to_brick.json | 60 ++--- .../recipes/andesite_raw_slab_polishing.json | 114 +++++---- .../andesite_raw_slab_recombination.json | 60 ++--- .../recipes/andesite_raw_slabs_to_brick.json | 60 ++--- .../andesite_raw_stairs_polishing.json | 114 +++++---- .../recipes/andesite_raw_stairs_to_brick.json | 60 ++--- .../recipes/andesite_raw_wall_polishing.json | 114 +++++---- .../recipes/andesite_raw_walls_to_brick.json | 60 ++--- .../recipes/andesite_relief_axe.json | 60 ++--- .../recipes/andesite_relief_blank.json | 60 ++--- .../recipes/andesite_relief_cross.json | 60 ++--- .../recipes/andesite_relief_hammer.json | 60 ++--- .../recipes/andesite_relief_hoe.json | 60 ++--- .../recipes/andesite_relief_horizontal.json | 60 ++--- .../recipes/andesite_relief_i.json | 60 ++--- .../recipes/andesite_relief_left.json | 60 ++--- .../recipes/andesite_relief_pickaxe.json | 60 ++--- .../recipes/andesite_relief_plus.json | 60 ++--- .../recipes/andesite_relief_right.json | 60 ++--- .../recipes/andesite_relief_sword.json | 60 ++--- .../recipes/andesite_relief_vertical.json | 60 ++--- .../advancement/recipes/andesite_slab.json | 60 ++--- .../recipes/andesite_slab_from_vanilla.json | 60 ++--- .../recipes/andesite_slab_to_vanilla.json | 60 ++--- .../advancement/recipes/andesite_smooth.json | 90 ++++--- .../recipes/andesite_smooth_brick.json | 60 ++--- .../andesite_smooth_brick_furnace.json | 60 ++--- .../recipes/andesite_smooth_brick_slab.json | 60 ++--- .../recipes/andesite_smooth_brick_stairs.json | 60 ++--- .../recipes/andesite_smooth_brick_wall.json | 60 ++--- .../recipes/andesite_smooth_furnace.json | 60 ++--- .../recipes/andesite_smooth_slab.json | 60 ++--- .../andesite_smooth_slab_from_vanilla.json | 60 ++--- .../andesite_smooth_slab_to_vanilla.json | 60 ++--- .../recipes/andesite_smooth_stairs.json | 60 ++--- .../recipes/andesite_smooth_wall.json | 60 ++--- .../advancement/recipes/andesite_stairs.json | 60 ++--- .../recipes/andesite_to_stone.json | 60 ++--- .../advancement/recipes/andesite_wall.json | 60 ++--- .../advancement/recipes/basalt_brick.json | 60 ++--- .../recipes/basalt_brick_block_polishing.json | 114 +++++---- .../recipes/basalt_brick_furnace.json | 60 ++--- .../recipes/basalt_brick_slab.json | 60 ++--- .../recipes/basalt_brick_slab_polishing.json | 114 +++++---- .../basalt_brick_slab_recombination.json | 60 ++--- .../recipes/basalt_brick_stairs.json | 60 ++--- .../basalt_brick_stairs_polishing.json | 114 +++++---- .../recipes/basalt_brick_wall.json | 60 ++--- .../recipes/basalt_brick_wall_polishing.json | 114 +++++---- .../recipes/basalt_cobblestone.json | 60 ++--- .../advancement/recipes/basalt_furnace.json | 60 ++--- ...alt_polished_brick_slab_recombination.json | 60 ++--- .../basalt_polished_slab_recombination.json | 60 ++--- .../basalt_polished_slabs_to_brick.json | 60 ++--- .../basalt_polished_stairs_to_brick.json | 60 ++--- .../basalt_polished_walls_to_brick.json | 60 ++--- .../recipes/basalt_raw_slab_polishing.json | 114 +++++---- .../basalt_raw_slab_recombination.json | 60 ++--- .../recipes/basalt_raw_slabs_to_brick.json | 60 ++--- .../recipes/basalt_raw_stairs_polishing.json | 114 +++++---- .../recipes/basalt_raw_stairs_to_brick.json | 60 ++--- .../recipes/basalt_raw_wall_polishing.json | 114 +++++---- .../recipes/basalt_raw_walls_to_brick.json | 60 ++--- .../recipes/basalt_relief_axe.json | 60 ++--- .../recipes/basalt_relief_blank.json | 60 ++--- .../recipes/basalt_relief_cross.json | 60 ++--- .../recipes/basalt_relief_hammer.json | 60 ++--- .../recipes/basalt_relief_hoe.json | 60 ++--- .../recipes/basalt_relief_horizontal.json | 60 ++--- .../advancement/recipes/basalt_relief_i.json | 60 ++--- .../recipes/basalt_relief_left.json | 60 ++--- .../recipes/basalt_relief_pickaxe.json | 60 ++--- .../recipes/basalt_relief_plus.json | 60 ++--- .../recipes/basalt_relief_right.json | 60 ++--- .../recipes/basalt_relief_sword.json | 60 ++--- .../recipes/basalt_relief_vertical.json | 60 ++--- .../advancement/recipes/basalt_slab.json | 60 ++--- .../advancement/recipes/basalt_smooth.json | 90 ++++--- .../recipes/basalt_smooth_brick.json | 60 ++--- .../recipes/basalt_smooth_brick_furnace.json | 60 ++--- .../recipes/basalt_smooth_brick_slab.json | 60 ++--- .../recipes/basalt_smooth_brick_stairs.json | 60 ++--- .../recipes/basalt_smooth_brick_wall.json | 60 ++--- .../recipes/basalt_smooth_furnace.json | 60 ++--- .../recipes/basalt_smooth_slab.json | 60 ++--- .../recipes/basalt_smooth_stairs.json | 60 ++--- .../recipes/basalt_smooth_wall.json | 60 ++--- .../advancement/recipes/basalt_stairs.json | 60 ++--- .../advancement/recipes/basalt_to_stone.json | 60 ++--- .../advancement/recipes/basalt_wall.json | 60 ++--- .../recipes/basaltic_glass_brick.json | 60 ++--- .../basaltic_glass_brick_block_polishing.json | 114 +++++---- .../recipes/basaltic_glass_brick_furnace.json | 60 ++--- .../recipes/basaltic_glass_brick_slab.json | 60 ++--- .../basaltic_glass_brick_slab_polishing.json | 114 +++++---- ...saltic_glass_brick_slab_recombination.json | 60 ++--- .../recipes/basaltic_glass_brick_stairs.json | 60 ++--- ...basaltic_glass_brick_stairs_polishing.json | 114 +++++---- .../recipes/basaltic_glass_brick_wall.json | 60 ++--- .../basaltic_glass_brick_wall_polishing.json | 114 +++++---- .../recipes/basaltic_glass_cobblestone.json | 60 ++--- .../recipes/basaltic_glass_furnace.json | 60 ++--- ...ass_polished_brick_slab_recombination.json | 60 ++--- ...tic_glass_polished_slab_recombination.json | 60 ++--- ...asaltic_glass_polished_slabs_to_brick.json | 60 ++--- ...saltic_glass_polished_stairs_to_brick.json | 60 ++--- ...asaltic_glass_polished_walls_to_brick.json | 60 ++--- .../basaltic_glass_raw_slab_polishing.json | 114 +++++---- ...basaltic_glass_raw_slab_recombination.json | 60 ++--- .../basaltic_glass_raw_slabs_to_brick.json | 60 ++--- .../basaltic_glass_raw_stairs_polishing.json | 114 +++++---- .../basaltic_glass_raw_stairs_to_brick.json | 60 ++--- .../basaltic_glass_raw_wall_polishing.json | 114 +++++---- .../basaltic_glass_raw_walls_to_brick.json | 60 ++--- .../recipes/basaltic_glass_relief_axe.json | 60 ++--- .../recipes/basaltic_glass_relief_blank.json | 60 ++--- .../recipes/basaltic_glass_relief_cross.json | 60 ++--- .../recipes/basaltic_glass_relief_hammer.json | 60 ++--- .../recipes/basaltic_glass_relief_hoe.json | 60 ++--- .../basaltic_glass_relief_horizontal.json | 60 ++--- .../recipes/basaltic_glass_relief_i.json | 60 ++--- .../recipes/basaltic_glass_relief_left.json | 60 ++--- .../basaltic_glass_relief_pickaxe.json | 60 ++--- .../recipes/basaltic_glass_relief_plus.json | 60 ++--- .../recipes/basaltic_glass_relief_right.json | 60 ++--- .../recipes/basaltic_glass_relief_sword.json | 60 ++--- .../basaltic_glass_relief_vertical.json | 60 ++--- .../recipes/basaltic_glass_slab.json | 60 ++--- .../recipes/basaltic_glass_smooth.json | 90 ++++--- .../recipes/basaltic_glass_smooth_brick.json | 60 ++--- .../basaltic_glass_smooth_brick_furnace.json | 60 ++--- .../basaltic_glass_smooth_brick_slab.json | 60 ++--- .../basaltic_glass_smooth_brick_stairs.json | 60 ++--- .../basaltic_glass_smooth_brick_wall.json | 60 ++--- .../basaltic_glass_smooth_furnace.json | 60 ++--- .../recipes/basaltic_glass_smooth_slab.json | 60 ++--- .../recipes/basaltic_glass_smooth_stairs.json | 60 ++--- .../recipes/basaltic_glass_smooth_wall.json | 60 ++--- .../recipes/basaltic_glass_stairs.json | 60 ++--- .../recipes/basaltic_glass_to_stone.json | 60 ++--- .../recipes/basaltic_glass_wall.json | 60 ++--- .../mineralogy/advancement/recipes/chalk.json | 60 ++--- .../advancement/recipes/chalk_dust.json | 60 ++--- .../advancement/recipes/cobblestone.json | 60 ++--- .../recipes/conglomerate_brick.json | 60 ++--- .../conglomerate_brick_block_polishing.json | 114 +++++---- .../recipes/conglomerate_brick_furnace.json | 60 ++--- .../recipes/conglomerate_brick_slab.json | 60 ++--- .../conglomerate_brick_slab_polishing.json | 114 +++++---- ...conglomerate_brick_slab_recombination.json | 60 ++--- .../recipes/conglomerate_brick_stairs.json | 60 ++--- .../conglomerate_brick_stairs_polishing.json | 114 +++++---- .../recipes/conglomerate_brick_wall.json | 60 ++--- .../conglomerate_brick_wall_polishing.json | 114 +++++---- .../recipes/conglomerate_cobblestone.json | 60 ++--- .../recipes/conglomerate_furnace.json | 60 ++--- ...ate_polished_brick_slab_recombination.json | 60 ++--- ...glomerate_polished_slab_recombination.json | 60 ++--- .../conglomerate_polished_slabs_to_brick.json | 60 ++--- ...conglomerate_polished_stairs_to_brick.json | 60 ++--- .../conglomerate_polished_walls_to_brick.json | 60 ++--- .../conglomerate_raw_slab_polishing.json | 114 +++++---- .../conglomerate_raw_slab_recombination.json | 60 ++--- .../conglomerate_raw_slabs_to_brick.json | 60 ++--- .../conglomerate_raw_stairs_polishing.json | 114 +++++---- .../conglomerate_raw_stairs_to_brick.json | 60 ++--- .../conglomerate_raw_wall_polishing.json | 114 +++++---- .../conglomerate_raw_walls_to_brick.json | 60 ++--- .../recipes/conglomerate_relief_axe.json | 60 ++--- .../recipes/conglomerate_relief_blank.json | 60 ++--- .../recipes/conglomerate_relief_cross.json | 60 ++--- .../recipes/conglomerate_relief_hammer.json | 60 ++--- .../recipes/conglomerate_relief_hoe.json | 60 ++--- .../conglomerate_relief_horizontal.json | 60 ++--- .../recipes/conglomerate_relief_i.json | 60 ++--- .../recipes/conglomerate_relief_left.json | 60 ++--- .../recipes/conglomerate_relief_pickaxe.json | 60 ++--- .../recipes/conglomerate_relief_plus.json | 60 ++--- .../recipes/conglomerate_relief_right.json | 60 ++--- .../recipes/conglomerate_relief_sword.json | 60 ++--- .../recipes/conglomerate_relief_vertical.json | 60 ++--- .../recipes/conglomerate_slab.json | 60 ++--- .../recipes/conglomerate_smooth.json | 90 ++++--- .../recipes/conglomerate_smooth_brick.json | 60 ++--- .../conglomerate_smooth_brick_furnace.json | 60 ++--- .../conglomerate_smooth_brick_slab.json | 60 ++--- .../conglomerate_smooth_brick_stairs.json | 60 ++--- .../conglomerate_smooth_brick_wall.json | 60 ++--- .../recipes/conglomerate_smooth_furnace.json | 60 ++--- .../recipes/conglomerate_smooth_slab.json | 60 ++--- .../recipes/conglomerate_smooth_stairs.json | 60 ++--- .../recipes/conglomerate_smooth_wall.json | 60 ++--- .../recipes/conglomerate_stairs.json | 60 ++--- .../recipes/conglomerate_to_stone.json | 60 ++--- .../recipes/conglomerate_wall.json | 60 ++--- .../advancement/recipes/diabase_brick.json | 60 ++--- .../diabase_brick_block_polishing.json | 114 +++++---- .../recipes/diabase_brick_furnace.json | 60 ++--- .../recipes/diabase_brick_slab.json | 60 ++--- .../recipes/diabase_brick_slab_polishing.json | 114 +++++---- .../diabase_brick_slab_recombination.json | 60 ++--- .../recipes/diabase_brick_stairs.json | 60 ++--- .../diabase_brick_stairs_polishing.json | 114 +++++---- .../recipes/diabase_brick_wall.json | 60 ++--- .../recipes/diabase_brick_wall_polishing.json | 114 +++++---- .../recipes/diabase_cobblestone.json | 60 ++--- .../advancement/recipes/diabase_furnace.json | 60 ++--- ...ase_polished_brick_slab_recombination.json | 60 ++--- .../diabase_polished_slab_recombination.json | 60 ++--- .../diabase_polished_slabs_to_brick.json | 60 ++--- .../diabase_polished_stairs_to_brick.json | 60 ++--- .../diabase_polished_walls_to_brick.json | 60 ++--- .../recipes/diabase_raw_slab_polishing.json | 114 +++++---- .../diabase_raw_slab_recombination.json | 60 ++--- .../recipes/diabase_raw_slabs_to_brick.json | 60 ++--- .../recipes/diabase_raw_stairs_polishing.json | 114 +++++---- .../recipes/diabase_raw_stairs_to_brick.json | 60 ++--- .../recipes/diabase_raw_wall_polishing.json | 114 +++++---- .../recipes/diabase_raw_walls_to_brick.json | 60 ++--- .../recipes/diabase_relief_axe.json | 60 ++--- .../recipes/diabase_relief_blank.json | 60 ++--- .../recipes/diabase_relief_cross.json | 60 ++--- .../recipes/diabase_relief_hammer.json | 60 ++--- .../recipes/diabase_relief_hoe.json | 60 ++--- .../recipes/diabase_relief_horizontal.json | 60 ++--- .../advancement/recipes/diabase_relief_i.json | 60 ++--- .../recipes/diabase_relief_left.json | 60 ++--- .../recipes/diabase_relief_pickaxe.json | 60 ++--- .../recipes/diabase_relief_plus.json | 60 ++--- .../recipes/diabase_relief_right.json | 60 ++--- .../recipes/diabase_relief_sword.json | 60 ++--- .../recipes/diabase_relief_vertical.json | 60 ++--- .../advancement/recipes/diabase_slab.json | 60 ++--- .../advancement/recipes/diabase_smooth.json | 90 ++++--- .../recipes/diabase_smooth_brick.json | 60 ++--- .../recipes/diabase_smooth_brick_furnace.json | 60 ++--- .../recipes/diabase_smooth_brick_slab.json | 60 ++--- .../recipes/diabase_smooth_brick_stairs.json | 60 ++--- .../recipes/diabase_smooth_brick_wall.json | 60 ++--- .../recipes/diabase_smooth_furnace.json | 60 ++--- .../recipes/diabase_smooth_slab.json | 60 ++--- .../recipes/diabase_smooth_stairs.json | 60 ++--- .../recipes/diabase_smooth_wall.json | 60 ++--- .../advancement/recipes/diabase_stairs.json | 60 ++--- .../advancement/recipes/diabase_to_stone.json | 60 ++--- .../advancement/recipes/diabase_wall.json | 60 ++--- .../advancement/recipes/diorite_brick.json | 60 ++--- .../diorite_brick_block_polishing.json | 114 +++++---- .../recipes/diorite_brick_furnace.json | 60 ++--- .../recipes/diorite_brick_slab.json | 60 ++--- .../recipes/diorite_brick_slab_polishing.json | 114 +++++---- .../diorite_brick_slab_recombination.json | 60 ++--- .../recipes/diorite_brick_stairs.json | 60 ++--- .../diorite_brick_stairs_polishing.json | 114 +++++---- .../recipes/diorite_brick_wall.json | 60 ++--- .../recipes/diorite_brick_wall_polishing.json | 114 +++++---- .../recipes/diorite_cobblestone.json | 60 ++--- .../advancement/recipes/diorite_furnace.json | 60 ++--- ...ite_polished_brick_slab_recombination.json | 60 ++--- .../diorite_polished_slab_recombination.json | 60 ++--- .../diorite_polished_slabs_to_brick.json | 60 ++--- .../diorite_polished_stairs_to_brick.json | 60 ++--- .../diorite_polished_walls_to_brick.json | 60 ++--- .../recipes/diorite_raw_slab_polishing.json | 114 +++++---- .../diorite_raw_slab_recombination.json | 60 ++--- .../recipes/diorite_raw_slabs_to_brick.json | 60 ++--- .../recipes/diorite_raw_stairs_polishing.json | 114 +++++---- .../recipes/diorite_raw_stairs_to_brick.json | 60 ++--- .../recipes/diorite_raw_wall_polishing.json | 114 +++++---- .../recipes/diorite_raw_walls_to_brick.json | 60 ++--- .../recipes/diorite_relief_axe.json | 60 ++--- .../recipes/diorite_relief_blank.json | 60 ++--- .../recipes/diorite_relief_cross.json | 60 ++--- .../recipes/diorite_relief_hammer.json | 60 ++--- .../recipes/diorite_relief_hoe.json | 60 ++--- .../recipes/diorite_relief_horizontal.json | 60 ++--- .../advancement/recipes/diorite_relief_i.json | 60 ++--- .../recipes/diorite_relief_left.json | 60 ++--- .../recipes/diorite_relief_pickaxe.json | 60 ++--- .../recipes/diorite_relief_plus.json | 60 ++--- .../recipes/diorite_relief_right.json | 60 ++--- .../recipes/diorite_relief_sword.json | 60 ++--- .../recipes/diorite_relief_vertical.json | 60 ++--- .../advancement/recipes/diorite_slab.json | 60 ++--- .../recipes/diorite_slab_from_vanilla.json | 60 ++--- .../recipes/diorite_slab_to_vanilla.json | 60 ++--- .../advancement/recipes/diorite_smooth.json | 90 ++++--- .../recipes/diorite_smooth_brick.json | 60 ++--- .../recipes/diorite_smooth_brick_furnace.json | 60 ++--- .../recipes/diorite_smooth_brick_slab.json | 60 ++--- .../recipes/diorite_smooth_brick_stairs.json | 60 ++--- .../recipes/diorite_smooth_brick_wall.json | 60 ++--- .../recipes/diorite_smooth_furnace.json | 60 ++--- .../recipes/diorite_smooth_slab.json | 60 ++--- .../diorite_smooth_slab_from_vanilla.json | 60 ++--- .../diorite_smooth_slab_to_vanilla.json | 60 ++--- .../recipes/diorite_smooth_stairs.json | 60 ++--- .../recipes/diorite_smooth_wall.json | 60 ++--- .../advancement/recipes/diorite_stairs.json | 60 ++--- .../advancement/recipes/diorite_to_stone.json | 60 ++--- .../advancement/recipes/diorite_wall.json | 60 ++--- .../advancement/recipes/dolomite_brick.json | 60 ++--- .../dolomite_brick_block_polishing.json | 114 +++++---- .../recipes/dolomite_brick_furnace.json | 60 ++--- .../recipes/dolomite_brick_slab.json | 60 ++--- .../dolomite_brick_slab_polishing.json | 114 +++++---- .../dolomite_brick_slab_recombination.json | 60 ++--- .../recipes/dolomite_brick_stairs.json | 60 ++--- .../dolomite_brick_stairs_polishing.json | 114 +++++---- .../recipes/dolomite_brick_wall.json | 60 ++--- .../dolomite_brick_wall_polishing.json | 114 +++++---- .../recipes/dolomite_cobblestone.json | 60 ++--- .../advancement/recipes/dolomite_furnace.json | 60 ++--- ...ite_polished_brick_slab_recombination.json | 60 ++--- .../dolomite_polished_slab_recombination.json | 60 ++--- .../dolomite_polished_slabs_to_brick.json | 60 ++--- .../dolomite_polished_stairs_to_brick.json | 60 ++--- .../dolomite_polished_walls_to_brick.json | 60 ++--- .../recipes/dolomite_raw_slab_polishing.json | 114 +++++---- .../dolomite_raw_slab_recombination.json | 60 ++--- .../recipes/dolomite_raw_slabs_to_brick.json | 60 ++--- .../dolomite_raw_stairs_polishing.json | 114 +++++---- .../recipes/dolomite_raw_stairs_to_brick.json | 60 ++--- .../recipes/dolomite_raw_wall_polishing.json | 114 +++++---- .../recipes/dolomite_raw_walls_to_brick.json | 60 ++--- .../recipes/dolomite_relief_axe.json | 60 ++--- .../recipes/dolomite_relief_blank.json | 60 ++--- .../recipes/dolomite_relief_cross.json | 60 ++--- .../recipes/dolomite_relief_hammer.json | 60 ++--- .../recipes/dolomite_relief_hoe.json | 60 ++--- .../recipes/dolomite_relief_horizontal.json | 60 ++--- .../recipes/dolomite_relief_i.json | 60 ++--- .../recipes/dolomite_relief_left.json | 60 ++--- .../recipes/dolomite_relief_pickaxe.json | 60 ++--- .../recipes/dolomite_relief_plus.json | 60 ++--- .../recipes/dolomite_relief_right.json | 60 ++--- .../recipes/dolomite_relief_sword.json | 60 ++--- .../recipes/dolomite_relief_vertical.json | 60 ++--- .../advancement/recipes/dolomite_slab.json | 60 ++--- .../advancement/recipes/dolomite_smooth.json | 90 ++++--- .../recipes/dolomite_smooth_brick.json | 60 ++--- .../dolomite_smooth_brick_furnace.json | 60 ++--- .../recipes/dolomite_smooth_brick_slab.json | 60 ++--- .../recipes/dolomite_smooth_brick_stairs.json | 60 ++--- .../recipes/dolomite_smooth_brick_wall.json | 60 ++--- .../recipes/dolomite_smooth_furnace.json | 60 ++--- .../recipes/dolomite_smooth_slab.json | 60 ++--- .../recipes/dolomite_smooth_stairs.json | 60 ++--- .../recipes/dolomite_smooth_wall.json | 60 ++--- .../advancement/recipes/dolomite_stairs.json | 60 ++--- .../recipes/dolomite_to_stone.json | 60 ++--- .../advancement/recipes/dolomite_wall.json | 60 ++--- .../advancement/recipes/drywall.json | 72 +++--- .../advancement/recipes/drywall_black.json | 72 +++--- .../advancement/recipes/drywall_blue.json | 72 +++--- .../advancement/recipes/drywall_brown.json | 72 +++--- .../advancement/recipes/drywall_cyan.json | 72 +++--- .../advancement/recipes/drywall_gray.json | 72 +++--- .../advancement/recipes/drywall_green.json | 72 +++--- .../recipes/drywall_light_blue.json | 72 +++--- .../advancement/recipes/drywall_lime.json | 72 +++--- .../advancement/recipes/drywall_magenta.json | 72 +++--- .../advancement/recipes/drywall_orange.json | 72 +++--- .../advancement/recipes/drywall_pink.json | 72 +++--- .../advancement/recipes/drywall_purple.json | 72 +++--- .../advancement/recipes/drywall_red.json | 72 +++--- .../advancement/recipes/drywall_silver.json | 72 +++--- .../advancement/recipes/drywall_white.json | 72 +++--- .../advancement/recipes/drywall_yellow.json | 72 +++--- .../advancement/recipes/gabbro_brick.json | 60 ++--- .../recipes/gabbro_brick_block_polishing.json | 114 +++++---- .../recipes/gabbro_brick_furnace.json | 60 ++--- .../recipes/gabbro_brick_slab.json | 60 ++--- .../recipes/gabbro_brick_slab_polishing.json | 114 +++++---- .../gabbro_brick_slab_recombination.json | 60 ++--- .../recipes/gabbro_brick_stairs.json | 60 ++--- .../gabbro_brick_stairs_polishing.json | 114 +++++---- .../recipes/gabbro_brick_wall.json | 60 ++--- .../recipes/gabbro_brick_wall_polishing.json | 114 +++++---- .../recipes/gabbro_cobblestone.json | 60 ++--- .../advancement/recipes/gabbro_furnace.json | 60 ++--- ...bro_polished_brick_slab_recombination.json | 60 ++--- .../gabbro_polished_slab_recombination.json | 60 ++--- .../gabbro_polished_slabs_to_brick.json | 60 ++--- .../gabbro_polished_stairs_to_brick.json | 60 ++--- .../gabbro_polished_walls_to_brick.json | 60 ++--- .../recipes/gabbro_raw_slab_polishing.json | 114 +++++---- .../gabbro_raw_slab_recombination.json | 60 ++--- .../recipes/gabbro_raw_slabs_to_brick.json | 60 ++--- .../recipes/gabbro_raw_stairs_polishing.json | 114 +++++---- .../recipes/gabbro_raw_stairs_to_brick.json | 60 ++--- .../recipes/gabbro_raw_wall_polishing.json | 114 +++++---- .../recipes/gabbro_raw_walls_to_brick.json | 60 ++--- .../recipes/gabbro_relief_axe.json | 60 ++--- .../recipes/gabbro_relief_blank.json | 60 ++--- .../recipes/gabbro_relief_cross.json | 60 ++--- .../recipes/gabbro_relief_hammer.json | 60 ++--- .../recipes/gabbro_relief_hoe.json | 60 ++--- .../recipes/gabbro_relief_horizontal.json | 60 ++--- .../advancement/recipes/gabbro_relief_i.json | 60 ++--- .../recipes/gabbro_relief_left.json | 60 ++--- .../recipes/gabbro_relief_pickaxe.json | 60 ++--- .../recipes/gabbro_relief_plus.json | 60 ++--- .../recipes/gabbro_relief_right.json | 60 ++--- .../recipes/gabbro_relief_sword.json | 60 ++--- .../recipes/gabbro_relief_vertical.json | 60 ++--- .../advancement/recipes/gabbro_slab.json | 60 ++--- .../advancement/recipes/gabbro_smooth.json | 90 ++++--- .../recipes/gabbro_smooth_brick.json | 60 ++--- .../recipes/gabbro_smooth_brick_furnace.json | 60 ++--- .../recipes/gabbro_smooth_brick_slab.json | 60 ++--- .../recipes/gabbro_smooth_brick_stairs.json | 60 ++--- .../recipes/gabbro_smooth_brick_wall.json | 60 ++--- .../recipes/gabbro_smooth_furnace.json | 60 ++--- .../recipes/gabbro_smooth_slab.json | 60 ++--- .../recipes/gabbro_smooth_stairs.json | 60 ++--- .../recipes/gabbro_smooth_wall.json | 60 ++--- .../advancement/recipes/gabbro_stairs.json | 60 ++--- .../advancement/recipes/gabbro_to_stone.json | 60 ++--- .../advancement/recipes/gabbro_wall.json | 60 ++--- .../advancement/recipes/gneiss_brick.json | 60 ++--- .../recipes/gneiss_brick_block_polishing.json | 114 +++++---- .../recipes/gneiss_brick_furnace.json | 60 ++--- .../recipes/gneiss_brick_slab.json | 60 ++--- .../recipes/gneiss_brick_slab_polishing.json | 114 +++++---- .../gneiss_brick_slab_recombination.json | 60 ++--- .../recipes/gneiss_brick_stairs.json | 60 ++--- .../gneiss_brick_stairs_polishing.json | 114 +++++---- .../recipes/gneiss_brick_wall.json | 60 ++--- .../recipes/gneiss_brick_wall_polishing.json | 114 +++++---- .../recipes/gneiss_cobblestone.json | 60 ++--- .../advancement/recipes/gneiss_furnace.json | 60 ++--- ...iss_polished_brick_slab_recombination.json | 60 ++--- .../gneiss_polished_slab_recombination.json | 60 ++--- .../gneiss_polished_slabs_to_brick.json | 60 ++--- .../gneiss_polished_stairs_to_brick.json | 60 ++--- .../gneiss_polished_walls_to_brick.json | 60 ++--- .../recipes/gneiss_raw_slab_polishing.json | 114 +++++---- .../gneiss_raw_slab_recombination.json | 60 ++--- .../recipes/gneiss_raw_slabs_to_brick.json | 60 ++--- .../recipes/gneiss_raw_stairs_polishing.json | 114 +++++---- .../recipes/gneiss_raw_stairs_to_brick.json | 60 ++--- .../recipes/gneiss_raw_wall_polishing.json | 114 +++++---- .../recipes/gneiss_raw_walls_to_brick.json | 60 ++--- .../recipes/gneiss_relief_axe.json | 60 ++--- .../recipes/gneiss_relief_blank.json | 60 ++--- .../recipes/gneiss_relief_cross.json | 60 ++--- .../recipes/gneiss_relief_hammer.json | 60 ++--- .../recipes/gneiss_relief_hoe.json | 60 ++--- .../recipes/gneiss_relief_horizontal.json | 60 ++--- .../advancement/recipes/gneiss_relief_i.json | 60 ++--- .../recipes/gneiss_relief_left.json | 60 ++--- .../recipes/gneiss_relief_pickaxe.json | 60 ++--- .../recipes/gneiss_relief_plus.json | 60 ++--- .../recipes/gneiss_relief_right.json | 60 ++--- .../recipes/gneiss_relief_sword.json | 60 ++--- .../recipes/gneiss_relief_vertical.json | 60 ++--- .../advancement/recipes/gneiss_slab.json | 60 ++--- .../advancement/recipes/gneiss_smooth.json | 90 ++++--- .../recipes/gneiss_smooth_brick.json | 60 ++--- .../recipes/gneiss_smooth_brick_furnace.json | 60 ++--- .../recipes/gneiss_smooth_brick_slab.json | 60 ++--- .../recipes/gneiss_smooth_brick_stairs.json | 60 ++--- .../recipes/gneiss_smooth_brick_wall.json | 60 ++--- .../recipes/gneiss_smooth_furnace.json | 60 ++--- .../recipes/gneiss_smooth_slab.json | 60 ++--- .../recipes/gneiss_smooth_stairs.json | 60 ++--- .../recipes/gneiss_smooth_wall.json | 60 ++--- .../advancement/recipes/gneiss_stairs.json | 60 ++--- .../advancement/recipes/gneiss_to_stone.json | 60 ++--- .../advancement/recipes/gneiss_wall.json | 60 ++--- .../advancement/recipes/granite_brick.json | 60 ++--- .../granite_brick_block_polishing.json | 114 +++++---- .../recipes/granite_brick_furnace.json | 60 ++--- .../recipes/granite_brick_slab.json | 60 ++--- .../recipes/granite_brick_slab_polishing.json | 114 +++++---- .../granite_brick_slab_recombination.json | 60 ++--- .../recipes/granite_brick_stairs.json | 60 ++--- .../granite_brick_stairs_polishing.json | 114 +++++---- .../recipes/granite_brick_wall.json | 60 ++--- .../recipes/granite_brick_wall_polishing.json | 114 +++++---- .../recipes/granite_cobblestone.json | 60 ++--- .../advancement/recipes/granite_furnace.json | 60 ++--- ...ite_polished_brick_slab_recombination.json | 60 ++--- .../granite_polished_slab_recombination.json | 60 ++--- .../granite_polished_slabs_to_brick.json | 60 ++--- .../granite_polished_stairs_to_brick.json | 60 ++--- .../granite_polished_walls_to_brick.json | 60 ++--- .../recipes/granite_raw_slab_polishing.json | 114 +++++---- .../granite_raw_slab_recombination.json | 60 ++--- .../recipes/granite_raw_slabs_to_brick.json | 60 ++--- .../recipes/granite_raw_stairs_polishing.json | 114 +++++---- .../recipes/granite_raw_stairs_to_brick.json | 60 ++--- .../recipes/granite_raw_wall_polishing.json | 114 +++++---- .../recipes/granite_raw_walls_to_brick.json | 60 ++--- .../recipes/granite_relief_axe.json | 60 ++--- .../recipes/granite_relief_blank.json | 60 ++--- .../recipes/granite_relief_cross.json | 60 ++--- .../recipes/granite_relief_hammer.json | 60 ++--- .../recipes/granite_relief_hoe.json | 60 ++--- .../recipes/granite_relief_horizontal.json | 60 ++--- .../advancement/recipes/granite_relief_i.json | 60 ++--- .../recipes/granite_relief_left.json | 60 ++--- .../recipes/granite_relief_pickaxe.json | 60 ++--- .../recipes/granite_relief_plus.json | 60 ++--- .../recipes/granite_relief_right.json | 60 ++--- .../recipes/granite_relief_sword.json | 60 ++--- .../recipes/granite_relief_vertical.json | 60 ++--- .../advancement/recipes/granite_slab.json | 60 ++--- .../recipes/granite_slab_from_vanilla.json | 60 ++--- .../recipes/granite_slab_to_vanilla.json | 60 ++--- .../advancement/recipes/granite_smooth.json | 90 ++++--- .../recipes/granite_smooth_brick.json | 60 ++--- .../recipes/granite_smooth_brick_furnace.json | 60 ++--- .../recipes/granite_smooth_brick_slab.json | 60 ++--- .../recipes/granite_smooth_brick_stairs.json | 60 ++--- .../recipes/granite_smooth_brick_wall.json | 60 ++--- .../recipes/granite_smooth_furnace.json | 60 ++--- .../recipes/granite_smooth_slab.json | 60 ++--- .../granite_smooth_slab_from_vanilla.json | 60 ++--- .../granite_smooth_slab_to_vanilla.json | 60 ++--- .../recipes/granite_smooth_stairs.json | 60 ++--- .../recipes/granite_smooth_wall.json | 60 ++--- .../advancement/recipes/granite_stairs.json | 60 ++--- .../advancement/recipes/granite_to_stone.json | 60 ++--- .../advancement/recipes/granite_wall.json | 60 ++--- .../advancement/recipes/gravel_to_stone.json | 60 ++--- .../recipes/gunpowder_from_carbon_dust.json | 96 ++++---- .../recipes/gunpowder_from_charcoal.json | 72 +++--- .../recipes/gunpowder_from_coal_dust.json | 96 ++++---- .../recipes/gunpowder_from_sugar.json | 72 +++--- .../advancement/recipes/gypsum.json | 60 ++--- .../advancement/recipes/gypsum_dust.json | 60 ++--- .../advancement/recipes/hornfels_brick.json | 60 ++--- .../hornfels_brick_block_polishing.json | 114 +++++---- .../recipes/hornfels_brick_furnace.json | 60 ++--- .../recipes/hornfels_brick_slab.json | 60 ++--- .../hornfels_brick_slab_polishing.json | 114 +++++---- .../hornfels_brick_slab_recombination.json | 60 ++--- .../recipes/hornfels_brick_stairs.json | 60 ++--- .../hornfels_brick_stairs_polishing.json | 114 +++++---- .../recipes/hornfels_brick_wall.json | 60 ++--- .../hornfels_brick_wall_polishing.json | 114 +++++---- .../recipes/hornfels_cobblestone.json | 60 ++--- .../advancement/recipes/hornfels_furnace.json | 60 ++--- ...els_polished_brick_slab_recombination.json | 60 ++--- .../hornfels_polished_slab_recombination.json | 60 ++--- .../hornfels_polished_slabs_to_brick.json | 60 ++--- .../hornfels_polished_stairs_to_brick.json | 60 ++--- .../hornfels_polished_walls_to_brick.json | 60 ++--- .../recipes/hornfels_raw_slab_polishing.json | 114 +++++---- .../hornfels_raw_slab_recombination.json | 60 ++--- .../recipes/hornfels_raw_slabs_to_brick.json | 60 ++--- .../hornfels_raw_stairs_polishing.json | 114 +++++---- .../recipes/hornfels_raw_stairs_to_brick.json | 60 ++--- .../recipes/hornfels_raw_wall_polishing.json | 114 +++++---- .../recipes/hornfels_raw_walls_to_brick.json | 60 ++--- .../recipes/hornfels_relief_axe.json | 60 ++--- .../recipes/hornfels_relief_blank.json | 60 ++--- .../recipes/hornfels_relief_cross.json | 60 ++--- .../recipes/hornfels_relief_hammer.json | 60 ++--- .../recipes/hornfels_relief_hoe.json | 60 ++--- .../recipes/hornfels_relief_horizontal.json | 60 ++--- .../recipes/hornfels_relief_i.json | 60 ++--- .../recipes/hornfels_relief_left.json | 60 ++--- .../recipes/hornfels_relief_pickaxe.json | 60 ++--- .../recipes/hornfels_relief_plus.json | 60 ++--- .../recipes/hornfels_relief_right.json | 60 ++--- .../recipes/hornfels_relief_sword.json | 60 ++--- .../recipes/hornfels_relief_vertical.json | 60 ++--- .../advancement/recipes/hornfels_slab.json | 60 ++--- .../advancement/recipes/hornfels_smooth.json | 90 ++++--- .../recipes/hornfels_smooth_brick.json | 60 ++--- .../hornfels_smooth_brick_furnace.json | 60 ++--- .../recipes/hornfels_smooth_brick_slab.json | 60 ++--- .../recipes/hornfels_smooth_brick_stairs.json | 60 ++--- .../recipes/hornfels_smooth_brick_wall.json | 60 ++--- .../recipes/hornfels_smooth_furnace.json | 60 ++--- .../recipes/hornfels_smooth_slab.json | 60 ++--- .../recipes/hornfels_smooth_stairs.json | 60 ++--- .../recipes/hornfels_smooth_wall.json | 60 ++--- .../advancement/recipes/hornfels_stairs.json | 60 ++--- .../recipes/hornfels_to_stone.json | 60 ++--- .../advancement/recipes/hornfels_wall.json | 60 ++--- .../advancement/recipes/limestone_brick.json | 60 ++--- .../limestone_brick_block_polishing.json | 114 +++++---- .../recipes/limestone_brick_furnace.json | 60 ++--- .../recipes/limestone_brick_slab.json | 60 ++--- .../limestone_brick_slab_polishing.json | 114 +++++---- .../limestone_brick_slab_recombination.json | 60 ++--- .../recipes/limestone_brick_stairs.json | 60 ++--- .../limestone_brick_stairs_polishing.json | 114 +++++---- .../recipes/limestone_brick_wall.json | 60 ++--- .../limestone_brick_wall_polishing.json | 114 +++++---- .../recipes/limestone_cobblestone.json | 60 ++--- .../recipes/limestone_furnace.json | 60 ++--- ...one_polished_brick_slab_recombination.json | 60 ++--- ...limestone_polished_slab_recombination.json | 60 ++--- .../limestone_polished_slabs_to_brick.json | 60 ++--- .../limestone_polished_stairs_to_brick.json | 60 ++--- .../limestone_polished_walls_to_brick.json | 60 ++--- .../recipes/limestone_raw_slab_polishing.json | 114 +++++---- .../limestone_raw_slab_recombination.json | 60 ++--- .../recipes/limestone_raw_slabs_to_brick.json | 60 ++--- .../limestone_raw_stairs_polishing.json | 114 +++++---- .../limestone_raw_stairs_to_brick.json | 60 ++--- .../recipes/limestone_raw_wall_polishing.json | 114 +++++---- .../recipes/limestone_raw_walls_to_brick.json | 60 ++--- .../recipes/limestone_relief_axe.json | 60 ++--- .../recipes/limestone_relief_blank.json | 60 ++--- .../recipes/limestone_relief_cross.json | 60 ++--- .../recipes/limestone_relief_hammer.json | 60 ++--- .../recipes/limestone_relief_hoe.json | 60 ++--- .../recipes/limestone_relief_horizontal.json | 60 ++--- .../recipes/limestone_relief_i.json | 60 ++--- .../recipes/limestone_relief_left.json | 60 ++--- .../recipes/limestone_relief_pickaxe.json | 60 ++--- .../recipes/limestone_relief_plus.json | 60 ++--- .../recipes/limestone_relief_right.json | 60 ++--- .../recipes/limestone_relief_sword.json | 60 ++--- .../recipes/limestone_relief_vertical.json | 60 ++--- .../advancement/recipes/limestone_slab.json | 60 ++--- .../advancement/recipes/limestone_smooth.json | 90 ++++--- .../recipes/limestone_smooth_brick.json | 60 ++--- .../limestone_smooth_brick_furnace.json | 60 ++--- .../recipes/limestone_smooth_brick_slab.json | 60 ++--- .../limestone_smooth_brick_stairs.json | 60 ++--- .../recipes/limestone_smooth_brick_wall.json | 60 ++--- .../recipes/limestone_smooth_furnace.json | 60 ++--- .../recipes/limestone_smooth_slab.json | 60 ++--- .../recipes/limestone_smooth_stairs.json | 60 ++--- .../recipes/limestone_smooth_wall.json | 60 ++--- .../advancement/recipes/limestone_stairs.json | 60 ++--- .../recipes/limestone_to_stone.json | 60 ++--- .../advancement/recipes/limestone_wall.json | 60 ++--- .../advancement/recipes/marble_brick.json | 60 ++--- .../recipes/marble_brick_block_polishing.json | 114 +++++---- .../recipes/marble_brick_furnace.json | 60 ++--- .../recipes/marble_brick_slab.json | 60 ++--- .../recipes/marble_brick_slab_polishing.json | 114 +++++---- .../marble_brick_slab_recombination.json | 60 ++--- .../recipes/marble_brick_stairs.json | 60 ++--- .../marble_brick_stairs_polishing.json | 114 +++++---- .../recipes/marble_brick_wall.json | 60 ++--- .../recipes/marble_brick_wall_polishing.json | 114 +++++---- .../recipes/marble_cobblestone.json | 60 ++--- .../advancement/recipes/marble_furnace.json | 60 ++--- ...ble_polished_brick_slab_recombination.json | 60 ++--- .../marble_polished_slab_recombination.json | 60 ++--- .../marble_polished_slabs_to_brick.json | 60 ++--- .../marble_polished_stairs_to_brick.json | 60 ++--- .../marble_polished_walls_to_brick.json | 60 ++--- .../recipes/marble_raw_slab_polishing.json | 114 +++++---- .../marble_raw_slab_recombination.json | 60 ++--- .../recipes/marble_raw_slabs_to_brick.json | 60 ++--- .../recipes/marble_raw_stairs_polishing.json | 114 +++++---- .../recipes/marble_raw_stairs_to_brick.json | 60 ++--- .../recipes/marble_raw_wall_polishing.json | 114 +++++---- .../recipes/marble_raw_walls_to_brick.json | 60 ++--- .../recipes/marble_relief_axe.json | 60 ++--- .../recipes/marble_relief_blank.json | 60 ++--- .../recipes/marble_relief_cross.json | 60 ++--- .../recipes/marble_relief_hammer.json | 60 ++--- .../recipes/marble_relief_hoe.json | 60 ++--- .../recipes/marble_relief_horizontal.json | 60 ++--- .../advancement/recipes/marble_relief_i.json | 60 ++--- .../recipes/marble_relief_left.json | 60 ++--- .../recipes/marble_relief_pickaxe.json | 60 ++--- .../recipes/marble_relief_plus.json | 60 ++--- .../recipes/marble_relief_right.json | 60 ++--- .../recipes/marble_relief_sword.json | 60 ++--- .../recipes/marble_relief_vertical.json | 60 ++--- .../advancement/recipes/marble_slab.json | 60 ++--- .../advancement/recipes/marble_smooth.json | 90 ++++--- .../recipes/marble_smooth_brick.json | 60 ++--- .../recipes/marble_smooth_brick_furnace.json | 60 ++--- .../recipes/marble_smooth_brick_slab.json | 60 ++--- .../recipes/marble_smooth_brick_stairs.json | 60 ++--- .../recipes/marble_smooth_brick_wall.json | 60 ++--- .../recipes/marble_smooth_furnace.json | 60 ++--- .../recipes/marble_smooth_slab.json | 60 ++--- .../recipes/marble_smooth_stairs.json | 60 ++--- .../recipes/marble_smooth_wall.json | 60 ++--- .../advancement/recipes/marble_stairs.json | 60 ++--- .../advancement/recipes/marble_to_stone.json | 60 ++--- .../advancement/recipes/marble_wall.json | 60 ++--- .../recipes/mineralfertilizer.json | 72 +++--- .../advancement/recipes/nitrate_block.json | 72 +++--- .../advancement/recipes/nitrate_dust.json | 72 +++--- .../advancement/recipes/novaculite_brick.json | 60 ++--- .../novaculite_brick_block_polishing.json | 114 +++++---- .../recipes/novaculite_brick_furnace.json | 60 ++--- .../recipes/novaculite_brick_slab.json | 60 ++--- .../novaculite_brick_slab_polishing.json | 114 +++++---- .../novaculite_brick_slab_recombination.json | 60 ++--- .../recipes/novaculite_brick_stairs.json | 60 ++--- .../novaculite_brick_stairs_polishing.json | 114 +++++---- .../recipes/novaculite_brick_wall.json | 60 ++--- .../novaculite_brick_wall_polishing.json | 114 +++++---- .../recipes/novaculite_cobblestone.json | 60 ++--- .../recipes/novaculite_furnace.json | 60 ++--- ...ite_polished_brick_slab_recombination.json | 60 ++--- ...ovaculite_polished_slab_recombination.json | 60 ++--- .../novaculite_polished_slabs_to_brick.json | 60 ++--- .../novaculite_polished_stairs_to_brick.json | 60 ++--- .../novaculite_polished_walls_to_brick.json | 60 ++--- .../novaculite_raw_slab_polishing.json | 114 +++++---- .../novaculite_raw_slab_recombination.json | 60 ++--- .../novaculite_raw_slabs_to_brick.json | 60 ++--- .../novaculite_raw_stairs_polishing.json | 114 +++++---- .../novaculite_raw_stairs_to_brick.json | 60 ++--- .../novaculite_raw_wall_polishing.json | 114 +++++---- .../novaculite_raw_walls_to_brick.json | 60 ++--- .../recipes/novaculite_relief_axe.json | 60 ++--- .../recipes/novaculite_relief_blank.json | 60 ++--- .../recipes/novaculite_relief_cross.json | 60 ++--- .../recipes/novaculite_relief_hammer.json | 60 ++--- .../recipes/novaculite_relief_hoe.json | 60 ++--- .../recipes/novaculite_relief_horizontal.json | 60 ++--- .../recipes/novaculite_relief_i.json | 60 ++--- .../recipes/novaculite_relief_left.json | 60 ++--- .../recipes/novaculite_relief_pickaxe.json | 60 ++--- .../recipes/novaculite_relief_plus.json | 60 ++--- .../recipes/novaculite_relief_right.json | 60 ++--- .../recipes/novaculite_relief_sword.json | 60 ++--- .../recipes/novaculite_relief_vertical.json | 60 ++--- .../advancement/recipes/novaculite_slab.json | 60 ++--- .../recipes/novaculite_smooth.json | 90 ++++--- .../recipes/novaculite_smooth_brick.json | 60 ++--- .../novaculite_smooth_brick_furnace.json | 60 ++--- .../recipes/novaculite_smooth_brick_slab.json | 60 ++--- .../novaculite_smooth_brick_stairs.json | 60 ++--- .../recipes/novaculite_smooth_brick_wall.json | 60 ++--- .../recipes/novaculite_smooth_furnace.json | 60 ++--- .../recipes/novaculite_smooth_slab.json | 60 ++--- .../recipes/novaculite_smooth_stairs.json | 60 ++--- .../recipes/novaculite_smooth_wall.json | 60 ++--- .../recipes/novaculite_stairs.json | 60 ++--- .../recipes/novaculite_to_stone.json | 60 ++--- .../advancement/recipes/novaculite_wall.json | 60 ++--- .../advancement/recipes/pegmatite_brick.json | 60 ++--- .../pegmatite_brick_block_polishing.json | 114 +++++---- .../recipes/pegmatite_brick_furnace.json | 60 ++--- .../recipes/pegmatite_brick_slab.json | 60 ++--- .../pegmatite_brick_slab_polishing.json | 114 +++++---- .../pegmatite_brick_slab_recombination.json | 60 ++--- .../recipes/pegmatite_brick_stairs.json | 60 ++--- .../pegmatite_brick_stairs_polishing.json | 114 +++++---- .../recipes/pegmatite_brick_wall.json | 60 ++--- .../pegmatite_brick_wall_polishing.json | 114 +++++---- .../recipes/pegmatite_cobblestone.json | 60 ++--- .../recipes/pegmatite_furnace.json | 60 ++--- ...ite_polished_brick_slab_recombination.json | 60 ++--- ...pegmatite_polished_slab_recombination.json | 60 ++--- .../pegmatite_polished_slabs_to_brick.json | 60 ++--- .../pegmatite_polished_stairs_to_brick.json | 60 ++--- .../pegmatite_polished_walls_to_brick.json | 60 ++--- .../recipes/pegmatite_raw_slab_polishing.json | 114 +++++---- .../pegmatite_raw_slab_recombination.json | 60 ++--- .../recipes/pegmatite_raw_slabs_to_brick.json | 60 ++--- .../pegmatite_raw_stairs_polishing.json | 114 +++++---- .../pegmatite_raw_stairs_to_brick.json | 60 ++--- .../recipes/pegmatite_raw_wall_polishing.json | 114 +++++---- .../recipes/pegmatite_raw_walls_to_brick.json | 60 ++--- .../recipes/pegmatite_relief_axe.json | 60 ++--- .../recipes/pegmatite_relief_blank.json | 60 ++--- .../recipes/pegmatite_relief_cross.json | 60 ++--- .../recipes/pegmatite_relief_hammer.json | 60 ++--- .../recipes/pegmatite_relief_hoe.json | 60 ++--- .../recipes/pegmatite_relief_horizontal.json | 60 ++--- .../recipes/pegmatite_relief_i.json | 60 ++--- .../recipes/pegmatite_relief_left.json | 60 ++--- .../recipes/pegmatite_relief_pickaxe.json | 60 ++--- .../recipes/pegmatite_relief_plus.json | 60 ++--- .../recipes/pegmatite_relief_right.json | 60 ++--- .../recipes/pegmatite_relief_sword.json | 60 ++--- .../recipes/pegmatite_relief_vertical.json | 60 ++--- .../advancement/recipes/pegmatite_slab.json | 60 ++--- .../advancement/recipes/pegmatite_smooth.json | 90 ++++--- .../recipes/pegmatite_smooth_brick.json | 60 ++--- .../pegmatite_smooth_brick_furnace.json | 60 ++--- .../recipes/pegmatite_smooth_brick_slab.json | 60 ++--- .../pegmatite_smooth_brick_stairs.json | 60 ++--- .../recipes/pegmatite_smooth_brick_wall.json | 60 ++--- .../recipes/pegmatite_smooth_furnace.json | 60 ++--- .../recipes/pegmatite_smooth_slab.json | 60 ++--- .../recipes/pegmatite_smooth_stairs.json | 60 ++--- .../recipes/pegmatite_smooth_wall.json | 60 ++--- .../advancement/recipes/pegmatite_stairs.json | 60 ++--- .../recipes/pegmatite_to_stone.json | 60 ++--- .../advancement/recipes/pegmatite_wall.json | 60 ++--- .../advancement/recipes/peridotite_brick.json | 60 ++--- .../peridotite_brick_block_polishing.json | 114 +++++---- .../recipes/peridotite_brick_furnace.json | 60 ++--- .../recipes/peridotite_brick_slab.json | 60 ++--- .../peridotite_brick_slab_polishing.json | 114 +++++---- .../peridotite_brick_slab_recombination.json | 60 ++--- .../recipes/peridotite_brick_stairs.json | 60 ++--- .../peridotite_brick_stairs_polishing.json | 114 +++++---- .../recipes/peridotite_brick_wall.json | 60 ++--- .../peridotite_brick_wall_polishing.json | 114 +++++---- .../recipes/peridotite_cobblestone.json | 60 ++--- .../recipes/peridotite_furnace.json | 60 ++--- ...ite_polished_brick_slab_recombination.json | 60 ++--- ...eridotite_polished_slab_recombination.json | 60 ++--- .../peridotite_polished_slabs_to_brick.json | 60 ++--- .../peridotite_polished_stairs_to_brick.json | 60 ++--- .../peridotite_polished_walls_to_brick.json | 60 ++--- .../peridotite_raw_slab_polishing.json | 114 +++++---- .../peridotite_raw_slab_recombination.json | 60 ++--- .../peridotite_raw_slabs_to_brick.json | 60 ++--- .../peridotite_raw_stairs_polishing.json | 114 +++++---- .../peridotite_raw_stairs_to_brick.json | 60 ++--- .../peridotite_raw_wall_polishing.json | 114 +++++---- .../peridotite_raw_walls_to_brick.json | 60 ++--- .../recipes/peridotite_relief_axe.json | 60 ++--- .../recipes/peridotite_relief_blank.json | 60 ++--- .../recipes/peridotite_relief_cross.json | 60 ++--- .../recipes/peridotite_relief_hammer.json | 60 ++--- .../recipes/peridotite_relief_hoe.json | 60 ++--- .../recipes/peridotite_relief_horizontal.json | 60 ++--- .../recipes/peridotite_relief_i.json | 60 ++--- .../recipes/peridotite_relief_left.json | 60 ++--- .../recipes/peridotite_relief_pickaxe.json | 60 ++--- .../recipes/peridotite_relief_plus.json | 60 ++--- .../recipes/peridotite_relief_right.json | 60 ++--- .../recipes/peridotite_relief_sword.json | 60 ++--- .../recipes/peridotite_relief_vertical.json | 60 ++--- .../advancement/recipes/peridotite_slab.json | 60 ++--- .../recipes/peridotite_smooth.json | 90 ++++--- .../recipes/peridotite_smooth_brick.json | 60 ++--- .../peridotite_smooth_brick_furnace.json | 60 ++--- .../recipes/peridotite_smooth_brick_slab.json | 60 ++--- .../peridotite_smooth_brick_stairs.json | 60 ++--- .../recipes/peridotite_smooth_brick_wall.json | 60 ++--- .../recipes/peridotite_smooth_furnace.json | 60 ++--- .../recipes/peridotite_smooth_slab.json | 60 ++--- .../recipes/peridotite_smooth_stairs.json | 60 ++--- .../recipes/peridotite_smooth_wall.json | 60 ++--- .../recipes/peridotite_stairs.json | 60 ++--- .../recipes/peridotite_to_stone.json | 60 ++--- .../advancement/recipes/peridotite_wall.json | 60 ++--- .../recipes/phosphorous_block.json | 72 +++--- .../advancement/recipes/phosphorous_dust.json | 72 +++--- .../advancement/recipes/phyllite_brick.json | 60 ++--- .../phyllite_brick_block_polishing.json | 114 +++++---- .../recipes/phyllite_brick_furnace.json | 60 ++--- .../recipes/phyllite_brick_slab.json | 60 ++--- .../phyllite_brick_slab_polishing.json | 114 +++++---- .../phyllite_brick_slab_recombination.json | 60 ++--- .../recipes/phyllite_brick_stairs.json | 60 ++--- .../phyllite_brick_stairs_polishing.json | 114 +++++---- .../recipes/phyllite_brick_wall.json | 60 ++--- .../phyllite_brick_wall_polishing.json | 114 +++++---- .../recipes/phyllite_cobblestone.json | 60 ++--- .../advancement/recipes/phyllite_furnace.json | 60 ++--- ...ite_polished_brick_slab_recombination.json | 60 ++--- .../phyllite_polished_slab_recombination.json | 60 ++--- .../phyllite_polished_slabs_to_brick.json | 60 ++--- .../phyllite_polished_stairs_to_brick.json | 60 ++--- .../phyllite_polished_walls_to_brick.json | 60 ++--- .../recipes/phyllite_raw_slab_polishing.json | 114 +++++---- .../phyllite_raw_slab_recombination.json | 60 ++--- .../recipes/phyllite_raw_slabs_to_brick.json | 60 ++--- .../phyllite_raw_stairs_polishing.json | 114 +++++---- .../recipes/phyllite_raw_stairs_to_brick.json | 60 ++--- .../recipes/phyllite_raw_wall_polishing.json | 114 +++++---- .../recipes/phyllite_raw_walls_to_brick.json | 60 ++--- .../recipes/phyllite_relief_axe.json | 60 ++--- .../recipes/phyllite_relief_blank.json | 60 ++--- .../recipes/phyllite_relief_cross.json | 60 ++--- .../recipes/phyllite_relief_hammer.json | 60 ++--- .../recipes/phyllite_relief_hoe.json | 60 ++--- .../recipes/phyllite_relief_horizontal.json | 60 ++--- .../recipes/phyllite_relief_i.json | 60 ++--- .../recipes/phyllite_relief_left.json | 60 ++--- .../recipes/phyllite_relief_pickaxe.json | 60 ++--- .../recipes/phyllite_relief_plus.json | 60 ++--- .../recipes/phyllite_relief_right.json | 60 ++--- .../recipes/phyllite_relief_sword.json | 60 ++--- .../recipes/phyllite_relief_vertical.json | 60 ++--- .../advancement/recipes/phyllite_slab.json | 60 ++--- .../advancement/recipes/phyllite_smooth.json | 90 ++++--- .../recipes/phyllite_smooth_brick.json | 60 ++--- .../phyllite_smooth_brick_furnace.json | 60 ++--- .../recipes/phyllite_smooth_brick_slab.json | 60 ++--- .../recipes/phyllite_smooth_brick_stairs.json | 60 ++--- .../recipes/phyllite_smooth_brick_wall.json | 60 ++--- .../recipes/phyllite_smooth_furnace.json | 60 ++--- .../recipes/phyllite_smooth_slab.json | 60 ++--- .../recipes/phyllite_smooth_stairs.json | 60 ++--- .../recipes/phyllite_smooth_wall.json | 60 ++--- .../advancement/recipes/phyllite_stairs.json | 60 ++--- .../recipes/phyllite_to_stone.json | 60 ++--- .../advancement/recipes/phyllite_wall.json | 60 ++--- .../advancement/recipes/quartzite_brick.json | 60 ++--- .../quartzite_brick_block_polishing.json | 114 +++++---- .../recipes/quartzite_brick_furnace.json | 60 ++--- .../recipes/quartzite_brick_slab.json | 60 ++--- .../quartzite_brick_slab_polishing.json | 114 +++++---- .../quartzite_brick_slab_recombination.json | 60 ++--- .../recipes/quartzite_brick_stairs.json | 60 ++--- .../quartzite_brick_stairs_polishing.json | 114 +++++---- .../recipes/quartzite_brick_wall.json | 60 ++--- .../quartzite_brick_wall_polishing.json | 114 +++++---- .../recipes/quartzite_cobblestone.json | 60 ++--- .../recipes/quartzite_furnace.json | 60 ++--- ...ite_polished_brick_slab_recombination.json | 60 ++--- ...quartzite_polished_slab_recombination.json | 60 ++--- .../quartzite_polished_slabs_to_brick.json | 60 ++--- .../quartzite_polished_stairs_to_brick.json | 60 ++--- .../quartzite_polished_walls_to_brick.json | 60 ++--- .../recipes/quartzite_raw_slab_polishing.json | 114 +++++---- .../quartzite_raw_slab_recombination.json | 60 ++--- .../recipes/quartzite_raw_slabs_to_brick.json | 60 ++--- .../quartzite_raw_stairs_polishing.json | 114 +++++---- .../quartzite_raw_stairs_to_brick.json | 60 ++--- .../recipes/quartzite_raw_wall_polishing.json | 114 +++++---- .../recipes/quartzite_raw_walls_to_brick.json | 60 ++--- .../recipes/quartzite_relief_axe.json | 60 ++--- .../recipes/quartzite_relief_blank.json | 60 ++--- .../recipes/quartzite_relief_cross.json | 60 ++--- .../recipes/quartzite_relief_hammer.json | 60 ++--- .../recipes/quartzite_relief_hoe.json | 60 ++--- .../recipes/quartzite_relief_horizontal.json | 60 ++--- .../recipes/quartzite_relief_i.json | 60 ++--- .../recipes/quartzite_relief_left.json | 60 ++--- .../recipes/quartzite_relief_pickaxe.json | 60 ++--- .../recipes/quartzite_relief_plus.json | 60 ++--- .../recipes/quartzite_relief_right.json | 60 ++--- .../recipes/quartzite_relief_sword.json | 60 ++--- .../recipes/quartzite_relief_vertical.json | 60 ++--- .../advancement/recipes/quartzite_slab.json | 60 ++--- .../advancement/recipes/quartzite_smooth.json | 90 ++++--- .../recipes/quartzite_smooth_brick.json | 60 ++--- .../quartzite_smooth_brick_furnace.json | 60 ++--- .../recipes/quartzite_smooth_brick_slab.json | 60 ++--- .../quartzite_smooth_brick_stairs.json | 60 ++--- .../recipes/quartzite_smooth_brick_wall.json | 60 ++--- .../recipes/quartzite_smooth_furnace.json | 60 ++--- .../recipes/quartzite_smooth_slab.json | 60 ++--- .../recipes/quartzite_smooth_stairs.json | 60 ++--- .../recipes/quartzite_smooth_wall.json | 60 ++--- .../advancement/recipes/quartzite_stairs.json | 60 ++--- .../recipes/quartzite_to_stone.json | 60 ++--- .../advancement/recipes/quartzite_wall.json | 60 ++--- .../advancement/recipes/rhyolite_brick.json | 60 ++--- .../rhyolite_brick_block_polishing.json | 114 +++++---- .../recipes/rhyolite_brick_furnace.json | 60 ++--- .../recipes/rhyolite_brick_slab.json | 60 ++--- .../rhyolite_brick_slab_polishing.json | 114 +++++---- .../rhyolite_brick_slab_recombination.json | 60 ++--- .../recipes/rhyolite_brick_stairs.json | 60 ++--- .../rhyolite_brick_stairs_polishing.json | 114 +++++---- .../recipes/rhyolite_brick_wall.json | 60 ++--- .../rhyolite_brick_wall_polishing.json | 114 +++++---- .../recipes/rhyolite_cobblestone.json | 60 ++--- .../advancement/recipes/rhyolite_furnace.json | 60 ++--- ...ite_polished_brick_slab_recombination.json | 60 ++--- .../rhyolite_polished_slab_recombination.json | 60 ++--- .../rhyolite_polished_slabs_to_brick.json | 60 ++--- .../rhyolite_polished_stairs_to_brick.json | 60 ++--- .../rhyolite_polished_walls_to_brick.json | 60 ++--- .../recipes/rhyolite_raw_slab_polishing.json | 114 +++++---- .../rhyolite_raw_slab_recombination.json | 60 ++--- .../recipes/rhyolite_raw_slabs_to_brick.json | 60 ++--- .../rhyolite_raw_stairs_polishing.json | 114 +++++---- .../recipes/rhyolite_raw_stairs_to_brick.json | 60 ++--- .../recipes/rhyolite_raw_wall_polishing.json | 114 +++++---- .../recipes/rhyolite_raw_walls_to_brick.json | 60 ++--- .../recipes/rhyolite_relief_axe.json | 60 ++--- .../recipes/rhyolite_relief_blank.json | 60 ++--- .../recipes/rhyolite_relief_cross.json | 60 ++--- .../recipes/rhyolite_relief_hammer.json | 60 ++--- .../recipes/rhyolite_relief_hoe.json | 60 ++--- .../recipes/rhyolite_relief_horizontal.json | 60 ++--- .../recipes/rhyolite_relief_i.json | 60 ++--- .../recipes/rhyolite_relief_left.json | 60 ++--- .../recipes/rhyolite_relief_pickaxe.json | 60 ++--- .../recipes/rhyolite_relief_plus.json | 60 ++--- .../recipes/rhyolite_relief_right.json | 60 ++--- .../recipes/rhyolite_relief_sword.json | 60 ++--- .../recipes/rhyolite_relief_vertical.json | 60 ++--- .../advancement/recipes/rhyolite_slab.json | 60 ++--- .../advancement/recipes/rhyolite_smooth.json | 90 ++++--- .../recipes/rhyolite_smooth_brick.json | 60 ++--- .../rhyolite_smooth_brick_furnace.json | 60 ++--- .../recipes/rhyolite_smooth_brick_slab.json | 60 ++--- .../recipes/rhyolite_smooth_brick_stairs.json | 60 ++--- .../recipes/rhyolite_smooth_brick_wall.json | 60 ++--- .../recipes/rhyolite_smooth_furnace.json | 60 ++--- .../recipes/rhyolite_smooth_slab.json | 60 ++--- .../recipes/rhyolite_smooth_stairs.json | 60 ++--- .../recipes/rhyolite_smooth_wall.json | 60 ++--- .../advancement/recipes/rhyolite_stairs.json | 60 ++--- .../recipes/rhyolite_to_stone.json | 60 ++--- .../advancement/recipes/rhyolite_wall.json | 60 ++--- .../advancement/recipes/rock_salt.json | 60 ++--- .../advancement/recipes/rock_salt_brick.json | 60 ++--- .../rock_salt_brick_block_polishing.json | 114 +++++---- .../recipes/rock_salt_brick_furnace.json | 60 ++--- .../recipes/rock_salt_brick_slab.json | 60 ++--- .../rock_salt_brick_slab_polishing.json | 114 +++++---- .../rock_salt_brick_slab_recombination.json | 60 ++--- .../recipes/rock_salt_brick_stairs.json | 60 ++--- .../rock_salt_brick_stairs_polishing.json | 114 +++++---- .../recipes/rock_salt_brick_wall.json | 60 ++--- .../rock_salt_brick_wall_polishing.json | 114 +++++---- .../recipes/rock_salt_cobblestone.json | 60 ++--- .../advancement/recipes/rock_salt_dust.json | 60 ++--- .../recipes/rock_salt_furnace.json | 60 ++--- ...alt_polished_brick_slab_recombination.json | 60 ++--- ...rock_salt_polished_slab_recombination.json | 60 ++--- .../rock_salt_polished_slabs_to_brick.json | 60 ++--- .../rock_salt_polished_stairs_to_brick.json | 60 ++--- .../rock_salt_polished_walls_to_brick.json | 60 ++--- .../recipes/rock_salt_raw_slab_polishing.json | 114 +++++---- .../rock_salt_raw_slab_recombination.json | 60 ++--- .../recipes/rock_salt_raw_slabs_to_brick.json | 60 ++--- .../rock_salt_raw_stairs_polishing.json | 114 +++++---- .../rock_salt_raw_stairs_to_brick.json | 60 ++--- .../recipes/rock_salt_raw_wall_polishing.json | 114 +++++---- .../recipes/rock_salt_raw_walls_to_brick.json | 60 ++--- .../recipes/rock_salt_relief_axe.json | 60 ++--- .../recipes/rock_salt_relief_blank.json | 60 ++--- .../recipes/rock_salt_relief_cross.json | 60 ++--- .../recipes/rock_salt_relief_hammer.json | 60 ++--- .../recipes/rock_salt_relief_hoe.json | 60 ++--- .../recipes/rock_salt_relief_horizontal.json | 60 ++--- .../recipes/rock_salt_relief_i.json | 60 ++--- .../recipes/rock_salt_relief_left.json | 60 ++--- .../recipes/rock_salt_relief_pickaxe.json | 60 ++--- .../recipes/rock_salt_relief_plus.json | 60 ++--- .../recipes/rock_salt_relief_right.json | 60 ++--- .../recipes/rock_salt_relief_sword.json | 60 ++--- .../recipes/rock_salt_relief_vertical.json | 60 ++--- .../advancement/recipes/rock_salt_slab.json | 60 ++--- .../advancement/recipes/rock_salt_smooth.json | 90 ++++--- .../recipes/rock_salt_smooth_brick.json | 60 ++--- .../rock_salt_smooth_brick_furnace.json | 60 ++--- .../recipes/rock_salt_smooth_brick_slab.json | 60 ++--- .../rock_salt_smooth_brick_stairs.json | 60 ++--- .../recipes/rock_salt_smooth_brick_wall.json | 60 ++--- .../recipes/rock_salt_smooth_furnace.json | 60 ++--- .../recipes/rock_salt_smooth_slab.json | 60 ++--- .../recipes/rock_salt_smooth_stairs.json | 60 ++--- .../recipes/rock_salt_smooth_wall.json | 60 ++--- .../advancement/recipes/rock_salt_stairs.json | 60 ++--- .../recipes/rock_salt_to_stone.json | 60 ++--- .../advancement/recipes/rock_salt_wall.json | 60 ++--- .../advancement/recipes/rocksaltlamp.json | 72 +++--- .../recipes/rocksaltstreetlamp.json | 72 +++--- .../advancement/recipes/schist_brick.json | 60 ++--- .../recipes/schist_brick_block_polishing.json | 114 +++++---- .../recipes/schist_brick_furnace.json | 60 ++--- .../recipes/schist_brick_slab.json | 60 ++--- .../recipes/schist_brick_slab_polishing.json | 114 +++++---- .../schist_brick_slab_recombination.json | 60 ++--- .../recipes/schist_brick_stairs.json | 60 ++--- .../schist_brick_stairs_polishing.json | 114 +++++---- .../recipes/schist_brick_wall.json | 60 ++--- .../recipes/schist_brick_wall_polishing.json | 114 +++++---- .../recipes/schist_cobblestone.json | 60 ++--- .../advancement/recipes/schist_furnace.json | 60 ++--- ...ist_polished_brick_slab_recombination.json | 60 ++--- .../schist_polished_slab_recombination.json | 60 ++--- .../schist_polished_slabs_to_brick.json | 60 ++--- .../schist_polished_stairs_to_brick.json | 60 ++--- .../schist_polished_walls_to_brick.json | 60 ++--- .../recipes/schist_raw_slab_polishing.json | 114 +++++---- .../schist_raw_slab_recombination.json | 60 ++--- .../recipes/schist_raw_slabs_to_brick.json | 60 ++--- .../recipes/schist_raw_stairs_polishing.json | 114 +++++---- .../recipes/schist_raw_stairs_to_brick.json | 60 ++--- .../recipes/schist_raw_wall_polishing.json | 114 +++++---- .../recipes/schist_raw_walls_to_brick.json | 60 ++--- .../recipes/schist_relief_axe.json | 60 ++--- .../recipes/schist_relief_blank.json | 60 ++--- .../recipes/schist_relief_cross.json | 60 ++--- .../recipes/schist_relief_hammer.json | 60 ++--- .../recipes/schist_relief_hoe.json | 60 ++--- .../recipes/schist_relief_horizontal.json | 60 ++--- .../advancement/recipes/schist_relief_i.json | 60 ++--- .../recipes/schist_relief_left.json | 60 ++--- .../recipes/schist_relief_pickaxe.json | 60 ++--- .../recipes/schist_relief_plus.json | 60 ++--- .../recipes/schist_relief_right.json | 60 ++--- .../recipes/schist_relief_sword.json | 60 ++--- .../recipes/schist_relief_vertical.json | 60 ++--- .../advancement/recipes/schist_slab.json | 60 ++--- .../advancement/recipes/schist_smooth.json | 90 ++++--- .../recipes/schist_smooth_brick.json | 60 ++--- .../recipes/schist_smooth_brick_furnace.json | 60 ++--- .../recipes/schist_smooth_brick_slab.json | 60 ++--- .../recipes/schist_smooth_brick_stairs.json | 60 ++--- .../recipes/schist_smooth_brick_wall.json | 60 ++--- .../recipes/schist_smooth_furnace.json | 60 ++--- .../recipes/schist_smooth_slab.json | 60 ++--- .../recipes/schist_smooth_stairs.json | 60 ++--- .../recipes/schist_smooth_wall.json | 60 ++--- .../advancement/recipes/schist_stairs.json | 60 ++--- .../advancement/recipes/schist_to_stone.json | 60 ++--- .../advancement/recipes/schist_wall.json | 60 ++--- .../advancement/recipes/scoria_brick.json | 60 ++--- .../recipes/scoria_brick_block_polishing.json | 114 +++++---- .../recipes/scoria_brick_furnace.json | 60 ++--- .../recipes/scoria_brick_slab.json | 60 ++--- .../recipes/scoria_brick_slab_polishing.json | 114 +++++---- .../scoria_brick_slab_recombination.json | 60 ++--- .../recipes/scoria_brick_stairs.json | 60 ++--- .../scoria_brick_stairs_polishing.json | 114 +++++---- .../recipes/scoria_brick_wall.json | 60 ++--- .../recipes/scoria_brick_wall_polishing.json | 114 +++++---- .../recipes/scoria_cobblestone.json | 60 ++--- .../advancement/recipes/scoria_furnace.json | 60 ++--- ...ria_polished_brick_slab_recombination.json | 60 ++--- .../scoria_polished_slab_recombination.json | 60 ++--- .../scoria_polished_slabs_to_brick.json | 60 ++--- .../scoria_polished_stairs_to_brick.json | 60 ++--- .../scoria_polished_walls_to_brick.json | 60 ++--- .../recipes/scoria_raw_slab_polishing.json | 114 +++++---- .../scoria_raw_slab_recombination.json | 60 ++--- .../recipes/scoria_raw_slabs_to_brick.json | 60 ++--- .../recipes/scoria_raw_stairs_polishing.json | 114 +++++---- .../recipes/scoria_raw_stairs_to_brick.json | 60 ++--- .../recipes/scoria_raw_wall_polishing.json | 114 +++++---- .../recipes/scoria_raw_walls_to_brick.json | 60 ++--- .../recipes/scoria_relief_axe.json | 60 ++--- .../recipes/scoria_relief_blank.json | 60 ++--- .../recipes/scoria_relief_cross.json | 60 ++--- .../recipes/scoria_relief_hammer.json | 60 ++--- .../recipes/scoria_relief_hoe.json | 60 ++--- .../recipes/scoria_relief_horizontal.json | 60 ++--- .../advancement/recipes/scoria_relief_i.json | 60 ++--- .../recipes/scoria_relief_left.json | 60 ++--- .../recipes/scoria_relief_pickaxe.json | 60 ++--- .../recipes/scoria_relief_plus.json | 60 ++--- .../recipes/scoria_relief_right.json | 60 ++--- .../recipes/scoria_relief_sword.json | 60 ++--- .../recipes/scoria_relief_vertical.json | 60 ++--- .../advancement/recipes/scoria_slab.json | 60 ++--- .../advancement/recipes/scoria_smooth.json | 90 ++++--- .../recipes/scoria_smooth_brick.json | 60 ++--- .../recipes/scoria_smooth_brick_furnace.json | 60 ++--- .../recipes/scoria_smooth_brick_slab.json | 60 ++--- .../recipes/scoria_smooth_brick_stairs.json | 60 ++--- .../recipes/scoria_smooth_brick_wall.json | 60 ++--- .../recipes/scoria_smooth_furnace.json | 60 ++--- .../recipes/scoria_smooth_slab.json | 60 ++--- .../recipes/scoria_smooth_stairs.json | 60 ++--- .../recipes/scoria_smooth_wall.json | 60 ++--- .../advancement/recipes/scoria_stairs.json | 60 ++--- .../advancement/recipes/scoria_to_stone.json | 60 ++--- .../advancement/recipes/scoria_wall.json | 60 ++--- .../advancement/recipes/shale_brick.json | 60 ++--- .../recipes/shale_brick_block_polishing.json | 114 +++++---- .../recipes/shale_brick_furnace.json | 60 ++--- .../advancement/recipes/shale_brick_slab.json | 60 ++--- .../recipes/shale_brick_slab_polishing.json | 114 +++++---- .../shale_brick_slab_recombination.json | 60 ++--- .../recipes/shale_brick_stairs.json | 60 ++--- .../recipes/shale_brick_stairs_polishing.json | 114 +++++---- .../advancement/recipes/shale_brick_wall.json | 60 ++--- .../recipes/shale_brick_wall_polishing.json | 114 +++++---- .../recipes/shale_cobblestone.json | 60 ++--- .../advancement/recipes/shale_furnace.json | 60 ++--- ...ale_polished_brick_slab_recombination.json | 60 ++--- .../shale_polished_slab_recombination.json | 60 ++--- .../shale_polished_slabs_to_brick.json | 60 ++--- .../shale_polished_stairs_to_brick.json | 60 ++--- .../shale_polished_walls_to_brick.json | 60 ++--- .../recipes/shale_raw_slab_polishing.json | 114 +++++---- .../recipes/shale_raw_slab_recombination.json | 60 ++--- .../recipes/shale_raw_slabs_to_brick.json | 60 ++--- .../recipes/shale_raw_stairs_polishing.json | 114 +++++---- .../recipes/shale_raw_stairs_to_brick.json | 60 ++--- .../recipes/shale_raw_wall_polishing.json | 114 +++++---- .../recipes/shale_raw_walls_to_brick.json | 60 ++--- .../advancement/recipes/shale_relief_axe.json | 60 ++--- .../recipes/shale_relief_blank.json | 60 ++--- .../recipes/shale_relief_cross.json | 60 ++--- .../recipes/shale_relief_hammer.json | 60 ++--- .../advancement/recipes/shale_relief_hoe.json | 60 ++--- .../recipes/shale_relief_horizontal.json | 60 ++--- .../advancement/recipes/shale_relief_i.json | 60 ++--- .../recipes/shale_relief_left.json | 60 ++--- .../recipes/shale_relief_pickaxe.json | 60 ++--- .../recipes/shale_relief_plus.json | 60 ++--- .../recipes/shale_relief_right.json | 60 ++--- .../recipes/shale_relief_sword.json | 60 ++--- .../recipes/shale_relief_vertical.json | 60 ++--- .../advancement/recipes/shale_slab.json | 60 ++--- .../advancement/recipes/shale_smooth.json | 90 ++++--- .../recipes/shale_smooth_brick.json | 60 ++--- .../recipes/shale_smooth_brick_furnace.json | 60 ++--- .../recipes/shale_smooth_brick_slab.json | 60 ++--- .../recipes/shale_smooth_brick_stairs.json | 60 ++--- .../recipes/shale_smooth_brick_wall.json | 60 ++--- .../recipes/shale_smooth_furnace.json | 60 ++--- .../recipes/shale_smooth_slab.json | 60 ++--- .../recipes/shale_smooth_stairs.json | 60 ++--- .../recipes/shale_smooth_wall.json | 60 ++--- .../advancement/recipes/shale_stairs.json | 60 ++--- .../advancement/recipes/shale_to_stone.json | 60 ++--- .../advancement/recipes/shale_wall.json | 60 ++--- .../advancement/recipes/siltstone_brick.json | 60 ++--- .../siltstone_brick_block_polishing.json | 114 +++++---- .../recipes/siltstone_brick_furnace.json | 60 ++--- .../recipes/siltstone_brick_slab.json | 60 ++--- .../siltstone_brick_slab_polishing.json | 114 +++++---- .../siltstone_brick_slab_recombination.json | 60 ++--- .../recipes/siltstone_brick_stairs.json | 60 ++--- .../siltstone_brick_stairs_polishing.json | 114 +++++---- .../recipes/siltstone_brick_wall.json | 60 ++--- .../siltstone_brick_wall_polishing.json | 114 +++++---- .../recipes/siltstone_cobblestone.json | 60 ++--- .../recipes/siltstone_furnace.json | 60 ++--- ...one_polished_brick_slab_recombination.json | 60 ++--- ...siltstone_polished_slab_recombination.json | 60 ++--- .../siltstone_polished_slabs_to_brick.json | 60 ++--- .../siltstone_polished_stairs_to_brick.json | 60 ++--- .../siltstone_polished_walls_to_brick.json | 60 ++--- .../recipes/siltstone_raw_slab_polishing.json | 114 +++++---- .../siltstone_raw_slab_recombination.json | 60 ++--- .../recipes/siltstone_raw_slabs_to_brick.json | 60 ++--- .../siltstone_raw_stairs_polishing.json | 114 +++++---- .../siltstone_raw_stairs_to_brick.json | 60 ++--- .../recipes/siltstone_raw_wall_polishing.json | 114 +++++---- .../recipes/siltstone_raw_walls_to_brick.json | 60 ++--- .../recipes/siltstone_relief_axe.json | 60 ++--- .../recipes/siltstone_relief_blank.json | 60 ++--- .../recipes/siltstone_relief_cross.json | 60 ++--- .../recipes/siltstone_relief_hammer.json | 60 ++--- .../recipes/siltstone_relief_hoe.json | 60 ++--- .../recipes/siltstone_relief_horizontal.json | 60 ++--- .../recipes/siltstone_relief_i.json | 60 ++--- .../recipes/siltstone_relief_left.json | 60 ++--- .../recipes/siltstone_relief_pickaxe.json | 60 ++--- .../recipes/siltstone_relief_plus.json | 60 ++--- .../recipes/siltstone_relief_right.json | 60 ++--- .../recipes/siltstone_relief_sword.json | 60 ++--- .../recipes/siltstone_relief_vertical.json | 60 ++--- .../advancement/recipes/siltstone_slab.json | 60 ++--- .../advancement/recipes/siltstone_smooth.json | 90 ++++--- .../recipes/siltstone_smooth_brick.json | 60 ++--- .../siltstone_smooth_brick_furnace.json | 60 ++--- .../recipes/siltstone_smooth_brick_slab.json | 60 ++--- .../siltstone_smooth_brick_stairs.json | 60 ++--- .../recipes/siltstone_smooth_brick_wall.json | 60 ++--- .../recipes/siltstone_smooth_furnace.json | 60 ++--- .../recipes/siltstone_smooth_slab.json | 60 ++--- .../recipes/siltstone_smooth_stairs.json | 60 ++--- .../recipes/siltstone_smooth_wall.json | 60 ++--- .../advancement/recipes/siltstone_stairs.json | 60 ++--- .../recipes/siltstone_to_stone.json | 60 ++--- .../advancement/recipes/siltstone_wall.json | 60 ++--- .../advancement/recipes/slate_brick.json | 60 ++--- .../recipes/slate_brick_block_polishing.json | 114 +++++---- .../recipes/slate_brick_furnace.json | 60 ++--- .../advancement/recipes/slate_brick_slab.json | 60 ++--- .../recipes/slate_brick_slab_polishing.json | 114 +++++---- .../slate_brick_slab_recombination.json | 60 ++--- .../recipes/slate_brick_stairs.json | 60 ++--- .../recipes/slate_brick_stairs_polishing.json | 114 +++++---- .../advancement/recipes/slate_brick_wall.json | 60 ++--- .../recipes/slate_brick_wall_polishing.json | 114 +++++---- .../recipes/slate_cobblestone.json | 60 ++--- .../advancement/recipes/slate_furnace.json | 60 ++--- ...ate_polished_brick_slab_recombination.json | 60 ++--- .../slate_polished_slab_recombination.json | 60 ++--- .../slate_polished_slabs_to_brick.json | 60 ++--- .../slate_polished_stairs_to_brick.json | 60 ++--- .../slate_polished_walls_to_brick.json | 60 ++--- .../recipes/slate_raw_slab_polishing.json | 114 +++++---- .../recipes/slate_raw_slab_recombination.json | 60 ++--- .../recipes/slate_raw_slabs_to_brick.json | 60 ++--- .../recipes/slate_raw_stairs_polishing.json | 114 +++++---- .../recipes/slate_raw_stairs_to_brick.json | 60 ++--- .../recipes/slate_raw_wall_polishing.json | 114 +++++---- .../recipes/slate_raw_walls_to_brick.json | 60 ++--- .../advancement/recipes/slate_relief_axe.json | 60 ++--- .../recipes/slate_relief_blank.json | 60 ++--- .../recipes/slate_relief_cross.json | 60 ++--- .../recipes/slate_relief_hammer.json | 60 ++--- .../advancement/recipes/slate_relief_hoe.json | 60 ++--- .../recipes/slate_relief_horizontal.json | 60 ++--- .../advancement/recipes/slate_relief_i.json | 60 ++--- .../recipes/slate_relief_left.json | 60 ++--- .../recipes/slate_relief_pickaxe.json | 60 ++--- .../recipes/slate_relief_plus.json | 60 ++--- .../recipes/slate_relief_right.json | 60 ++--- .../recipes/slate_relief_sword.json | 60 ++--- .../recipes/slate_relief_vertical.json | 60 ++--- .../advancement/recipes/slate_slab.json | 60 ++--- .../advancement/recipes/slate_smooth.json | 90 ++++--- .../recipes/slate_smooth_brick.json | 60 ++--- .../recipes/slate_smooth_brick_furnace.json | 60 ++--- .../recipes/slate_smooth_brick_slab.json | 60 ++--- .../recipes/slate_smooth_brick_stairs.json | 60 ++--- .../recipes/slate_smooth_brick_wall.json | 60 ++--- .../recipes/slate_smooth_furnace.json | 60 ++--- .../recipes/slate_smooth_slab.json | 60 ++--- .../recipes/slate_smooth_stairs.json | 60 ++--- .../recipes/slate_smooth_wall.json | 60 ++--- .../advancement/recipes/slate_stairs.json | 60 ++--- .../advancement/recipes/slate_to_stone.json | 60 ++--- .../advancement/recipes/slate_wall.json | 60 ++--- .../advancement/recipes/sulfur_block.json | 72 +++--- .../advancement/recipes/sulfur_dust.json | 72 +++--- .../advancement/recipes/tuff_brick.json | 60 ++--- .../recipes/tuff_brick_block_polishing.json | 114 +++++---- .../recipes/tuff_brick_furnace.json | 60 ++--- .../advancement/recipes/tuff_brick_slab.json | 60 ++--- .../recipes/tuff_brick_slab_from_vanilla.json | 60 ++--- .../recipes/tuff_brick_slab_polishing.json | 114 +++++---- .../tuff_brick_slab_recombination.json | 60 ++--- .../recipes/tuff_brick_slab_to_vanilla.json | 60 ++--- .../recipes/tuff_brick_stairs.json | 60 ++--- .../recipes/tuff_brick_stairs_polishing.json | 114 +++++---- .../advancement/recipes/tuff_brick_wall.json | 60 ++--- .../recipes/tuff_brick_wall_polishing.json | 114 +++++---- .../advancement/recipes/tuff_cobblestone.json | 60 ++--- .../advancement/recipes/tuff_furnace.json | 60 ++--- ...uff_polished_brick_slab_recombination.json | 60 ++--- .../tuff_polished_slab_recombination.json | 60 ++--- .../recipes/tuff_polished_slabs_to_brick.json | 60 ++--- .../tuff_polished_stairs_to_brick.json | 60 ++--- .../recipes/tuff_polished_walls_to_brick.json | 60 ++--- .../recipes/tuff_raw_slab_polishing.json | 114 +++++---- .../recipes/tuff_raw_slab_recombination.json | 60 ++--- .../recipes/tuff_raw_slabs_to_brick.json | 60 ++--- .../recipes/tuff_raw_stairs_polishing.json | 114 +++++---- .../recipes/tuff_raw_stairs_to_brick.json | 60 ++--- .../recipes/tuff_raw_wall_polishing.json | 114 +++++---- .../recipes/tuff_raw_walls_to_brick.json | 60 ++--- .../advancement/recipes/tuff_relief_axe.json | 60 ++--- .../recipes/tuff_relief_blank.json | 60 ++--- .../recipes/tuff_relief_cross.json | 60 ++--- .../recipes/tuff_relief_hammer.json | 60 ++--- .../advancement/recipes/tuff_relief_hoe.json | 60 ++--- .../recipes/tuff_relief_horizontal.json | 60 ++--- .../advancement/recipes/tuff_relief_i.json | 60 ++--- .../advancement/recipes/tuff_relief_left.json | 60 ++--- .../recipes/tuff_relief_pickaxe.json | 60 ++--- .../advancement/recipes/tuff_relief_plus.json | 60 ++--- .../recipes/tuff_relief_right.json | 60 ++--- .../recipes/tuff_relief_sword.json | 60 ++--- .../recipes/tuff_relief_vertical.json | 60 ++--- .../advancement/recipes/tuff_slab.json | 60 ++--- .../recipes/tuff_slab_from_vanilla.json | 60 ++--- .../recipes/tuff_slab_to_vanilla.json | 60 ++--- .../advancement/recipes/tuff_smooth.json | 90 ++++--- .../recipes/tuff_smooth_brick.json | 60 ++--- .../recipes/tuff_smooth_brick_furnace.json | 60 ++--- .../recipes/tuff_smooth_brick_slab.json | 60 ++--- .../recipes/tuff_smooth_brick_stairs.json | 60 ++--- .../recipes/tuff_smooth_brick_wall.json | 60 ++--- .../recipes/tuff_smooth_furnace.json | 60 ++--- .../advancement/recipes/tuff_smooth_slab.json | 60 ++--- .../tuff_smooth_slab_from_vanilla.json | 60 ++--- .../recipes/tuff_smooth_slab_to_vanilla.json | 60 ++--- .../recipes/tuff_smooth_stairs.json | 60 ++--- .../advancement/recipes/tuff_smooth_wall.json | 60 ++--- .../advancement/recipes/tuff_stairs.json | 60 ++--- .../advancement/recipes/tuff_to_stone.json | 60 ++--- .../advancement/recipes/tuff_wall.json | 60 ++--- .../data/mineralogy/orespawn/provider.json | 27 ++- .../mineralogy/recipe/amphibolite_brick.json | 30 ++- .../amphibolite_brick_block_polishing.json | 24 +- .../recipe/amphibolite_brick_furnace.json | 36 ++- .../recipe/amphibolite_brick_slab.json | 28 ++- .../amphibolite_brick_slab_polishing.json | 24 +- .../amphibolite_brick_slab_recombination.json | 24 +- .../recipe/amphibolite_brick_stairs.json | 32 ++- .../amphibolite_brick_stairs_polishing.json | 24 +- .../recipe/amphibolite_brick_wall.json | 30 ++- .../amphibolite_brick_wall_polishing.json | 24 +- .../recipe/amphibolite_cobblestone.json | 32 +-- .../recipe/amphibolite_furnace.json | 36 ++- ...ite_polished_brick_slab_recombination.json | 24 +- ...phibolite_polished_slab_recombination.json | 24 +- .../amphibolite_polished_slabs_to_brick.json | 30 ++- .../amphibolite_polished_stairs_to_brick.json | 30 ++- .../amphibolite_polished_walls_to_brick.json | 30 ++- .../amphibolite_raw_slab_polishing.json | 24 +- .../amphibolite_raw_slab_recombination.json | 24 +- .../amphibolite_raw_slabs_to_brick.json | 30 ++- .../amphibolite_raw_stairs_polishing.json | 24 +- .../amphibolite_raw_stairs_to_brick.json | 30 ++- .../amphibolite_raw_wall_polishing.json | 24 +- .../amphibolite_raw_walls_to_brick.json | 30 ++- .../recipe/amphibolite_relief_axe.json | 52 ++--- .../recipe/amphibolite_relief_blank.json | 32 ++- .../recipe/amphibolite_relief_cross.json | 32 ++- .../recipe/amphibolite_relief_hammer.json | 40 ++-- .../recipe/amphibolite_relief_hoe.json | 52 ++--- .../recipe/amphibolite_relief_horizontal.json | 28 ++- .../recipe/amphibolite_relief_i.json | 32 ++- .../recipe/amphibolite_relief_left.json | 32 ++- .../recipe/amphibolite_relief_pickaxe.json | 52 ++--- .../recipe/amphibolite_relief_plus.json | 32 ++- .../recipe/amphibolite_relief_right.json | 24 +- .../recipe/amphibolite_relief_sword.json | 52 ++--- .../recipe/amphibolite_relief_vertical.json | 32 ++- .../mineralogy/recipe/amphibolite_slab.json | 28 ++- .../mineralogy/recipe/amphibolite_smooth.json | 24 +- .../recipe/amphibolite_smooth_brick.json | 30 ++- .../amphibolite_smooth_brick_furnace.json | 36 ++- .../recipe/amphibolite_smooth_brick_slab.json | 28 ++- .../amphibolite_smooth_brick_stairs.json | 32 ++- .../recipe/amphibolite_smooth_brick_wall.json | 30 ++- .../recipe/amphibolite_smooth_furnace.json | 36 ++- .../recipe/amphibolite_smooth_slab.json | 28 ++- .../recipe/amphibolite_smooth_stairs.json | 32 ++- .../recipe/amphibolite_smooth_wall.json | 30 ++- .../mineralogy/recipe/amphibolite_stairs.json | 32 ++- .../recipe/amphibolite_to_stone.json | 18 +- .../mineralogy/recipe/amphibolite_wall.json | 30 ++- .../mineralogy/recipe/andesite_brick.json | 30 ++- .../andesite_brick_block_polishing.json | 24 +- .../recipe/andesite_brick_furnace.json | 36 ++- .../recipe/andesite_brick_slab.json | 28 ++- .../recipe/andesite_brick_slab_polishing.json | 24 +- .../andesite_brick_slab_recombination.json | 24 +- .../recipe/andesite_brick_stairs.json | 32 ++- .../andesite_brick_stairs_polishing.json | 24 +- .../recipe/andesite_brick_wall.json | 30 ++- .../recipe/andesite_brick_wall_polishing.json | 24 +- .../recipe/andesite_cobblestone.json | 32 +-- .../mineralogy/recipe/andesite_furnace.json | 36 ++- ...ite_polished_brick_slab_recombination.json | 24 +- .../andesite_polished_slab_recombination.json | 24 +- .../andesite_polished_slabs_to_brick.json | 30 ++- .../andesite_polished_stairs_to_brick.json | 30 ++- .../andesite_polished_walls_to_brick.json | 30 ++- .../recipe/andesite_raw_slab_polishing.json | 24 +- .../andesite_raw_slab_recombination.json | 24 +- .../recipe/andesite_raw_slabs_to_brick.json | 30 ++- .../recipe/andesite_raw_stairs_polishing.json | 24 +- .../recipe/andesite_raw_stairs_to_brick.json | 30 ++- .../recipe/andesite_raw_wall_polishing.json | 24 +- .../recipe/andesite_raw_walls_to_brick.json | 30 ++- .../recipe/andesite_relief_axe.json | 52 ++--- .../recipe/andesite_relief_blank.json | 32 ++- .../recipe/andesite_relief_cross.json | 32 ++- .../recipe/andesite_relief_hammer.json | 40 ++-- .../recipe/andesite_relief_hoe.json | 52 ++--- .../recipe/andesite_relief_horizontal.json | 28 ++- .../mineralogy/recipe/andesite_relief_i.json | 32 ++- .../recipe/andesite_relief_left.json | 32 ++- .../recipe/andesite_relief_pickaxe.json | 52 ++--- .../recipe/andesite_relief_plus.json | 32 ++- .../recipe/andesite_relief_right.json | 24 +- .../recipe/andesite_relief_sword.json | 52 ++--- .../recipe/andesite_relief_vertical.json | 32 ++- .../data/mineralogy/recipe/andesite_slab.json | 28 ++- .../recipe/andesite_slab_from_vanilla.json | 20 +- .../recipe/andesite_slab_to_vanilla.json | 20 +- .../mineralogy/recipe/andesite_smooth.json | 24 +- .../recipe/andesite_smooth_brick.json | 30 ++- .../recipe/andesite_smooth_brick_furnace.json | 36 ++- .../recipe/andesite_smooth_brick_slab.json | 28 ++- .../recipe/andesite_smooth_brick_stairs.json | 32 ++- .../recipe/andesite_smooth_brick_wall.json | 30 ++- .../recipe/andesite_smooth_furnace.json | 36 ++- .../recipe/andesite_smooth_slab.json | 28 ++- .../andesite_smooth_slab_from_vanilla.json | 20 +- .../andesite_smooth_slab_to_vanilla.json | 20 +- .../recipe/andesite_smooth_stairs.json | 32 ++- .../recipe/andesite_smooth_wall.json | 30 ++- .../mineralogy/recipe/andesite_stairs.json | 32 ++- .../mineralogy/recipe/andesite_to_stone.json | 18 +- .../data/mineralogy/recipe/andesite_wall.json | 30 ++- .../data/mineralogy/recipe/basalt_brick.json | 30 ++- .../recipe/basalt_brick_block_polishing.json | 24 +- .../recipe/basalt_brick_furnace.json | 36 ++- .../mineralogy/recipe/basalt_brick_slab.json | 28 ++- .../recipe/basalt_brick_slab_polishing.json | 24 +- .../basalt_brick_slab_recombination.json | 24 +- .../recipe/basalt_brick_stairs.json | 32 ++- .../recipe/basalt_brick_stairs_polishing.json | 24 +- .../mineralogy/recipe/basalt_brick_wall.json | 30 ++- .../recipe/basalt_brick_wall_polishing.json | 24 +- .../mineralogy/recipe/basalt_cobblestone.json | 32 +-- .../mineralogy/recipe/basalt_furnace.json | 36 ++- ...alt_polished_brick_slab_recombination.json | 24 +- .../basalt_polished_slab_recombination.json | 24 +- .../basalt_polished_slabs_to_brick.json | 30 ++- .../basalt_polished_stairs_to_brick.json | 30 ++- .../basalt_polished_walls_to_brick.json | 30 ++- .../recipe/basalt_raw_slab_polishing.json | 24 +- .../recipe/basalt_raw_slab_recombination.json | 24 +- .../recipe/basalt_raw_slabs_to_brick.json | 30 ++- .../recipe/basalt_raw_stairs_polishing.json | 24 +- .../recipe/basalt_raw_stairs_to_brick.json | 30 ++- .../recipe/basalt_raw_wall_polishing.json | 24 +- .../recipe/basalt_raw_walls_to_brick.json | 30 ++- .../mineralogy/recipe/basalt_relief_axe.json | 52 ++--- .../recipe/basalt_relief_blank.json | 32 ++- .../recipe/basalt_relief_cross.json | 32 ++- .../recipe/basalt_relief_hammer.json | 40 ++-- .../mineralogy/recipe/basalt_relief_hoe.json | 52 ++--- .../recipe/basalt_relief_horizontal.json | 28 ++- .../mineralogy/recipe/basalt_relief_i.json | 32 ++- .../mineralogy/recipe/basalt_relief_left.json | 32 ++- .../recipe/basalt_relief_pickaxe.json | 52 ++--- .../mineralogy/recipe/basalt_relief_plus.json | 32 ++- .../recipe/basalt_relief_right.json | 24 +- .../recipe/basalt_relief_sword.json | 52 ++--- .../recipe/basalt_relief_vertical.json | 32 ++- .../data/mineralogy/recipe/basalt_slab.json | 28 ++- .../data/mineralogy/recipe/basalt_smooth.json | 24 +- .../recipe/basalt_smooth_brick.json | 30 ++- .../recipe/basalt_smooth_brick_furnace.json | 36 ++- .../recipe/basalt_smooth_brick_slab.json | 28 ++- .../recipe/basalt_smooth_brick_stairs.json | 32 ++- .../recipe/basalt_smooth_brick_wall.json | 30 ++- .../recipe/basalt_smooth_furnace.json | 36 ++- .../mineralogy/recipe/basalt_smooth_slab.json | 28 ++- .../recipe/basalt_smooth_stairs.json | 32 ++- .../mineralogy/recipe/basalt_smooth_wall.json | 30 ++- .../data/mineralogy/recipe/basalt_stairs.json | 32 ++- .../mineralogy/recipe/basalt_to_stone.json | 18 +- .../data/mineralogy/recipe/basalt_wall.json | 30 ++- .../recipe/basaltic_glass_brick.json | 30 ++- .../basaltic_glass_brick_block_polishing.json | 24 +- .../recipe/basaltic_glass_brick_furnace.json | 36 ++- .../recipe/basaltic_glass_brick_slab.json | 28 ++- .../basaltic_glass_brick_slab_polishing.json | 24 +- ...saltic_glass_brick_slab_recombination.json | 24 +- .../recipe/basaltic_glass_brick_stairs.json | 32 ++- ...basaltic_glass_brick_stairs_polishing.json | 24 +- .../recipe/basaltic_glass_brick_wall.json | 30 ++- .../basaltic_glass_brick_wall_polishing.json | 24 +- .../recipe/basaltic_glass_cobblestone.json | 32 +-- .../recipe/basaltic_glass_furnace.json | 36 ++- ...ass_polished_brick_slab_recombination.json | 24 +- ...tic_glass_polished_slab_recombination.json | 24 +- ...asaltic_glass_polished_slabs_to_brick.json | 30 ++- ...saltic_glass_polished_stairs_to_brick.json | 30 ++- ...asaltic_glass_polished_walls_to_brick.json | 30 ++- .../basaltic_glass_raw_slab_polishing.json | 24 +- ...basaltic_glass_raw_slab_recombination.json | 24 +- .../basaltic_glass_raw_slabs_to_brick.json | 30 ++- .../basaltic_glass_raw_stairs_polishing.json | 24 +- .../basaltic_glass_raw_stairs_to_brick.json | 30 ++- .../basaltic_glass_raw_wall_polishing.json | 24 +- .../basaltic_glass_raw_walls_to_brick.json | 30 ++- .../recipe/basaltic_glass_relief_axe.json | 52 ++--- .../recipe/basaltic_glass_relief_blank.json | 32 ++- .../recipe/basaltic_glass_relief_cross.json | 32 ++- .../recipe/basaltic_glass_relief_hammer.json | 40 ++-- .../recipe/basaltic_glass_relief_hoe.json | 52 ++--- .../basaltic_glass_relief_horizontal.json | 28 ++- .../recipe/basaltic_glass_relief_i.json | 32 ++- .../recipe/basaltic_glass_relief_left.json | 32 ++- .../recipe/basaltic_glass_relief_pickaxe.json | 52 ++--- .../recipe/basaltic_glass_relief_plus.json | 32 ++- .../recipe/basaltic_glass_relief_right.json | 24 +- .../recipe/basaltic_glass_relief_sword.json | 52 ++--- .../basaltic_glass_relief_vertical.json | 32 ++- .../recipe/basaltic_glass_slab.json | 28 ++- .../recipe/basaltic_glass_smooth.json | 24 +- .../recipe/basaltic_glass_smooth_brick.json | 30 ++- .../basaltic_glass_smooth_brick_furnace.json | 36 ++- .../basaltic_glass_smooth_brick_slab.json | 28 ++- .../basaltic_glass_smooth_brick_stairs.json | 32 ++- .../basaltic_glass_smooth_brick_wall.json | 30 ++- .../recipe/basaltic_glass_smooth_furnace.json | 36 ++- .../recipe/basaltic_glass_smooth_slab.json | 28 ++- .../recipe/basaltic_glass_smooth_stairs.json | 32 ++- .../recipe/basaltic_glass_smooth_wall.json | 30 ++- .../recipe/basaltic_glass_stairs.json | 32 ++- .../recipe/basaltic_glass_to_stone.json | 18 +- .../recipe/basaltic_glass_wall.json | 30 ++- .../data/mineralogy/recipe/chalk.json | 30 ++- .../data/mineralogy/recipe/chalk_dust.json | 20 +- .../data/mineralogy/recipe/cobblestone.json | 32 +-- .../mineralogy/recipe/conglomerate_brick.json | 30 ++- .../conglomerate_brick_block_polishing.json | 24 +- .../recipe/conglomerate_brick_furnace.json | 36 ++- .../recipe/conglomerate_brick_slab.json | 28 ++- .../conglomerate_brick_slab_polishing.json | 24 +- ...conglomerate_brick_slab_recombination.json | 24 +- .../recipe/conglomerate_brick_stairs.json | 32 ++- .../conglomerate_brick_stairs_polishing.json | 24 +- .../recipe/conglomerate_brick_wall.json | 30 ++- .../conglomerate_brick_wall_polishing.json | 24 +- .../recipe/conglomerate_cobblestone.json | 32 +-- .../recipe/conglomerate_furnace.json | 36 ++- ...ate_polished_brick_slab_recombination.json | 24 +- ...glomerate_polished_slab_recombination.json | 24 +- .../conglomerate_polished_slabs_to_brick.json | 30 ++- ...conglomerate_polished_stairs_to_brick.json | 30 ++- .../conglomerate_polished_walls_to_brick.json | 30 ++- .../conglomerate_raw_slab_polishing.json | 24 +- .../conglomerate_raw_slab_recombination.json | 24 +- .../conglomerate_raw_slabs_to_brick.json | 30 ++- .../conglomerate_raw_stairs_polishing.json | 24 +- .../conglomerate_raw_stairs_to_brick.json | 30 ++- .../conglomerate_raw_wall_polishing.json | 24 +- .../conglomerate_raw_walls_to_brick.json | 30 ++- .../recipe/conglomerate_relief_axe.json | 52 ++--- .../recipe/conglomerate_relief_blank.json | 32 ++- .../recipe/conglomerate_relief_cross.json | 32 ++- .../recipe/conglomerate_relief_hammer.json | 40 ++-- .../recipe/conglomerate_relief_hoe.json | 52 ++--- .../conglomerate_relief_horizontal.json | 28 ++- .../recipe/conglomerate_relief_i.json | 32 ++- .../recipe/conglomerate_relief_left.json | 32 ++- .../recipe/conglomerate_relief_pickaxe.json | 52 ++--- .../recipe/conglomerate_relief_plus.json | 32 ++- .../recipe/conglomerate_relief_right.json | 24 +- .../recipe/conglomerate_relief_sword.json | 52 ++--- .../recipe/conglomerate_relief_vertical.json | 32 ++- .../mineralogy/recipe/conglomerate_slab.json | 28 ++- .../recipe/conglomerate_smooth.json | 24 +- .../recipe/conglomerate_smooth_brick.json | 30 ++- .../conglomerate_smooth_brick_furnace.json | 36 ++- .../conglomerate_smooth_brick_slab.json | 28 ++- .../conglomerate_smooth_brick_stairs.json | 32 ++- .../conglomerate_smooth_brick_wall.json | 30 ++- .../recipe/conglomerate_smooth_furnace.json | 36 ++- .../recipe/conglomerate_smooth_slab.json | 28 ++- .../recipe/conglomerate_smooth_stairs.json | 32 ++- .../recipe/conglomerate_smooth_wall.json | 30 ++- .../recipe/conglomerate_stairs.json | 32 ++- .../recipe/conglomerate_to_stone.json | 18 +- .../mineralogy/recipe/conglomerate_wall.json | 30 ++- .../data/mineralogy/recipe/diabase_brick.json | 30 ++- .../recipe/diabase_brick_block_polishing.json | 24 +- .../recipe/diabase_brick_furnace.json | 36 ++- .../mineralogy/recipe/diabase_brick_slab.json | 28 ++- .../recipe/diabase_brick_slab_polishing.json | 24 +- .../diabase_brick_slab_recombination.json | 24 +- .../recipe/diabase_brick_stairs.json | 32 ++- .../diabase_brick_stairs_polishing.json | 24 +- .../mineralogy/recipe/diabase_brick_wall.json | 30 ++- .../recipe/diabase_brick_wall_polishing.json | 24 +- .../recipe/diabase_cobblestone.json | 32 +-- .../mineralogy/recipe/diabase_furnace.json | 36 ++- ...ase_polished_brick_slab_recombination.json | 24 +- .../diabase_polished_slab_recombination.json | 24 +- .../diabase_polished_slabs_to_brick.json | 30 ++- .../diabase_polished_stairs_to_brick.json | 30 ++- .../diabase_polished_walls_to_brick.json | 30 ++- .../recipe/diabase_raw_slab_polishing.json | 24 +- .../diabase_raw_slab_recombination.json | 24 +- .../recipe/diabase_raw_slabs_to_brick.json | 30 ++- .../recipe/diabase_raw_stairs_polishing.json | 24 +- .../recipe/diabase_raw_stairs_to_brick.json | 30 ++- .../recipe/diabase_raw_wall_polishing.json | 24 +- .../recipe/diabase_raw_walls_to_brick.json | 30 ++- .../mineralogy/recipe/diabase_relief_axe.json | 52 ++--- .../recipe/diabase_relief_blank.json | 32 ++- .../recipe/diabase_relief_cross.json | 32 ++- .../recipe/diabase_relief_hammer.json | 40 ++-- .../mineralogy/recipe/diabase_relief_hoe.json | 52 ++--- .../recipe/diabase_relief_horizontal.json | 28 ++- .../mineralogy/recipe/diabase_relief_i.json | 32 ++- .../recipe/diabase_relief_left.json | 32 ++- .../recipe/diabase_relief_pickaxe.json | 52 ++--- .../recipe/diabase_relief_plus.json | 32 ++- .../recipe/diabase_relief_right.json | 24 +- .../recipe/diabase_relief_sword.json | 52 ++--- .../recipe/diabase_relief_vertical.json | 32 ++- .../data/mineralogy/recipe/diabase_slab.json | 28 ++- .../mineralogy/recipe/diabase_smooth.json | 24 +- .../recipe/diabase_smooth_brick.json | 30 ++- .../recipe/diabase_smooth_brick_furnace.json | 36 ++- .../recipe/diabase_smooth_brick_slab.json | 28 ++- .../recipe/diabase_smooth_brick_stairs.json | 32 ++- .../recipe/diabase_smooth_brick_wall.json | 30 ++- .../recipe/diabase_smooth_furnace.json | 36 ++- .../recipe/diabase_smooth_slab.json | 28 ++- .../recipe/diabase_smooth_stairs.json | 32 ++- .../recipe/diabase_smooth_wall.json | 30 ++- .../mineralogy/recipe/diabase_stairs.json | 32 ++- .../mineralogy/recipe/diabase_to_stone.json | 18 +- .../data/mineralogy/recipe/diabase_wall.json | 30 ++- .../data/mineralogy/recipe/diorite_brick.json | 30 ++- .../recipe/diorite_brick_block_polishing.json | 24 +- .../recipe/diorite_brick_furnace.json | 36 ++- .../mineralogy/recipe/diorite_brick_slab.json | 28 ++- .../recipe/diorite_brick_slab_polishing.json | 24 +- .../diorite_brick_slab_recombination.json | 24 +- .../recipe/diorite_brick_stairs.json | 32 ++- .../diorite_brick_stairs_polishing.json | 24 +- .../mineralogy/recipe/diorite_brick_wall.json | 30 ++- .../recipe/diorite_brick_wall_polishing.json | 24 +- .../recipe/diorite_cobblestone.json | 32 +-- .../mineralogy/recipe/diorite_furnace.json | 36 ++- ...ite_polished_brick_slab_recombination.json | 24 +- .../diorite_polished_slab_recombination.json | 24 +- .../diorite_polished_slabs_to_brick.json | 30 ++- .../diorite_polished_stairs_to_brick.json | 30 ++- .../diorite_polished_walls_to_brick.json | 30 ++- .../recipe/diorite_raw_slab_polishing.json | 24 +- .../diorite_raw_slab_recombination.json | 24 +- .../recipe/diorite_raw_slabs_to_brick.json | 30 ++- .../recipe/diorite_raw_stairs_polishing.json | 24 +- .../recipe/diorite_raw_stairs_to_brick.json | 30 ++- .../recipe/diorite_raw_wall_polishing.json | 24 +- .../recipe/diorite_raw_walls_to_brick.json | 30 ++- .../mineralogy/recipe/diorite_relief_axe.json | 52 ++--- .../recipe/diorite_relief_blank.json | 32 ++- .../recipe/diorite_relief_cross.json | 32 ++- .../recipe/diorite_relief_hammer.json | 40 ++-- .../mineralogy/recipe/diorite_relief_hoe.json | 52 ++--- .../recipe/diorite_relief_horizontal.json | 28 ++- .../mineralogy/recipe/diorite_relief_i.json | 32 ++- .../recipe/diorite_relief_left.json | 32 ++- .../recipe/diorite_relief_pickaxe.json | 52 ++--- .../recipe/diorite_relief_plus.json | 32 ++- .../recipe/diorite_relief_right.json | 24 +- .../recipe/diorite_relief_sword.json | 52 ++--- .../recipe/diorite_relief_vertical.json | 32 ++- .../data/mineralogy/recipe/diorite_slab.json | 28 ++- .../recipe/diorite_slab_from_vanilla.json | 20 +- .../recipe/diorite_slab_to_vanilla.json | 20 +- .../mineralogy/recipe/diorite_smooth.json | 24 +- .../recipe/diorite_smooth_brick.json | 30 ++- .../recipe/diorite_smooth_brick_furnace.json | 36 ++- .../recipe/diorite_smooth_brick_slab.json | 28 ++- .../recipe/diorite_smooth_brick_stairs.json | 32 ++- .../recipe/diorite_smooth_brick_wall.json | 30 ++- .../recipe/diorite_smooth_furnace.json | 36 ++- .../recipe/diorite_smooth_slab.json | 28 ++- .../diorite_smooth_slab_from_vanilla.json | 20 +- .../diorite_smooth_slab_to_vanilla.json | 20 +- .../recipe/diorite_smooth_stairs.json | 32 ++- .../recipe/diorite_smooth_wall.json | 30 ++- .../mineralogy/recipe/diorite_stairs.json | 32 ++- .../mineralogy/recipe/diorite_to_stone.json | 18 +- .../data/mineralogy/recipe/diorite_wall.json | 30 ++- .../mineralogy/recipe/dolomite_brick.json | 30 ++- .../dolomite_brick_block_polishing.json | 24 +- .../recipe/dolomite_brick_furnace.json | 36 ++- .../recipe/dolomite_brick_slab.json | 28 ++- .../recipe/dolomite_brick_slab_polishing.json | 24 +- .../dolomite_brick_slab_recombination.json | 24 +- .../recipe/dolomite_brick_stairs.json | 32 ++- .../dolomite_brick_stairs_polishing.json | 24 +- .../recipe/dolomite_brick_wall.json | 30 ++- .../recipe/dolomite_brick_wall_polishing.json | 24 +- .../recipe/dolomite_cobblestone.json | 32 +-- .../mineralogy/recipe/dolomite_furnace.json | 36 ++- ...ite_polished_brick_slab_recombination.json | 24 +- .../dolomite_polished_slab_recombination.json | 24 +- .../dolomite_polished_slabs_to_brick.json | 30 ++- .../dolomite_polished_stairs_to_brick.json | 30 ++- .../dolomite_polished_walls_to_brick.json | 30 ++- .../recipe/dolomite_raw_slab_polishing.json | 24 +- .../dolomite_raw_slab_recombination.json | 24 +- .../recipe/dolomite_raw_slabs_to_brick.json | 30 ++- .../recipe/dolomite_raw_stairs_polishing.json | 24 +- .../recipe/dolomite_raw_stairs_to_brick.json | 30 ++- .../recipe/dolomite_raw_wall_polishing.json | 24 +- .../recipe/dolomite_raw_walls_to_brick.json | 30 ++- .../recipe/dolomite_relief_axe.json | 52 ++--- .../recipe/dolomite_relief_blank.json | 32 ++- .../recipe/dolomite_relief_cross.json | 32 ++- .../recipe/dolomite_relief_hammer.json | 40 ++-- .../recipe/dolomite_relief_hoe.json | 52 ++--- .../recipe/dolomite_relief_horizontal.json | 28 ++- .../mineralogy/recipe/dolomite_relief_i.json | 32 ++- .../recipe/dolomite_relief_left.json | 32 ++- .../recipe/dolomite_relief_pickaxe.json | 52 ++--- .../recipe/dolomite_relief_plus.json | 32 ++- .../recipe/dolomite_relief_right.json | 24 +- .../recipe/dolomite_relief_sword.json | 52 ++--- .../recipe/dolomite_relief_vertical.json | 32 ++- .../data/mineralogy/recipe/dolomite_slab.json | 28 ++- .../mineralogy/recipe/dolomite_smooth.json | 24 +- .../recipe/dolomite_smooth_brick.json | 30 ++- .../recipe/dolomite_smooth_brick_furnace.json | 36 ++- .../recipe/dolomite_smooth_brick_slab.json | 28 ++- .../recipe/dolomite_smooth_brick_stairs.json | 32 ++- .../recipe/dolomite_smooth_brick_wall.json | 30 ++- .../recipe/dolomite_smooth_furnace.json | 36 ++- .../recipe/dolomite_smooth_slab.json | 28 ++- .../recipe/dolomite_smooth_stairs.json | 32 ++- .../recipe/dolomite_smooth_wall.json | 30 ++- .../mineralogy/recipe/dolomite_stairs.json | 32 ++- .../mineralogy/recipe/dolomite_to_stone.json | 18 +- .../data/mineralogy/recipe/dolomite_wall.json | 30 ++- .../data/mineralogy/recipe/drywall.json | 48 ++-- .../data/mineralogy/recipe/drywall_black.json | 36 ++- .../data/mineralogy/recipe/drywall_blue.json | 36 ++- .../data/mineralogy/recipe/drywall_brown.json | 36 ++- .../data/mineralogy/recipe/drywall_cyan.json | 36 ++- .../data/mineralogy/recipe/drywall_gray.json | 36 ++- .../data/mineralogy/recipe/drywall_green.json | 36 ++- .../mineralogy/recipe/drywall_light_blue.json | 36 ++- .../data/mineralogy/recipe/drywall_lime.json | 36 ++- .../mineralogy/recipe/drywall_magenta.json | 36 ++- .../mineralogy/recipe/drywall_orange.json | 36 ++- .../data/mineralogy/recipe/drywall_pink.json | 36 ++- .../mineralogy/recipe/drywall_purple.json | 36 ++- .../data/mineralogy/recipe/drywall_red.json | 36 ++- .../mineralogy/recipe/drywall_silver.json | 36 ++- .../data/mineralogy/recipe/drywall_white.json | 36 ++- .../mineralogy/recipe/drywall_yellow.json | 36 ++- .../data/mineralogy/recipe/gabbro_brick.json | 30 ++- .../recipe/gabbro_brick_block_polishing.json | 24 +- .../recipe/gabbro_brick_furnace.json | 36 ++- .../mineralogy/recipe/gabbro_brick_slab.json | 28 ++- .../recipe/gabbro_brick_slab_polishing.json | 24 +- .../gabbro_brick_slab_recombination.json | 24 +- .../recipe/gabbro_brick_stairs.json | 32 ++- .../recipe/gabbro_brick_stairs_polishing.json | 24 +- .../mineralogy/recipe/gabbro_brick_wall.json | 30 ++- .../recipe/gabbro_brick_wall_polishing.json | 24 +- .../mineralogy/recipe/gabbro_cobblestone.json | 32 +-- .../mineralogy/recipe/gabbro_furnace.json | 36 ++- ...bro_polished_brick_slab_recombination.json | 24 +- .../gabbro_polished_slab_recombination.json | 24 +- .../gabbro_polished_slabs_to_brick.json | 30 ++- .../gabbro_polished_stairs_to_brick.json | 30 ++- .../gabbro_polished_walls_to_brick.json | 30 ++- .../recipe/gabbro_raw_slab_polishing.json | 24 +- .../recipe/gabbro_raw_slab_recombination.json | 24 +- .../recipe/gabbro_raw_slabs_to_brick.json | 30 ++- .../recipe/gabbro_raw_stairs_polishing.json | 24 +- .../recipe/gabbro_raw_stairs_to_brick.json | 30 ++- .../recipe/gabbro_raw_wall_polishing.json | 24 +- .../recipe/gabbro_raw_walls_to_brick.json | 30 ++- .../mineralogy/recipe/gabbro_relief_axe.json | 52 ++--- .../recipe/gabbro_relief_blank.json | 32 ++- .../recipe/gabbro_relief_cross.json | 32 ++- .../recipe/gabbro_relief_hammer.json | 40 ++-- .../mineralogy/recipe/gabbro_relief_hoe.json | 52 ++--- .../recipe/gabbro_relief_horizontal.json | 28 ++- .../mineralogy/recipe/gabbro_relief_i.json | 32 ++- .../mineralogy/recipe/gabbro_relief_left.json | 32 ++- .../recipe/gabbro_relief_pickaxe.json | 52 ++--- .../mineralogy/recipe/gabbro_relief_plus.json | 32 ++- .../recipe/gabbro_relief_right.json | 24 +- .../recipe/gabbro_relief_sword.json | 52 ++--- .../recipe/gabbro_relief_vertical.json | 32 ++- .../data/mineralogy/recipe/gabbro_slab.json | 28 ++- .../data/mineralogy/recipe/gabbro_smooth.json | 24 +- .../recipe/gabbro_smooth_brick.json | 30 ++- .../recipe/gabbro_smooth_brick_furnace.json | 36 ++- .../recipe/gabbro_smooth_brick_slab.json | 28 ++- .../recipe/gabbro_smooth_brick_stairs.json | 32 ++- .../recipe/gabbro_smooth_brick_wall.json | 30 ++- .../recipe/gabbro_smooth_furnace.json | 36 ++- .../mineralogy/recipe/gabbro_smooth_slab.json | 28 ++- .../recipe/gabbro_smooth_stairs.json | 32 ++- .../mineralogy/recipe/gabbro_smooth_wall.json | 30 ++- .../data/mineralogy/recipe/gabbro_stairs.json | 32 ++- .../mineralogy/recipe/gabbro_to_stone.json | 18 +- .../data/mineralogy/recipe/gabbro_wall.json | 30 ++- .../data/mineralogy/recipe/gneiss_brick.json | 30 ++- .../recipe/gneiss_brick_block_polishing.json | 24 +- .../recipe/gneiss_brick_furnace.json | 36 ++- .../mineralogy/recipe/gneiss_brick_slab.json | 28 ++- .../recipe/gneiss_brick_slab_polishing.json | 24 +- .../gneiss_brick_slab_recombination.json | 24 +- .../recipe/gneiss_brick_stairs.json | 32 ++- .../recipe/gneiss_brick_stairs_polishing.json | 24 +- .../mineralogy/recipe/gneiss_brick_wall.json | 30 ++- .../recipe/gneiss_brick_wall_polishing.json | 24 +- .../mineralogy/recipe/gneiss_cobblestone.json | 32 +-- .../mineralogy/recipe/gneiss_furnace.json | 36 ++- ...iss_polished_brick_slab_recombination.json | 24 +- .../gneiss_polished_slab_recombination.json | 24 +- .../gneiss_polished_slabs_to_brick.json | 30 ++- .../gneiss_polished_stairs_to_brick.json | 30 ++- .../gneiss_polished_walls_to_brick.json | 30 ++- .../recipe/gneiss_raw_slab_polishing.json | 24 +- .../recipe/gneiss_raw_slab_recombination.json | 24 +- .../recipe/gneiss_raw_slabs_to_brick.json | 30 ++- .../recipe/gneiss_raw_stairs_polishing.json | 24 +- .../recipe/gneiss_raw_stairs_to_brick.json | 30 ++- .../recipe/gneiss_raw_wall_polishing.json | 24 +- .../recipe/gneiss_raw_walls_to_brick.json | 30 ++- .../mineralogy/recipe/gneiss_relief_axe.json | 52 ++--- .../recipe/gneiss_relief_blank.json | 32 ++- .../recipe/gneiss_relief_cross.json | 32 ++- .../recipe/gneiss_relief_hammer.json | 40 ++-- .../mineralogy/recipe/gneiss_relief_hoe.json | 52 ++--- .../recipe/gneiss_relief_horizontal.json | 28 ++- .../mineralogy/recipe/gneiss_relief_i.json | 32 ++- .../mineralogy/recipe/gneiss_relief_left.json | 32 ++- .../recipe/gneiss_relief_pickaxe.json | 52 ++--- .../mineralogy/recipe/gneiss_relief_plus.json | 32 ++- .../recipe/gneiss_relief_right.json | 24 +- .../recipe/gneiss_relief_sword.json | 52 ++--- .../recipe/gneiss_relief_vertical.json | 32 ++- .../data/mineralogy/recipe/gneiss_slab.json | 28 ++- .../data/mineralogy/recipe/gneiss_smooth.json | 24 +- .../recipe/gneiss_smooth_brick.json | 30 ++- .../recipe/gneiss_smooth_brick_furnace.json | 36 ++- .../recipe/gneiss_smooth_brick_slab.json | 28 ++- .../recipe/gneiss_smooth_brick_stairs.json | 32 ++- .../recipe/gneiss_smooth_brick_wall.json | 30 ++- .../recipe/gneiss_smooth_furnace.json | 36 ++- .../mineralogy/recipe/gneiss_smooth_slab.json | 28 ++- .../recipe/gneiss_smooth_stairs.json | 32 ++- .../mineralogy/recipe/gneiss_smooth_wall.json | 30 ++- .../data/mineralogy/recipe/gneiss_stairs.json | 32 ++- .../mineralogy/recipe/gneiss_to_stone.json | 18 +- .../data/mineralogy/recipe/gneiss_wall.json | 30 ++- .../data/mineralogy/recipe/granite_brick.json | 30 ++- .../recipe/granite_brick_block_polishing.json | 24 +- .../recipe/granite_brick_furnace.json | 36 ++- .../mineralogy/recipe/granite_brick_slab.json | 28 ++- .../recipe/granite_brick_slab_polishing.json | 24 +- .../granite_brick_slab_recombination.json | 24 +- .../recipe/granite_brick_stairs.json | 32 ++- .../granite_brick_stairs_polishing.json | 24 +- .../mineralogy/recipe/granite_brick_wall.json | 30 ++- .../recipe/granite_brick_wall_polishing.json | 24 +- .../recipe/granite_cobblestone.json | 32 +-- .../mineralogy/recipe/granite_furnace.json | 36 ++- ...ite_polished_brick_slab_recombination.json | 24 +- .../granite_polished_slab_recombination.json | 24 +- .../granite_polished_slabs_to_brick.json | 30 ++- .../granite_polished_stairs_to_brick.json | 30 ++- .../granite_polished_walls_to_brick.json | 30 ++- .../recipe/granite_raw_slab_polishing.json | 24 +- .../granite_raw_slab_recombination.json | 24 +- .../recipe/granite_raw_slabs_to_brick.json | 30 ++- .../recipe/granite_raw_stairs_polishing.json | 24 +- .../recipe/granite_raw_stairs_to_brick.json | 30 ++- .../recipe/granite_raw_wall_polishing.json | 24 +- .../recipe/granite_raw_walls_to_brick.json | 30 ++- .../mineralogy/recipe/granite_relief_axe.json | 52 ++--- .../recipe/granite_relief_blank.json | 32 ++- .../recipe/granite_relief_cross.json | 32 ++- .../recipe/granite_relief_hammer.json | 40 ++-- .../mineralogy/recipe/granite_relief_hoe.json | 52 ++--- .../recipe/granite_relief_horizontal.json | 28 ++- .../mineralogy/recipe/granite_relief_i.json | 32 ++- .../recipe/granite_relief_left.json | 32 ++- .../recipe/granite_relief_pickaxe.json | 52 ++--- .../recipe/granite_relief_plus.json | 32 ++- .../recipe/granite_relief_right.json | 24 +- .../recipe/granite_relief_sword.json | 52 ++--- .../recipe/granite_relief_vertical.json | 32 ++- .../data/mineralogy/recipe/granite_slab.json | 28 ++- .../recipe/granite_slab_from_vanilla.json | 20 +- .../recipe/granite_slab_to_vanilla.json | 20 +- .../mineralogy/recipe/granite_smooth.json | 24 +- .../recipe/granite_smooth_brick.json | 30 ++- .../recipe/granite_smooth_brick_furnace.json | 36 ++- .../recipe/granite_smooth_brick_slab.json | 28 ++- .../recipe/granite_smooth_brick_stairs.json | 32 ++- .../recipe/granite_smooth_brick_wall.json | 30 ++- .../recipe/granite_smooth_furnace.json | 36 ++- .../recipe/granite_smooth_slab.json | 28 ++- .../granite_smooth_slab_from_vanilla.json | 20 +- .../granite_smooth_slab_to_vanilla.json | 20 +- .../recipe/granite_smooth_stairs.json | 32 ++- .../recipe/granite_smooth_wall.json | 30 ++- .../mineralogy/recipe/granite_stairs.json | 32 ++- .../mineralogy/recipe/granite_to_stone.json | 18 +- .../data/mineralogy/recipe/granite_wall.json | 30 ++- .../mineralogy/recipe/gravel_to_stone.json | 30 ++- .../recipe/gunpowder_from_carbon_dust.json | 64 +++-- .../recipe/gunpowder_from_charcoal.json | 40 ++-- .../recipe/gunpowder_from_coal_dust.json | 64 +++-- .../recipe/gunpowder_from_sugar.json | 40 ++-- .../data/mineralogy/recipe/gypsum.json | 30 ++- .../data/mineralogy/recipe/gypsum_dust.json | 20 +- .../mineralogy/recipe/hornfels_brick.json | 30 ++- .../hornfels_brick_block_polishing.json | 24 +- .../recipe/hornfels_brick_furnace.json | 36 ++- .../recipe/hornfels_brick_slab.json | 28 ++- .../recipe/hornfels_brick_slab_polishing.json | 24 +- .../hornfels_brick_slab_recombination.json | 24 +- .../recipe/hornfels_brick_stairs.json | 32 ++- .../hornfels_brick_stairs_polishing.json | 24 +- .../recipe/hornfels_brick_wall.json | 30 ++- .../recipe/hornfels_brick_wall_polishing.json | 24 +- .../recipe/hornfels_cobblestone.json | 32 +-- .../mineralogy/recipe/hornfels_furnace.json | 36 ++- ...els_polished_brick_slab_recombination.json | 24 +- .../hornfels_polished_slab_recombination.json | 24 +- .../hornfels_polished_slabs_to_brick.json | 30 ++- .../hornfels_polished_stairs_to_brick.json | 30 ++- .../hornfels_polished_walls_to_brick.json | 30 ++- .../recipe/hornfels_raw_slab_polishing.json | 24 +- .../hornfels_raw_slab_recombination.json | 24 +- .../recipe/hornfels_raw_slabs_to_brick.json | 30 ++- .../recipe/hornfels_raw_stairs_polishing.json | 24 +- .../recipe/hornfels_raw_stairs_to_brick.json | 30 ++- .../recipe/hornfels_raw_wall_polishing.json | 24 +- .../recipe/hornfels_raw_walls_to_brick.json | 30 ++- .../recipe/hornfels_relief_axe.json | 52 ++--- .../recipe/hornfels_relief_blank.json | 32 ++- .../recipe/hornfels_relief_cross.json | 32 ++- .../recipe/hornfels_relief_hammer.json | 40 ++-- .../recipe/hornfels_relief_hoe.json | 52 ++--- .../recipe/hornfels_relief_horizontal.json | 28 ++- .../mineralogy/recipe/hornfels_relief_i.json | 32 ++- .../recipe/hornfels_relief_left.json | 32 ++- .../recipe/hornfels_relief_pickaxe.json | 52 ++--- .../recipe/hornfels_relief_plus.json | 32 ++- .../recipe/hornfels_relief_right.json | 24 +- .../recipe/hornfels_relief_sword.json | 52 ++--- .../recipe/hornfels_relief_vertical.json | 32 ++- .../data/mineralogy/recipe/hornfels_slab.json | 28 ++- .../mineralogy/recipe/hornfels_smooth.json | 24 +- .../recipe/hornfels_smooth_brick.json | 30 ++- .../recipe/hornfels_smooth_brick_furnace.json | 36 ++- .../recipe/hornfels_smooth_brick_slab.json | 28 ++- .../recipe/hornfels_smooth_brick_stairs.json | 32 ++- .../recipe/hornfels_smooth_brick_wall.json | 30 ++- .../recipe/hornfels_smooth_furnace.json | 36 ++- .../recipe/hornfels_smooth_slab.json | 28 ++- .../recipe/hornfels_smooth_stairs.json | 32 ++- .../recipe/hornfels_smooth_wall.json | 30 ++- .../mineralogy/recipe/hornfels_stairs.json | 32 ++- .../mineralogy/recipe/hornfels_to_stone.json | 18 +- .../data/mineralogy/recipe/hornfels_wall.json | 30 ++- .../mineralogy/recipe/limestone_brick.json | 30 ++- .../limestone_brick_block_polishing.json | 24 +- .../recipe/limestone_brick_furnace.json | 36 ++- .../recipe/limestone_brick_slab.json | 28 ++- .../limestone_brick_slab_polishing.json | 24 +- .../limestone_brick_slab_recombination.json | 24 +- .../recipe/limestone_brick_stairs.json | 32 ++- .../limestone_brick_stairs_polishing.json | 24 +- .../recipe/limestone_brick_wall.json | 30 ++- .../limestone_brick_wall_polishing.json | 24 +- .../recipe/limestone_cobblestone.json | 32 +-- .../mineralogy/recipe/limestone_furnace.json | 36 ++- ...one_polished_brick_slab_recombination.json | 24 +- ...limestone_polished_slab_recombination.json | 24 +- .../limestone_polished_slabs_to_brick.json | 30 ++- .../limestone_polished_stairs_to_brick.json | 30 ++- .../limestone_polished_walls_to_brick.json | 30 ++- .../recipe/limestone_raw_slab_polishing.json | 24 +- .../limestone_raw_slab_recombination.json | 24 +- .../recipe/limestone_raw_slabs_to_brick.json | 30 ++- .../limestone_raw_stairs_polishing.json | 24 +- .../recipe/limestone_raw_stairs_to_brick.json | 30 ++- .../recipe/limestone_raw_wall_polishing.json | 24 +- .../recipe/limestone_raw_walls_to_brick.json | 30 ++- .../recipe/limestone_relief_axe.json | 52 ++--- .../recipe/limestone_relief_blank.json | 32 ++- .../recipe/limestone_relief_cross.json | 32 ++- .../recipe/limestone_relief_hammer.json | 40 ++-- .../recipe/limestone_relief_hoe.json | 52 ++--- .../recipe/limestone_relief_horizontal.json | 28 ++- .../mineralogy/recipe/limestone_relief_i.json | 32 ++- .../recipe/limestone_relief_left.json | 32 ++- .../recipe/limestone_relief_pickaxe.json | 52 ++--- .../recipe/limestone_relief_plus.json | 32 ++- .../recipe/limestone_relief_right.json | 24 +- .../recipe/limestone_relief_sword.json | 52 ++--- .../recipe/limestone_relief_vertical.json | 32 ++- .../mineralogy/recipe/limestone_slab.json | 28 ++- .../mineralogy/recipe/limestone_smooth.json | 24 +- .../recipe/limestone_smooth_brick.json | 30 ++- .../limestone_smooth_brick_furnace.json | 36 ++- .../recipe/limestone_smooth_brick_slab.json | 28 ++- .../recipe/limestone_smooth_brick_stairs.json | 32 ++- .../recipe/limestone_smooth_brick_wall.json | 30 ++- .../recipe/limestone_smooth_furnace.json | 36 ++- .../recipe/limestone_smooth_slab.json | 28 ++- .../recipe/limestone_smooth_stairs.json | 32 ++- .../recipe/limestone_smooth_wall.json | 30 ++- .../mineralogy/recipe/limestone_stairs.json | 32 ++- .../mineralogy/recipe/limestone_to_stone.json | 18 +- .../mineralogy/recipe/limestone_wall.json | 30 ++- .../data/mineralogy/recipe/marble_brick.json | 30 ++- .../recipe/marble_brick_block_polishing.json | 24 +- .../recipe/marble_brick_furnace.json | 36 ++- .../mineralogy/recipe/marble_brick_slab.json | 28 ++- .../recipe/marble_brick_slab_polishing.json | 24 +- .../marble_brick_slab_recombination.json | 24 +- .../recipe/marble_brick_stairs.json | 32 ++- .../recipe/marble_brick_stairs_polishing.json | 24 +- .../mineralogy/recipe/marble_brick_wall.json | 30 ++- .../recipe/marble_brick_wall_polishing.json | 24 +- .../mineralogy/recipe/marble_cobblestone.json | 32 +-- .../mineralogy/recipe/marble_furnace.json | 36 ++- ...ble_polished_brick_slab_recombination.json | 24 +- .../marble_polished_slab_recombination.json | 24 +- .../marble_polished_slabs_to_brick.json | 30 ++- .../marble_polished_stairs_to_brick.json | 30 ++- .../marble_polished_walls_to_brick.json | 30 ++- .../recipe/marble_raw_slab_polishing.json | 24 +- .../recipe/marble_raw_slab_recombination.json | 24 +- .../recipe/marble_raw_slabs_to_brick.json | 30 ++- .../recipe/marble_raw_stairs_polishing.json | 24 +- .../recipe/marble_raw_stairs_to_brick.json | 30 ++- .../recipe/marble_raw_wall_polishing.json | 24 +- .../recipe/marble_raw_walls_to_brick.json | 30 ++- .../mineralogy/recipe/marble_relief_axe.json | 52 ++--- .../recipe/marble_relief_blank.json | 32 ++- .../recipe/marble_relief_cross.json | 32 ++- .../recipe/marble_relief_hammer.json | 40 ++-- .../mineralogy/recipe/marble_relief_hoe.json | 52 ++--- .../recipe/marble_relief_horizontal.json | 28 ++- .../mineralogy/recipe/marble_relief_i.json | 32 ++- .../mineralogy/recipe/marble_relief_left.json | 32 ++- .../recipe/marble_relief_pickaxe.json | 52 ++--- .../mineralogy/recipe/marble_relief_plus.json | 32 ++- .../recipe/marble_relief_right.json | 24 +- .../recipe/marble_relief_sword.json | 52 ++--- .../recipe/marble_relief_vertical.json | 32 ++- .../data/mineralogy/recipe/marble_slab.json | 28 ++- .../data/mineralogy/recipe/marble_smooth.json | 24 +- .../recipe/marble_smooth_brick.json | 30 ++- .../recipe/marble_smooth_brick_furnace.json | 36 ++- .../recipe/marble_smooth_brick_slab.json | 28 ++- .../recipe/marble_smooth_brick_stairs.json | 32 ++- .../recipe/marble_smooth_brick_wall.json | 30 ++- .../recipe/marble_smooth_furnace.json | 36 ++- .../mineralogy/recipe/marble_smooth_slab.json | 28 ++- .../recipe/marble_smooth_stairs.json | 32 ++- .../mineralogy/recipe/marble_smooth_wall.json | 30 ++- .../data/mineralogy/recipe/marble_stairs.json | 32 ++- .../mineralogy/recipe/marble_to_stone.json | 18 +- .../data/mineralogy/recipe/marble_wall.json | 30 ++- .../mineralogy/recipe/mineralfertilizer.json | 36 ++- .../data/mineralogy/recipe/nitrate_block.json | 44 ++-- .../data/mineralogy/recipe/nitrate_dust.json | 32 ++- .../mineralogy/recipe/novaculite_brick.json | 30 ++- .../novaculite_brick_block_polishing.json | 24 +- .../recipe/novaculite_brick_furnace.json | 36 ++- .../recipe/novaculite_brick_slab.json | 28 ++- .../novaculite_brick_slab_polishing.json | 24 +- .../novaculite_brick_slab_recombination.json | 24 +- .../recipe/novaculite_brick_stairs.json | 32 ++- .../novaculite_brick_stairs_polishing.json | 24 +- .../recipe/novaculite_brick_wall.json | 30 ++- .../novaculite_brick_wall_polishing.json | 24 +- .../recipe/novaculite_cobblestone.json | 32 +-- .../mineralogy/recipe/novaculite_furnace.json | 36 ++- ...ite_polished_brick_slab_recombination.json | 24 +- ...ovaculite_polished_slab_recombination.json | 24 +- .../novaculite_polished_slabs_to_brick.json | 30 ++- .../novaculite_polished_stairs_to_brick.json | 30 ++- .../novaculite_polished_walls_to_brick.json | 30 ++- .../recipe/novaculite_raw_slab_polishing.json | 24 +- .../novaculite_raw_slab_recombination.json | 24 +- .../recipe/novaculite_raw_slabs_to_brick.json | 30 ++- .../novaculite_raw_stairs_polishing.json | 24 +- .../novaculite_raw_stairs_to_brick.json | 30 ++- .../recipe/novaculite_raw_wall_polishing.json | 24 +- .../recipe/novaculite_raw_walls_to_brick.json | 30 ++- .../recipe/novaculite_relief_axe.json | 52 ++--- .../recipe/novaculite_relief_blank.json | 32 ++- .../recipe/novaculite_relief_cross.json | 32 ++- .../recipe/novaculite_relief_hammer.json | 40 ++-- .../recipe/novaculite_relief_hoe.json | 52 ++--- .../recipe/novaculite_relief_horizontal.json | 28 ++- .../recipe/novaculite_relief_i.json | 32 ++- .../recipe/novaculite_relief_left.json | 32 ++- .../recipe/novaculite_relief_pickaxe.json | 52 ++--- .../recipe/novaculite_relief_plus.json | 32 ++- .../recipe/novaculite_relief_right.json | 24 +- .../recipe/novaculite_relief_sword.json | 52 ++--- .../recipe/novaculite_relief_vertical.json | 32 ++- .../mineralogy/recipe/novaculite_slab.json | 28 ++- .../mineralogy/recipe/novaculite_smooth.json | 24 +- .../recipe/novaculite_smooth_brick.json | 30 ++- .../novaculite_smooth_brick_furnace.json | 36 ++- .../recipe/novaculite_smooth_brick_slab.json | 28 ++- .../novaculite_smooth_brick_stairs.json | 32 ++- .../recipe/novaculite_smooth_brick_wall.json | 30 ++- .../recipe/novaculite_smooth_furnace.json | 36 ++- .../recipe/novaculite_smooth_slab.json | 28 ++- .../recipe/novaculite_smooth_stairs.json | 32 ++- .../recipe/novaculite_smooth_wall.json | 30 ++- .../mineralogy/recipe/novaculite_stairs.json | 32 ++- .../recipe/novaculite_to_stone.json | 18 +- .../mineralogy/recipe/novaculite_wall.json | 30 ++- .../mineralogy/recipe/pegmatite_brick.json | 30 ++- .../pegmatite_brick_block_polishing.json | 24 +- .../recipe/pegmatite_brick_furnace.json | 36 ++- .../recipe/pegmatite_brick_slab.json | 28 ++- .../pegmatite_brick_slab_polishing.json | 24 +- .../pegmatite_brick_slab_recombination.json | 24 +- .../recipe/pegmatite_brick_stairs.json | 32 ++- .../pegmatite_brick_stairs_polishing.json | 24 +- .../recipe/pegmatite_brick_wall.json | 30 ++- .../pegmatite_brick_wall_polishing.json | 24 +- .../recipe/pegmatite_cobblestone.json | 32 +-- .../mineralogy/recipe/pegmatite_furnace.json | 36 ++- ...ite_polished_brick_slab_recombination.json | 24 +- ...pegmatite_polished_slab_recombination.json | 24 +- .../pegmatite_polished_slabs_to_brick.json | 30 ++- .../pegmatite_polished_stairs_to_brick.json | 30 ++- .../pegmatite_polished_walls_to_brick.json | 30 ++- .../recipe/pegmatite_raw_slab_polishing.json | 24 +- .../pegmatite_raw_slab_recombination.json | 24 +- .../recipe/pegmatite_raw_slabs_to_brick.json | 30 ++- .../pegmatite_raw_stairs_polishing.json | 24 +- .../recipe/pegmatite_raw_stairs_to_brick.json | 30 ++- .../recipe/pegmatite_raw_wall_polishing.json | 24 +- .../recipe/pegmatite_raw_walls_to_brick.json | 30 ++- .../recipe/pegmatite_relief_axe.json | 52 ++--- .../recipe/pegmatite_relief_blank.json | 32 ++- .../recipe/pegmatite_relief_cross.json | 32 ++- .../recipe/pegmatite_relief_hammer.json | 40 ++-- .../recipe/pegmatite_relief_hoe.json | 52 ++--- .../recipe/pegmatite_relief_horizontal.json | 28 ++- .../mineralogy/recipe/pegmatite_relief_i.json | 32 ++- .../recipe/pegmatite_relief_left.json | 32 ++- .../recipe/pegmatite_relief_pickaxe.json | 52 ++--- .../recipe/pegmatite_relief_plus.json | 32 ++- .../recipe/pegmatite_relief_right.json | 24 +- .../recipe/pegmatite_relief_sword.json | 52 ++--- .../recipe/pegmatite_relief_vertical.json | 32 ++- .../mineralogy/recipe/pegmatite_slab.json | 28 ++- .../mineralogy/recipe/pegmatite_smooth.json | 24 +- .../recipe/pegmatite_smooth_brick.json | 30 ++- .../pegmatite_smooth_brick_furnace.json | 36 ++- .../recipe/pegmatite_smooth_brick_slab.json | 28 ++- .../recipe/pegmatite_smooth_brick_stairs.json | 32 ++- .../recipe/pegmatite_smooth_brick_wall.json | 30 ++- .../recipe/pegmatite_smooth_furnace.json | 36 ++- .../recipe/pegmatite_smooth_slab.json | 28 ++- .../recipe/pegmatite_smooth_stairs.json | 32 ++- .../recipe/pegmatite_smooth_wall.json | 30 ++- .../mineralogy/recipe/pegmatite_stairs.json | 32 ++- .../mineralogy/recipe/pegmatite_to_stone.json | 18 +- .../mineralogy/recipe/pegmatite_wall.json | 30 ++- .../mineralogy/recipe/peridotite_brick.json | 30 ++- .../peridotite_brick_block_polishing.json | 24 +- .../recipe/peridotite_brick_furnace.json | 36 ++- .../recipe/peridotite_brick_slab.json | 28 ++- .../peridotite_brick_slab_polishing.json | 24 +- .../peridotite_brick_slab_recombination.json | 24 +- .../recipe/peridotite_brick_stairs.json | 32 ++- .../peridotite_brick_stairs_polishing.json | 24 +- .../recipe/peridotite_brick_wall.json | 30 ++- .../peridotite_brick_wall_polishing.json | 24 +- .../recipe/peridotite_cobblestone.json | 32 +-- .../mineralogy/recipe/peridotite_furnace.json | 36 ++- ...ite_polished_brick_slab_recombination.json | 24 +- ...eridotite_polished_slab_recombination.json | 24 +- .../peridotite_polished_slabs_to_brick.json | 30 ++- .../peridotite_polished_stairs_to_brick.json | 30 ++- .../peridotite_polished_walls_to_brick.json | 30 ++- .../recipe/peridotite_raw_slab_polishing.json | 24 +- .../peridotite_raw_slab_recombination.json | 24 +- .../recipe/peridotite_raw_slabs_to_brick.json | 30 ++- .../peridotite_raw_stairs_polishing.json | 24 +- .../peridotite_raw_stairs_to_brick.json | 30 ++- .../recipe/peridotite_raw_wall_polishing.json | 24 +- .../recipe/peridotite_raw_walls_to_brick.json | 30 ++- .../recipe/peridotite_relief_axe.json | 52 ++--- .../recipe/peridotite_relief_blank.json | 32 ++- .../recipe/peridotite_relief_cross.json | 32 ++- .../recipe/peridotite_relief_hammer.json | 40 ++-- .../recipe/peridotite_relief_hoe.json | 52 ++--- .../recipe/peridotite_relief_horizontal.json | 28 ++- .../recipe/peridotite_relief_i.json | 32 ++- .../recipe/peridotite_relief_left.json | 32 ++- .../recipe/peridotite_relief_pickaxe.json | 52 ++--- .../recipe/peridotite_relief_plus.json | 32 ++- .../recipe/peridotite_relief_right.json | 24 +- .../recipe/peridotite_relief_sword.json | 52 ++--- .../recipe/peridotite_relief_vertical.json | 32 ++- .../mineralogy/recipe/peridotite_slab.json | 28 ++- .../mineralogy/recipe/peridotite_smooth.json | 24 +- .../recipe/peridotite_smooth_brick.json | 30 ++- .../peridotite_smooth_brick_furnace.json | 36 ++- .../recipe/peridotite_smooth_brick_slab.json | 28 ++- .../peridotite_smooth_brick_stairs.json | 32 ++- .../recipe/peridotite_smooth_brick_wall.json | 30 ++- .../recipe/peridotite_smooth_furnace.json | 36 ++- .../recipe/peridotite_smooth_slab.json | 28 ++- .../recipe/peridotite_smooth_stairs.json | 32 ++- .../recipe/peridotite_smooth_wall.json | 30 ++- .../mineralogy/recipe/peridotite_stairs.json | 32 ++- .../recipe/peridotite_to_stone.json | 18 +- .../mineralogy/recipe/peridotite_wall.json | 30 ++- .../mineralogy/recipe/phosphorous_block.json | 44 ++-- .../mineralogy/recipe/phosphorous_dust.json | 32 ++- .../mineralogy/recipe/phyllite_brick.json | 30 ++- .../phyllite_brick_block_polishing.json | 24 +- .../recipe/phyllite_brick_furnace.json | 36 ++- .../recipe/phyllite_brick_slab.json | 28 ++- .../recipe/phyllite_brick_slab_polishing.json | 24 +- .../phyllite_brick_slab_recombination.json | 24 +- .../recipe/phyllite_brick_stairs.json | 32 ++- .../phyllite_brick_stairs_polishing.json | 24 +- .../recipe/phyllite_brick_wall.json | 30 ++- .../recipe/phyllite_brick_wall_polishing.json | 24 +- .../recipe/phyllite_cobblestone.json | 32 +-- .../mineralogy/recipe/phyllite_furnace.json | 36 ++- ...ite_polished_brick_slab_recombination.json | 24 +- .../phyllite_polished_slab_recombination.json | 24 +- .../phyllite_polished_slabs_to_brick.json | 30 ++- .../phyllite_polished_stairs_to_brick.json | 30 ++- .../phyllite_polished_walls_to_brick.json | 30 ++- .../recipe/phyllite_raw_slab_polishing.json | 24 +- .../phyllite_raw_slab_recombination.json | 24 +- .../recipe/phyllite_raw_slabs_to_brick.json | 30 ++- .../recipe/phyllite_raw_stairs_polishing.json | 24 +- .../recipe/phyllite_raw_stairs_to_brick.json | 30 ++- .../recipe/phyllite_raw_wall_polishing.json | 24 +- .../recipe/phyllite_raw_walls_to_brick.json | 30 ++- .../recipe/phyllite_relief_axe.json | 52 ++--- .../recipe/phyllite_relief_blank.json | 32 ++- .../recipe/phyllite_relief_cross.json | 32 ++- .../recipe/phyllite_relief_hammer.json | 40 ++-- .../recipe/phyllite_relief_hoe.json | 52 ++--- .../recipe/phyllite_relief_horizontal.json | 28 ++- .../mineralogy/recipe/phyllite_relief_i.json | 32 ++- .../recipe/phyllite_relief_left.json | 32 ++- .../recipe/phyllite_relief_pickaxe.json | 52 ++--- .../recipe/phyllite_relief_plus.json | 32 ++- .../recipe/phyllite_relief_right.json | 24 +- .../recipe/phyllite_relief_sword.json | 52 ++--- .../recipe/phyllite_relief_vertical.json | 32 ++- .../data/mineralogy/recipe/phyllite_slab.json | 28 ++- .../mineralogy/recipe/phyllite_smooth.json | 24 +- .../recipe/phyllite_smooth_brick.json | 30 ++- .../recipe/phyllite_smooth_brick_furnace.json | 36 ++- .../recipe/phyllite_smooth_brick_slab.json | 28 ++- .../recipe/phyllite_smooth_brick_stairs.json | 32 ++- .../recipe/phyllite_smooth_brick_wall.json | 30 ++- .../recipe/phyllite_smooth_furnace.json | 36 ++- .../recipe/phyllite_smooth_slab.json | 28 ++- .../recipe/phyllite_smooth_stairs.json | 32 ++- .../recipe/phyllite_smooth_wall.json | 30 ++- .../mineralogy/recipe/phyllite_stairs.json | 32 ++- .../mineralogy/recipe/phyllite_to_stone.json | 18 +- .../data/mineralogy/recipe/phyllite_wall.json | 30 ++- .../mineralogy/recipe/quartzite_brick.json | 30 ++- .../quartzite_brick_block_polishing.json | 24 +- .../recipe/quartzite_brick_furnace.json | 36 ++- .../recipe/quartzite_brick_slab.json | 28 ++- .../quartzite_brick_slab_polishing.json | 24 +- .../quartzite_brick_slab_recombination.json | 24 +- .../recipe/quartzite_brick_stairs.json | 32 ++- .../quartzite_brick_stairs_polishing.json | 24 +- .../recipe/quartzite_brick_wall.json | 30 ++- .../quartzite_brick_wall_polishing.json | 24 +- .../recipe/quartzite_cobblestone.json | 32 +-- .../mineralogy/recipe/quartzite_furnace.json | 36 ++- ...ite_polished_brick_slab_recombination.json | 24 +- ...quartzite_polished_slab_recombination.json | 24 +- .../quartzite_polished_slabs_to_brick.json | 30 ++- .../quartzite_polished_stairs_to_brick.json | 30 ++- .../quartzite_polished_walls_to_brick.json | 30 ++- .../recipe/quartzite_raw_slab_polishing.json | 24 +- .../quartzite_raw_slab_recombination.json | 24 +- .../recipe/quartzite_raw_slabs_to_brick.json | 30 ++- .../quartzite_raw_stairs_polishing.json | 24 +- .../recipe/quartzite_raw_stairs_to_brick.json | 30 ++- .../recipe/quartzite_raw_wall_polishing.json | 24 +- .../recipe/quartzite_raw_walls_to_brick.json | 30 ++- .../recipe/quartzite_relief_axe.json | 52 ++--- .../recipe/quartzite_relief_blank.json | 32 ++- .../recipe/quartzite_relief_cross.json | 32 ++- .../recipe/quartzite_relief_hammer.json | 40 ++-- .../recipe/quartzite_relief_hoe.json | 52 ++--- .../recipe/quartzite_relief_horizontal.json | 28 ++- .../mineralogy/recipe/quartzite_relief_i.json | 32 ++- .../recipe/quartzite_relief_left.json | 32 ++- .../recipe/quartzite_relief_pickaxe.json | 52 ++--- .../recipe/quartzite_relief_plus.json | 32 ++- .../recipe/quartzite_relief_right.json | 24 +- .../recipe/quartzite_relief_sword.json | 52 ++--- .../recipe/quartzite_relief_vertical.json | 32 ++- .../mineralogy/recipe/quartzite_slab.json | 28 ++- .../mineralogy/recipe/quartzite_smooth.json | 24 +- .../recipe/quartzite_smooth_brick.json | 30 ++- .../quartzite_smooth_brick_furnace.json | 36 ++- .../recipe/quartzite_smooth_brick_slab.json | 28 ++- .../recipe/quartzite_smooth_brick_stairs.json | 32 ++- .../recipe/quartzite_smooth_brick_wall.json | 30 ++- .../recipe/quartzite_smooth_furnace.json | 36 ++- .../recipe/quartzite_smooth_slab.json | 28 ++- .../recipe/quartzite_smooth_stairs.json | 32 ++- .../recipe/quartzite_smooth_wall.json | 30 ++- .../mineralogy/recipe/quartzite_stairs.json | 32 ++- .../mineralogy/recipe/quartzite_to_stone.json | 18 +- .../mineralogy/recipe/quartzite_wall.json | 30 ++- .../mineralogy/recipe/rhyolite_brick.json | 30 ++- .../rhyolite_brick_block_polishing.json | 24 +- .../recipe/rhyolite_brick_furnace.json | 36 ++- .../recipe/rhyolite_brick_slab.json | 28 ++- .../recipe/rhyolite_brick_slab_polishing.json | 24 +- .../rhyolite_brick_slab_recombination.json | 24 +- .../recipe/rhyolite_brick_stairs.json | 32 ++- .../rhyolite_brick_stairs_polishing.json | 24 +- .../recipe/rhyolite_brick_wall.json | 30 ++- .../recipe/rhyolite_brick_wall_polishing.json | 24 +- .../recipe/rhyolite_cobblestone.json | 32 +-- .../mineralogy/recipe/rhyolite_furnace.json | 36 ++- ...ite_polished_brick_slab_recombination.json | 24 +- .../rhyolite_polished_slab_recombination.json | 24 +- .../rhyolite_polished_slabs_to_brick.json | 30 ++- .../rhyolite_polished_stairs_to_brick.json | 30 ++- .../rhyolite_polished_walls_to_brick.json | 30 ++- .../recipe/rhyolite_raw_slab_polishing.json | 24 +- .../rhyolite_raw_slab_recombination.json | 24 +- .../recipe/rhyolite_raw_slabs_to_brick.json | 30 ++- .../recipe/rhyolite_raw_stairs_polishing.json | 24 +- .../recipe/rhyolite_raw_stairs_to_brick.json | 30 ++- .../recipe/rhyolite_raw_wall_polishing.json | 24 +- .../recipe/rhyolite_raw_walls_to_brick.json | 30 ++- .../recipe/rhyolite_relief_axe.json | 52 ++--- .../recipe/rhyolite_relief_blank.json | 32 ++- .../recipe/rhyolite_relief_cross.json | 32 ++- .../recipe/rhyolite_relief_hammer.json | 40 ++-- .../recipe/rhyolite_relief_hoe.json | 52 ++--- .../recipe/rhyolite_relief_horizontal.json | 28 ++- .../mineralogy/recipe/rhyolite_relief_i.json | 32 ++- .../recipe/rhyolite_relief_left.json | 32 ++- .../recipe/rhyolite_relief_pickaxe.json | 52 ++--- .../recipe/rhyolite_relief_plus.json | 32 ++- .../recipe/rhyolite_relief_right.json | 24 +- .../recipe/rhyolite_relief_sword.json | 52 ++--- .../recipe/rhyolite_relief_vertical.json | 32 ++- .../data/mineralogy/recipe/rhyolite_slab.json | 28 ++- .../mineralogy/recipe/rhyolite_smooth.json | 24 +- .../recipe/rhyolite_smooth_brick.json | 30 ++- .../recipe/rhyolite_smooth_brick_furnace.json | 36 ++- .../recipe/rhyolite_smooth_brick_slab.json | 28 ++- .../recipe/rhyolite_smooth_brick_stairs.json | 32 ++- .../recipe/rhyolite_smooth_brick_wall.json | 30 ++- .../recipe/rhyolite_smooth_furnace.json | 36 ++- .../recipe/rhyolite_smooth_slab.json | 28 ++- .../recipe/rhyolite_smooth_stairs.json | 32 ++- .../recipe/rhyolite_smooth_wall.json | 30 ++- .../mineralogy/recipe/rhyolite_stairs.json | 32 ++- .../mineralogy/recipe/rhyolite_to_stone.json | 18 +- .../data/mineralogy/recipe/rhyolite_wall.json | 30 ++- .../data/mineralogy/recipe/rock_salt.json | 30 ++- .../mineralogy/recipe/rock_salt_brick.json | 30 ++- .../rock_salt_brick_block_polishing.json | 24 +- .../recipe/rock_salt_brick_furnace.json | 36 ++- .../recipe/rock_salt_brick_slab.json | 28 ++- .../rock_salt_brick_slab_polishing.json | 24 +- .../rock_salt_brick_slab_recombination.json | 24 +- .../recipe/rock_salt_brick_stairs.json | 32 ++- .../rock_salt_brick_stairs_polishing.json | 24 +- .../recipe/rock_salt_brick_wall.json | 30 ++- .../rock_salt_brick_wall_polishing.json | 24 +- .../recipe/rock_salt_cobblestone.json | 32 +-- .../mineralogy/recipe/rock_salt_dust.json | 20 +- .../mineralogy/recipe/rock_salt_furnace.json | 36 ++- ...alt_polished_brick_slab_recombination.json | 24 +- ...rock_salt_polished_slab_recombination.json | 24 +- .../rock_salt_polished_slabs_to_brick.json | 30 ++- .../rock_salt_polished_stairs_to_brick.json | 30 ++- .../rock_salt_polished_walls_to_brick.json | 30 ++- .../recipe/rock_salt_raw_slab_polishing.json | 24 +- .../rock_salt_raw_slab_recombination.json | 24 +- .../recipe/rock_salt_raw_slabs_to_brick.json | 30 ++- .../rock_salt_raw_stairs_polishing.json | 24 +- .../recipe/rock_salt_raw_stairs_to_brick.json | 30 ++- .../recipe/rock_salt_raw_wall_polishing.json | 24 +- .../recipe/rock_salt_raw_walls_to_brick.json | 30 ++- .../recipe/rock_salt_relief_axe.json | 52 ++--- .../recipe/rock_salt_relief_blank.json | 32 ++- .../recipe/rock_salt_relief_cross.json | 32 ++- .../recipe/rock_salt_relief_hammer.json | 40 ++-- .../recipe/rock_salt_relief_hoe.json | 52 ++--- .../recipe/rock_salt_relief_horizontal.json | 28 ++- .../mineralogy/recipe/rock_salt_relief_i.json | 32 ++- .../recipe/rock_salt_relief_left.json | 32 ++- .../recipe/rock_salt_relief_pickaxe.json | 52 ++--- .../recipe/rock_salt_relief_plus.json | 32 ++- .../recipe/rock_salt_relief_right.json | 24 +- .../recipe/rock_salt_relief_sword.json | 52 ++--- .../recipe/rock_salt_relief_vertical.json | 32 ++- .../mineralogy/recipe/rock_salt_slab.json | 28 ++- .../mineralogy/recipe/rock_salt_smooth.json | 24 +- .../recipe/rock_salt_smooth_brick.json | 30 ++- .../rock_salt_smooth_brick_furnace.json | 36 ++- .../recipe/rock_salt_smooth_brick_slab.json | 28 ++- .../recipe/rock_salt_smooth_brick_stairs.json | 32 ++- .../recipe/rock_salt_smooth_brick_wall.json | 30 ++- .../recipe/rock_salt_smooth_furnace.json | 36 ++- .../recipe/rock_salt_smooth_slab.json | 28 ++- .../recipe/rock_salt_smooth_stairs.json | 32 ++- .../recipe/rock_salt_smooth_wall.json | 30 ++- .../mineralogy/recipe/rock_salt_stairs.json | 32 ++- .../mineralogy/recipe/rock_salt_to_stone.json | 18 +- .../mineralogy/recipe/rock_salt_wall.json | 30 ++- .../data/mineralogy/recipe/rocksaltlamp.json | 40 ++-- .../mineralogy/recipe/rocksaltstreetlamp.json | 48 ++-- .../data/mineralogy/recipe/schist_brick.json | 30 ++- .../recipe/schist_brick_block_polishing.json | 24 +- .../recipe/schist_brick_furnace.json | 36 ++- .../mineralogy/recipe/schist_brick_slab.json | 28 ++- .../recipe/schist_brick_slab_polishing.json | 24 +- .../schist_brick_slab_recombination.json | 24 +- .../recipe/schist_brick_stairs.json | 32 ++- .../recipe/schist_brick_stairs_polishing.json | 24 +- .../mineralogy/recipe/schist_brick_wall.json | 30 ++- .../recipe/schist_brick_wall_polishing.json | 24 +- .../mineralogy/recipe/schist_cobblestone.json | 32 +-- .../mineralogy/recipe/schist_furnace.json | 36 ++- ...ist_polished_brick_slab_recombination.json | 24 +- .../schist_polished_slab_recombination.json | 24 +- .../schist_polished_slabs_to_brick.json | 30 ++- .../schist_polished_stairs_to_brick.json | 30 ++- .../schist_polished_walls_to_brick.json | 30 ++- .../recipe/schist_raw_slab_polishing.json | 24 +- .../recipe/schist_raw_slab_recombination.json | 24 +- .../recipe/schist_raw_slabs_to_brick.json | 30 ++- .../recipe/schist_raw_stairs_polishing.json | 24 +- .../recipe/schist_raw_stairs_to_brick.json | 30 ++- .../recipe/schist_raw_wall_polishing.json | 24 +- .../recipe/schist_raw_walls_to_brick.json | 30 ++- .../mineralogy/recipe/schist_relief_axe.json | 52 ++--- .../recipe/schist_relief_blank.json | 32 ++- .../recipe/schist_relief_cross.json | 32 ++- .../recipe/schist_relief_hammer.json | 40 ++-- .../mineralogy/recipe/schist_relief_hoe.json | 52 ++--- .../recipe/schist_relief_horizontal.json | 28 ++- .../mineralogy/recipe/schist_relief_i.json | 32 ++- .../mineralogy/recipe/schist_relief_left.json | 32 ++- .../recipe/schist_relief_pickaxe.json | 52 ++--- .../mineralogy/recipe/schist_relief_plus.json | 32 ++- .../recipe/schist_relief_right.json | 24 +- .../recipe/schist_relief_sword.json | 52 ++--- .../recipe/schist_relief_vertical.json | 32 ++- .../data/mineralogy/recipe/schist_slab.json | 28 ++- .../data/mineralogy/recipe/schist_smooth.json | 24 +- .../recipe/schist_smooth_brick.json | 30 ++- .../recipe/schist_smooth_brick_furnace.json | 36 ++- .../recipe/schist_smooth_brick_slab.json | 28 ++- .../recipe/schist_smooth_brick_stairs.json | 32 ++- .../recipe/schist_smooth_brick_wall.json | 30 ++- .../recipe/schist_smooth_furnace.json | 36 ++- .../mineralogy/recipe/schist_smooth_slab.json | 28 ++- .../recipe/schist_smooth_stairs.json | 32 ++- .../mineralogy/recipe/schist_smooth_wall.json | 30 ++- .../data/mineralogy/recipe/schist_stairs.json | 32 ++- .../mineralogy/recipe/schist_to_stone.json | 18 +- .../data/mineralogy/recipe/schist_wall.json | 30 ++- .../data/mineralogy/recipe/scoria_brick.json | 30 ++- .../recipe/scoria_brick_block_polishing.json | 24 +- .../recipe/scoria_brick_furnace.json | 36 ++- .../mineralogy/recipe/scoria_brick_slab.json | 28 ++- .../recipe/scoria_brick_slab_polishing.json | 24 +- .../scoria_brick_slab_recombination.json | 24 +- .../recipe/scoria_brick_stairs.json | 32 ++- .../recipe/scoria_brick_stairs_polishing.json | 24 +- .../mineralogy/recipe/scoria_brick_wall.json | 30 ++- .../recipe/scoria_brick_wall_polishing.json | 24 +- .../mineralogy/recipe/scoria_cobblestone.json | 32 +-- .../mineralogy/recipe/scoria_furnace.json | 36 ++- ...ria_polished_brick_slab_recombination.json | 24 +- .../scoria_polished_slab_recombination.json | 24 +- .../scoria_polished_slabs_to_brick.json | 30 ++- .../scoria_polished_stairs_to_brick.json | 30 ++- .../scoria_polished_walls_to_brick.json | 30 ++- .../recipe/scoria_raw_slab_polishing.json | 24 +- .../recipe/scoria_raw_slab_recombination.json | 24 +- .../recipe/scoria_raw_slabs_to_brick.json | 30 ++- .../recipe/scoria_raw_stairs_polishing.json | 24 +- .../recipe/scoria_raw_stairs_to_brick.json | 30 ++- .../recipe/scoria_raw_wall_polishing.json | 24 +- .../recipe/scoria_raw_walls_to_brick.json | 30 ++- .../mineralogy/recipe/scoria_relief_axe.json | 52 ++--- .../recipe/scoria_relief_blank.json | 32 ++- .../recipe/scoria_relief_cross.json | 32 ++- .../recipe/scoria_relief_hammer.json | 40 ++-- .../mineralogy/recipe/scoria_relief_hoe.json | 52 ++--- .../recipe/scoria_relief_horizontal.json | 28 ++- .../mineralogy/recipe/scoria_relief_i.json | 32 ++- .../mineralogy/recipe/scoria_relief_left.json | 32 ++- .../recipe/scoria_relief_pickaxe.json | 52 ++--- .../mineralogy/recipe/scoria_relief_plus.json | 32 ++- .../recipe/scoria_relief_right.json | 24 +- .../recipe/scoria_relief_sword.json | 52 ++--- .../recipe/scoria_relief_vertical.json | 32 ++- .../data/mineralogy/recipe/scoria_slab.json | 28 ++- .../data/mineralogy/recipe/scoria_smooth.json | 24 +- .../recipe/scoria_smooth_brick.json | 30 ++- .../recipe/scoria_smooth_brick_furnace.json | 36 ++- .../recipe/scoria_smooth_brick_slab.json | 28 ++- .../recipe/scoria_smooth_brick_stairs.json | 32 ++- .../recipe/scoria_smooth_brick_wall.json | 30 ++- .../recipe/scoria_smooth_furnace.json | 36 ++- .../mineralogy/recipe/scoria_smooth_slab.json | 28 ++- .../recipe/scoria_smooth_stairs.json | 32 ++- .../mineralogy/recipe/scoria_smooth_wall.json | 30 ++- .../data/mineralogy/recipe/scoria_stairs.json | 32 ++- .../mineralogy/recipe/scoria_to_stone.json | 18 +- .../data/mineralogy/recipe/scoria_wall.json | 30 ++- .../data/mineralogy/recipe/shale_brick.json | 30 ++- .../recipe/shale_brick_block_polishing.json | 24 +- .../recipe/shale_brick_furnace.json | 36 ++- .../mineralogy/recipe/shale_brick_slab.json | 28 ++- .../recipe/shale_brick_slab_polishing.json | 24 +- .../shale_brick_slab_recombination.json | 24 +- .../mineralogy/recipe/shale_brick_stairs.json | 32 ++- .../recipe/shale_brick_stairs_polishing.json | 24 +- .../mineralogy/recipe/shale_brick_wall.json | 30 ++- .../recipe/shale_brick_wall_polishing.json | 24 +- .../mineralogy/recipe/shale_cobblestone.json | 32 +-- .../data/mineralogy/recipe/shale_furnace.json | 36 ++- ...ale_polished_brick_slab_recombination.json | 24 +- .../shale_polished_slab_recombination.json | 24 +- .../recipe/shale_polished_slabs_to_brick.json | 30 ++- .../shale_polished_stairs_to_brick.json | 30 ++- .../recipe/shale_polished_walls_to_brick.json | 30 ++- .../recipe/shale_raw_slab_polishing.json | 24 +- .../recipe/shale_raw_slab_recombination.json | 24 +- .../recipe/shale_raw_slabs_to_brick.json | 30 ++- .../recipe/shale_raw_stairs_polishing.json | 24 +- .../recipe/shale_raw_stairs_to_brick.json | 30 ++- .../recipe/shale_raw_wall_polishing.json | 24 +- .../recipe/shale_raw_walls_to_brick.json | 30 ++- .../mineralogy/recipe/shale_relief_axe.json | 52 ++--- .../mineralogy/recipe/shale_relief_blank.json | 32 ++- .../mineralogy/recipe/shale_relief_cross.json | 32 ++- .../recipe/shale_relief_hammer.json | 40 ++-- .../mineralogy/recipe/shale_relief_hoe.json | 52 ++--- .../recipe/shale_relief_horizontal.json | 28 ++- .../mineralogy/recipe/shale_relief_i.json | 32 ++- .../mineralogy/recipe/shale_relief_left.json | 32 ++- .../recipe/shale_relief_pickaxe.json | 52 ++--- .../mineralogy/recipe/shale_relief_plus.json | 32 ++- .../mineralogy/recipe/shale_relief_right.json | 24 +- .../mineralogy/recipe/shale_relief_sword.json | 52 ++--- .../recipe/shale_relief_vertical.json | 32 ++- .../data/mineralogy/recipe/shale_slab.json | 28 ++- .../data/mineralogy/recipe/shale_smooth.json | 24 +- .../mineralogy/recipe/shale_smooth_brick.json | 30 ++- .../recipe/shale_smooth_brick_furnace.json | 36 ++- .../recipe/shale_smooth_brick_slab.json | 28 ++- .../recipe/shale_smooth_brick_stairs.json | 32 ++- .../recipe/shale_smooth_brick_wall.json | 30 ++- .../recipe/shale_smooth_furnace.json | 36 ++- .../mineralogy/recipe/shale_smooth_slab.json | 28 ++- .../recipe/shale_smooth_stairs.json | 32 ++- .../mineralogy/recipe/shale_smooth_wall.json | 30 ++- .../data/mineralogy/recipe/shale_stairs.json | 32 ++- .../mineralogy/recipe/shale_to_stone.json | 18 +- .../data/mineralogy/recipe/shale_wall.json | 30 ++- .../mineralogy/recipe/siltstone_brick.json | 30 ++- .../siltstone_brick_block_polishing.json | 24 +- .../recipe/siltstone_brick_furnace.json | 36 ++- .../recipe/siltstone_brick_slab.json | 28 ++- .../siltstone_brick_slab_polishing.json | 24 +- .../siltstone_brick_slab_recombination.json | 24 +- .../recipe/siltstone_brick_stairs.json | 32 ++- .../siltstone_brick_stairs_polishing.json | 24 +- .../recipe/siltstone_brick_wall.json | 30 ++- .../siltstone_brick_wall_polishing.json | 24 +- .../recipe/siltstone_cobblestone.json | 32 +-- .../mineralogy/recipe/siltstone_furnace.json | 36 ++- ...one_polished_brick_slab_recombination.json | 24 +- ...siltstone_polished_slab_recombination.json | 24 +- .../siltstone_polished_slabs_to_brick.json | 30 ++- .../siltstone_polished_stairs_to_brick.json | 30 ++- .../siltstone_polished_walls_to_brick.json | 30 ++- .../recipe/siltstone_raw_slab_polishing.json | 24 +- .../siltstone_raw_slab_recombination.json | 24 +- .../recipe/siltstone_raw_slabs_to_brick.json | 30 ++- .../siltstone_raw_stairs_polishing.json | 24 +- .../recipe/siltstone_raw_stairs_to_brick.json | 30 ++- .../recipe/siltstone_raw_wall_polishing.json | 24 +- .../recipe/siltstone_raw_walls_to_brick.json | 30 ++- .../recipe/siltstone_relief_axe.json | 52 ++--- .../recipe/siltstone_relief_blank.json | 32 ++- .../recipe/siltstone_relief_cross.json | 32 ++- .../recipe/siltstone_relief_hammer.json | 40 ++-- .../recipe/siltstone_relief_hoe.json | 52 ++--- .../recipe/siltstone_relief_horizontal.json | 28 ++- .../mineralogy/recipe/siltstone_relief_i.json | 32 ++- .../recipe/siltstone_relief_left.json | 32 ++- .../recipe/siltstone_relief_pickaxe.json | 52 ++--- .../recipe/siltstone_relief_plus.json | 32 ++- .../recipe/siltstone_relief_right.json | 24 +- .../recipe/siltstone_relief_sword.json | 52 ++--- .../recipe/siltstone_relief_vertical.json | 32 ++- .../mineralogy/recipe/siltstone_slab.json | 28 ++- .../mineralogy/recipe/siltstone_smooth.json | 24 +- .../recipe/siltstone_smooth_brick.json | 30 ++- .../siltstone_smooth_brick_furnace.json | 36 ++- .../recipe/siltstone_smooth_brick_slab.json | 28 ++- .../recipe/siltstone_smooth_brick_stairs.json | 32 ++- .../recipe/siltstone_smooth_brick_wall.json | 30 ++- .../recipe/siltstone_smooth_furnace.json | 36 ++- .../recipe/siltstone_smooth_slab.json | 28 ++- .../recipe/siltstone_smooth_stairs.json | 32 ++- .../recipe/siltstone_smooth_wall.json | 30 ++- .../mineralogy/recipe/siltstone_stairs.json | 32 ++- .../mineralogy/recipe/siltstone_to_stone.json | 18 +- .../mineralogy/recipe/siltstone_wall.json | 30 ++- .../data/mineralogy/recipe/slate_brick.json | 30 ++- .../recipe/slate_brick_block_polishing.json | 24 +- .../recipe/slate_brick_furnace.json | 36 ++- .../mineralogy/recipe/slate_brick_slab.json | 28 ++- .../recipe/slate_brick_slab_polishing.json | 24 +- .../slate_brick_slab_recombination.json | 24 +- .../mineralogy/recipe/slate_brick_stairs.json | 32 ++- .../recipe/slate_brick_stairs_polishing.json | 24 +- .../mineralogy/recipe/slate_brick_wall.json | 30 ++- .../recipe/slate_brick_wall_polishing.json | 24 +- .../mineralogy/recipe/slate_cobblestone.json | 32 +-- .../data/mineralogy/recipe/slate_furnace.json | 36 ++- ...ate_polished_brick_slab_recombination.json | 24 +- .../slate_polished_slab_recombination.json | 24 +- .../recipe/slate_polished_slabs_to_brick.json | 30 ++- .../slate_polished_stairs_to_brick.json | 30 ++- .../recipe/slate_polished_walls_to_brick.json | 30 ++- .../recipe/slate_raw_slab_polishing.json | 24 +- .../recipe/slate_raw_slab_recombination.json | 24 +- .../recipe/slate_raw_slabs_to_brick.json | 30 ++- .../recipe/slate_raw_stairs_polishing.json | 24 +- .../recipe/slate_raw_stairs_to_brick.json | 30 ++- .../recipe/slate_raw_wall_polishing.json | 24 +- .../recipe/slate_raw_walls_to_brick.json | 30 ++- .../mineralogy/recipe/slate_relief_axe.json | 52 ++--- .../mineralogy/recipe/slate_relief_blank.json | 32 ++- .../mineralogy/recipe/slate_relief_cross.json | 32 ++- .../recipe/slate_relief_hammer.json | 40 ++-- .../mineralogy/recipe/slate_relief_hoe.json | 52 ++--- .../recipe/slate_relief_horizontal.json | 28 ++- .../mineralogy/recipe/slate_relief_i.json | 32 ++- .../mineralogy/recipe/slate_relief_left.json | 32 ++- .../recipe/slate_relief_pickaxe.json | 52 ++--- .../mineralogy/recipe/slate_relief_plus.json | 32 ++- .../mineralogy/recipe/slate_relief_right.json | 24 +- .../mineralogy/recipe/slate_relief_sword.json | 52 ++--- .../recipe/slate_relief_vertical.json | 32 ++- .../data/mineralogy/recipe/slate_slab.json | 28 ++- .../data/mineralogy/recipe/slate_smooth.json | 24 +- .../mineralogy/recipe/slate_smooth_brick.json | 30 ++- .../recipe/slate_smooth_brick_furnace.json | 36 ++- .../recipe/slate_smooth_brick_slab.json | 28 ++- .../recipe/slate_smooth_brick_stairs.json | 32 ++- .../recipe/slate_smooth_brick_wall.json | 30 ++- .../recipe/slate_smooth_furnace.json | 36 ++- .../mineralogy/recipe/slate_smooth_slab.json | 28 ++- .../recipe/slate_smooth_stairs.json | 32 ++- .../mineralogy/recipe/slate_smooth_wall.json | 30 ++- .../data/mineralogy/recipe/slate_stairs.json | 32 ++- .../mineralogy/recipe/slate_to_stone.json | 18 +- .../data/mineralogy/recipe/slate_wall.json | 30 ++- .../data/mineralogy/recipe/sulfur_block.json | 44 ++-- .../data/mineralogy/recipe/sulfur_dust.json | 32 ++- .../data/mineralogy/recipe/tuff_brick.json | 30 ++- .../recipe/tuff_brick_block_polishing.json | 24 +- .../mineralogy/recipe/tuff_brick_furnace.json | 36 ++- .../mineralogy/recipe/tuff_brick_slab.json | 28 ++- .../recipe/tuff_brick_slab_from_vanilla.json | 20 +- .../recipe/tuff_brick_slab_polishing.json | 24 +- .../recipe/tuff_brick_slab_recombination.json | 24 +- .../recipe/tuff_brick_slab_to_vanilla.json | 20 +- .../mineralogy/recipe/tuff_brick_stairs.json | 32 ++- .../recipe/tuff_brick_stairs_polishing.json | 24 +- .../mineralogy/recipe/tuff_brick_wall.json | 30 ++- .../recipe/tuff_brick_wall_polishing.json | 24 +- .../mineralogy/recipe/tuff_cobblestone.json | 32 +-- .../data/mineralogy/recipe/tuff_furnace.json | 36 ++- ...uff_polished_brick_slab_recombination.json | 24 +- .../tuff_polished_slab_recombination.json | 24 +- .../recipe/tuff_polished_slabs_to_brick.json | 30 ++- .../recipe/tuff_polished_stairs_to_brick.json | 30 ++- .../recipe/tuff_polished_walls_to_brick.json | 30 ++- .../recipe/tuff_raw_slab_polishing.json | 24 +- .../recipe/tuff_raw_slab_recombination.json | 24 +- .../recipe/tuff_raw_slabs_to_brick.json | 30 ++- .../recipe/tuff_raw_stairs_polishing.json | 24 +- .../recipe/tuff_raw_stairs_to_brick.json | 30 ++- .../recipe/tuff_raw_wall_polishing.json | 24 +- .../recipe/tuff_raw_walls_to_brick.json | 30 ++- .../mineralogy/recipe/tuff_relief_axe.json | 52 ++--- .../mineralogy/recipe/tuff_relief_blank.json | 32 ++- .../mineralogy/recipe/tuff_relief_cross.json | 32 ++- .../mineralogy/recipe/tuff_relief_hammer.json | 40 ++-- .../mineralogy/recipe/tuff_relief_hoe.json | 52 ++--- .../recipe/tuff_relief_horizontal.json | 28 ++- .../data/mineralogy/recipe/tuff_relief_i.json | 32 ++- .../mineralogy/recipe/tuff_relief_left.json | 32 ++- .../recipe/tuff_relief_pickaxe.json | 52 ++--- .../mineralogy/recipe/tuff_relief_plus.json | 32 ++- .../mineralogy/recipe/tuff_relief_right.json | 24 +- .../mineralogy/recipe/tuff_relief_sword.json | 52 ++--- .../recipe/tuff_relief_vertical.json | 32 ++- .../data/mineralogy/recipe/tuff_slab.json | 28 ++- .../recipe/tuff_slab_from_vanilla.json | 20 +- .../recipe/tuff_slab_to_vanilla.json | 20 +- .../data/mineralogy/recipe/tuff_smooth.json | 24 +- .../mineralogy/recipe/tuff_smooth_brick.json | 30 ++- .../recipe/tuff_smooth_brick_furnace.json | 36 ++- .../recipe/tuff_smooth_brick_slab.json | 28 ++- .../recipe/tuff_smooth_brick_stairs.json | 32 ++- .../recipe/tuff_smooth_brick_wall.json | 30 ++- .../recipe/tuff_smooth_furnace.json | 36 ++- .../mineralogy/recipe/tuff_smooth_slab.json | 28 ++- .../recipe/tuff_smooth_slab_from_vanilla.json | 20 +- .../recipe/tuff_smooth_slab_to_vanilla.json | 20 +- .../mineralogy/recipe/tuff_smooth_stairs.json | 32 ++- .../mineralogy/recipe/tuff_smooth_wall.json | 30 ++- .../data/mineralogy/recipe/tuff_stairs.json | 32 ++- .../data/mineralogy/recipe/tuff_to_stone.json | 18 +- .../data/mineralogy/recipe/tuff_wall.json | 30 ++- .../tags/block/stones/amphibolite.json | 8 +- .../tags/block/stones/andesite.json | 10 +- .../mineralogy/tags/block/stones/basalt.json | 10 +- .../tags/block/stones/basaltic_glass.json | 8 +- .../tags/block/stones/conglomerate.json | 8 +- .../mineralogy/tags/block/stones/diabase.json | 8 +- .../mineralogy/tags/block/stones/diorite.json | 10 +- .../tags/block/stones/dolomite.json | 8 +- .../mineralogy/tags/block/stones/gabbro.json | 8 +- .../mineralogy/tags/block/stones/gneiss.json | 8 +- .../mineralogy/tags/block/stones/granite.json | 10 +- .../tags/block/stones/hornfels.json | 8 +- .../tags/block/stones/limestone.json | 8 +- .../mineralogy/tags/block/stones/marble.json | 8 +- .../tags/block/stones/novaculite.json | 8 +- .../tags/block/stones/pegmatite.json | 8 +- .../tags/block/stones/peridotite.json | 8 +- .../tags/block/stones/phyllite.json | 8 +- .../tags/block/stones/quartzite.json | 8 +- .../tags/block/stones/rhyolite.json | 8 +- .../tags/block/stones/rock_salt.json | 8 +- .../mineralogy/tags/block/stones/schist.json | 8 +- .../mineralogy/tags/block/stones/scoria.json | 8 +- .../mineralogy/tags/block/stones/shale.json | 8 +- .../tags/block/stones/siltstone.json | 8 +- .../mineralogy/tags/block/stones/slate.json | 8 +- .../mineralogy/tags/block/stones/tuff.json | 10 +- .../tags/item/cobblestone_equivalents.json | 62 ++--- .../tags/item/slabs/amphibolite.json | 8 +- .../tags/item/slabs/amphibolite/brick.json | 8 +- .../tags/item/slabs/amphibolite/smooth.json | 8 +- .../item/slabs/amphibolite/smooth_brick.json | 8 +- .../mineralogy/tags/item/slabs/andesite.json | 10 +- .../tags/item/slabs/andesite/brick.json | 8 +- .../tags/item/slabs/andesite/smooth.json | 10 +- .../item/slabs/andesite/smooth_brick.json | 8 +- .../mineralogy/tags/item/slabs/basalt.json | 8 +- .../tags/item/slabs/basalt/brick.json | 8 +- .../tags/item/slabs/basalt/smooth.json | 8 +- .../tags/item/slabs/basalt/smooth_brick.json | 8 +- .../tags/item/slabs/basaltic_glass.json | 8 +- .../tags/item/slabs/basaltic_glass/brick.json | 8 +- .../item/slabs/basaltic_glass/smooth.json | 8 +- .../slabs/basaltic_glass/smooth_brick.json | 8 +- .../tags/item/slabs/conglomerate.json | 8 +- .../tags/item/slabs/conglomerate/brick.json | 8 +- .../tags/item/slabs/conglomerate/smooth.json | 8 +- .../item/slabs/conglomerate/smooth_brick.json | 8 +- .../mineralogy/tags/item/slabs/diabase.json | 8 +- .../tags/item/slabs/diabase/brick.json | 8 +- .../tags/item/slabs/diabase/smooth.json | 8 +- .../tags/item/slabs/diabase/smooth_brick.json | 8 +- .../mineralogy/tags/item/slabs/diorite.json | 10 +- .../tags/item/slabs/diorite/brick.json | 8 +- .../tags/item/slabs/diorite/smooth.json | 10 +- .../tags/item/slabs/diorite/smooth_brick.json | 8 +- .../mineralogy/tags/item/slabs/dolomite.json | 8 +- .../tags/item/slabs/dolomite/brick.json | 8 +- .../tags/item/slabs/dolomite/smooth.json | 8 +- .../item/slabs/dolomite/smooth_brick.json | 8 +- .../mineralogy/tags/item/slabs/gabbro.json | 8 +- .../tags/item/slabs/gabbro/brick.json | 8 +- .../tags/item/slabs/gabbro/smooth.json | 8 +- .../tags/item/slabs/gabbro/smooth_brick.json | 8 +- .../mineralogy/tags/item/slabs/gneiss.json | 8 +- .../tags/item/slabs/gneiss/brick.json | 8 +- .../tags/item/slabs/gneiss/smooth.json | 8 +- .../tags/item/slabs/gneiss/smooth_brick.json | 8 +- .../mineralogy/tags/item/slabs/granite.json | 10 +- .../tags/item/slabs/granite/brick.json | 8 +- .../tags/item/slabs/granite/smooth.json | 10 +- .../tags/item/slabs/granite/smooth_brick.json | 8 +- .../mineralogy/tags/item/slabs/hornfels.json | 8 +- .../tags/item/slabs/hornfels/brick.json | 8 +- .../tags/item/slabs/hornfels/smooth.json | 8 +- .../item/slabs/hornfels/smooth_brick.json | 8 +- .../mineralogy/tags/item/slabs/limestone.json | 8 +- .../tags/item/slabs/limestone/brick.json | 8 +- .../tags/item/slabs/limestone/smooth.json | 8 +- .../item/slabs/limestone/smooth_brick.json | 8 +- .../mineralogy/tags/item/slabs/marble.json | 8 +- .../tags/item/slabs/marble/brick.json | 8 +- .../tags/item/slabs/marble/smooth.json | 8 +- .../tags/item/slabs/marble/smooth_brick.json | 8 +- .../tags/item/slabs/novaculite.json | 8 +- .../tags/item/slabs/novaculite/brick.json | 8 +- .../tags/item/slabs/novaculite/smooth.json | 8 +- .../item/slabs/novaculite/smooth_brick.json | 8 +- .../mineralogy/tags/item/slabs/pegmatite.json | 8 +- .../tags/item/slabs/pegmatite/brick.json | 8 +- .../tags/item/slabs/pegmatite/smooth.json | 8 +- .../item/slabs/pegmatite/smooth_brick.json | 8 +- .../tags/item/slabs/peridotite.json | 8 +- .../tags/item/slabs/peridotite/brick.json | 8 +- .../tags/item/slabs/peridotite/smooth.json | 8 +- .../item/slabs/peridotite/smooth_brick.json | 8 +- .../mineralogy/tags/item/slabs/phyllite.json | 8 +- .../tags/item/slabs/phyllite/brick.json | 8 +- .../tags/item/slabs/phyllite/smooth.json | 8 +- .../item/slabs/phyllite/smooth_brick.json | 8 +- .../mineralogy/tags/item/slabs/quartzite.json | 8 +- .../tags/item/slabs/quartzite/brick.json | 8 +- .../tags/item/slabs/quartzite/smooth.json | 8 +- .../item/slabs/quartzite/smooth_brick.json | 8 +- .../mineralogy/tags/item/slabs/rhyolite.json | 8 +- .../tags/item/slabs/rhyolite/brick.json | 8 +- .../tags/item/slabs/rhyolite/smooth.json | 8 +- .../item/slabs/rhyolite/smooth_brick.json | 8 +- .../mineralogy/tags/item/slabs/rock_salt.json | 8 +- .../tags/item/slabs/rock_salt/brick.json | 8 +- .../tags/item/slabs/rock_salt/smooth.json | 8 +- .../item/slabs/rock_salt/smooth_brick.json | 8 +- .../mineralogy/tags/item/slabs/schist.json | 8 +- .../tags/item/slabs/schist/brick.json | 8 +- .../tags/item/slabs/schist/smooth.json | 8 +- .../tags/item/slabs/schist/smooth_brick.json | 8 +- .../mineralogy/tags/item/slabs/scoria.json | 8 +- .../tags/item/slabs/scoria/brick.json | 8 +- .../tags/item/slabs/scoria/smooth.json | 8 +- .../tags/item/slabs/scoria/smooth_brick.json | 8 +- .../mineralogy/tags/item/slabs/shale.json | 8 +- .../tags/item/slabs/shale/brick.json | 8 +- .../tags/item/slabs/shale/smooth.json | 8 +- .../tags/item/slabs/shale/smooth_brick.json | 8 +- .../mineralogy/tags/item/slabs/siltstone.json | 8 +- .../tags/item/slabs/siltstone/brick.json | 8 +- .../tags/item/slabs/siltstone/smooth.json | 8 +- .../item/slabs/siltstone/smooth_brick.json | 8 +- .../mineralogy/tags/item/slabs/slate.json | 8 +- .../tags/item/slabs/slate/brick.json | 8 +- .../tags/item/slabs/slate/smooth.json | 8 +- .../tags/item/slabs/slate/smooth_brick.json | 8 +- .../data/mineralogy/tags/item/slabs/tuff.json | 10 +- .../tags/item/slabs/tuff/brick.json | 10 +- .../tags/item/slabs/tuff/smooth.json | 10 +- .../tags/item/slabs/tuff/smooth_brick.json | 8 +- .../tags/item/stone_crafting_materials.json | 62 ++--- .../tags/item/stone_tool_materials.json | 62 ++--- .../tags/item/stones/amphibolite.json | 8 +- .../tags/item/stones/amphibolite/brick.json | 8 +- .../tags/item/stones/amphibolite/smooth.json | 8 +- .../item/stones/amphibolite/smooth_brick.json | 8 +- .../mineralogy/tags/item/stones/andesite.json | 10 +- .../tags/item/stones/andesite/brick.json | 8 +- .../tags/item/stones/andesite/smooth.json | 10 +- .../item/stones/andesite/smooth_brick.json | 8 +- .../mineralogy/tags/item/stones/basalt.json | 10 +- .../tags/item/stones/basalt/brick.json | 8 +- .../tags/item/stones/basalt/smooth.json | 12 +- .../tags/item/stones/basalt/smooth_brick.json | 8 +- .../tags/item/stones/basaltic_glass.json | 8 +- .../item/stones/basaltic_glass/brick.json | 8 +- .../item/stones/basaltic_glass/smooth.json | 8 +- .../stones/basaltic_glass/smooth_brick.json | 8 +- .../tags/item/stones/conglomerate.json | 8 +- .../tags/item/stones/conglomerate/brick.json | 8 +- .../tags/item/stones/conglomerate/smooth.json | 8 +- .../stones/conglomerate/smooth_brick.json | 8 +- .../mineralogy/tags/item/stones/diabase.json | 8 +- .../tags/item/stones/diabase/brick.json | 8 +- .../tags/item/stones/diabase/smooth.json | 8 +- .../item/stones/diabase/smooth_brick.json | 8 +- .../mineralogy/tags/item/stones/diorite.json | 10 +- .../tags/item/stones/diorite/brick.json | 8 +- .../tags/item/stones/diorite/smooth.json | 10 +- .../item/stones/diorite/smooth_brick.json | 8 +- .../mineralogy/tags/item/stones/dolomite.json | 8 +- .../tags/item/stones/dolomite/brick.json | 8 +- .../tags/item/stones/dolomite/smooth.json | 8 +- .../item/stones/dolomite/smooth_brick.json | 8 +- .../mineralogy/tags/item/stones/gabbro.json | 8 +- .../tags/item/stones/gabbro/brick.json | 8 +- .../tags/item/stones/gabbro/smooth.json | 8 +- .../tags/item/stones/gabbro/smooth_brick.json | 8 +- .../mineralogy/tags/item/stones/gneiss.json | 8 +- .../tags/item/stones/gneiss/brick.json | 8 +- .../tags/item/stones/gneiss/smooth.json | 8 +- .../tags/item/stones/gneiss/smooth_brick.json | 8 +- .../mineralogy/tags/item/stones/granite.json | 10 +- .../tags/item/stones/granite/brick.json | 8 +- .../tags/item/stones/granite/smooth.json | 10 +- .../item/stones/granite/smooth_brick.json | 8 +- .../mineralogy/tags/item/stones/hornfels.json | 8 +- .../tags/item/stones/hornfels/brick.json | 8 +- .../tags/item/stones/hornfels/smooth.json | 8 +- .../item/stones/hornfels/smooth_brick.json | 8 +- .../tags/item/stones/limestone.json | 8 +- .../tags/item/stones/limestone/brick.json | 8 +- .../tags/item/stones/limestone/smooth.json | 8 +- .../item/stones/limestone/smooth_brick.json | 8 +- .../mineralogy/tags/item/stones/marble.json | 8 +- .../tags/item/stones/marble/brick.json | 8 +- .../tags/item/stones/marble/smooth.json | 8 +- .../tags/item/stones/marble/smooth_brick.json | 8 +- .../tags/item/stones/novaculite.json | 8 +- .../tags/item/stones/novaculite/brick.json | 8 +- .../tags/item/stones/novaculite/smooth.json | 8 +- .../item/stones/novaculite/smooth_brick.json | 8 +- .../tags/item/stones/pegmatite.json | 8 +- .../tags/item/stones/pegmatite/brick.json | 8 +- .../tags/item/stones/pegmatite/smooth.json | 8 +- .../item/stones/pegmatite/smooth_brick.json | 8 +- .../tags/item/stones/peridotite.json | 8 +- .../tags/item/stones/peridotite/brick.json | 8 +- .../tags/item/stones/peridotite/smooth.json | 8 +- .../item/stones/peridotite/smooth_brick.json | 8 +- .../mineralogy/tags/item/stones/phyllite.json | 8 +- .../tags/item/stones/phyllite/brick.json | 8 +- .../tags/item/stones/phyllite/smooth.json | 8 +- .../item/stones/phyllite/smooth_brick.json | 8 +- .../tags/item/stones/quartzite.json | 8 +- .../tags/item/stones/quartzite/brick.json | 8 +- .../tags/item/stones/quartzite/smooth.json | 8 +- .../item/stones/quartzite/smooth_brick.json | 8 +- .../mineralogy/tags/item/stones/rhyolite.json | 8 +- .../tags/item/stones/rhyolite/brick.json | 8 +- .../tags/item/stones/rhyolite/smooth.json | 8 +- .../item/stones/rhyolite/smooth_brick.json | 8 +- .../tags/item/stones/rock_salt.json | 8 +- .../tags/item/stones/rock_salt/brick.json | 8 +- .../tags/item/stones/rock_salt/smooth.json | 8 +- .../item/stones/rock_salt/smooth_brick.json | 8 +- .../mineralogy/tags/item/stones/schist.json | 8 +- .../tags/item/stones/schist/brick.json | 8 +- .../tags/item/stones/schist/smooth.json | 8 +- .../tags/item/stones/schist/smooth_brick.json | 8 +- .../mineralogy/tags/item/stones/scoria.json | 8 +- .../tags/item/stones/scoria/brick.json | 8 +- .../tags/item/stones/scoria/smooth.json | 8 +- .../tags/item/stones/scoria/smooth_brick.json | 8 +- .../mineralogy/tags/item/stones/shale.json | 8 +- .../tags/item/stones/shale/brick.json | 8 +- .../tags/item/stones/shale/smooth.json | 8 +- .../tags/item/stones/shale/smooth_brick.json | 8 +- .../tags/item/stones/siltstone.json | 8 +- .../tags/item/stones/siltstone/brick.json | 8 +- .../tags/item/stones/siltstone/smooth.json | 8 +- .../item/stones/siltstone/smooth_brick.json | 8 +- .../mineralogy/tags/item/stones/slate.json | 8 +- .../tags/item/stones/slate/brick.json | 8 +- .../tags/item/stones/slate/smooth.json | 8 +- .../tags/item/stones/slate/smooth_brick.json | 8 +- .../mineralogy/tags/item/stones/tuff.json | 10 +- .../tags/item/stones/tuff/brick.json | 10 +- .../tags/item/stones/tuff/smooth.json | 10 +- .../tags/item/stones/tuff/smooth_brick.json | 8 +- src/main/resources/mineralogy.mixins.json | 18 ++ src/main/resources/pack.mcmeta | 6 +- .../HistoricalOilCompatibilityProbe.java | 32 ++- .../resources/META-INF/neoforge.mods.toml | 6 +- .../fixture/RecipeIntegrationProbe.java | 160 ++++++++----- .../recipeprobe/RegionPaletteAudit.java | 44 ++-- .../resources/META-INF/neoforge.mods.toml | 6 +- .../ConfigurationAndMigrationTest.java | 10 +- .../mc/mineralogy/GameplayContractTest.java | 85 ++++--- .../mineralogy/LocalizationQualityTest.java | 2 +- .../mineralogy/NativeRecipeManagerTest.java | 4 +- .../mc/mineralogy/ResourceContractTest.java | 220 ++++++++++-------- .../mc/mineralogy/WorkflowContractTest.java | 20 +- .../compat/CobblestoneTagPolicyTest.java | 72 ++---- 4573 files changed, 77730 insertions(+), 78595 deletions(-) create mode 100644 src/main/java/zone/moddev/mc/mineralogy/init/RegistrationProperties.java create mode 100644 src/main/java/zone/moddev/mc/mineralogy/mixin/BlockStateDataAccessor.java create mode 100644 src/main/java/zone/moddev/mc/mineralogy/mixin/BlockStateDataMixin.java create mode 100644 src/main/java/zone/moddev/mc/mineralogy/mixin/CommonHooksMixin.java create mode 100644 src/main/java/zone/moddev/mc/mineralogy/mixin/OreSpawnEarlyTagCompatibilityMixin.java create mode 100644 src/main/java/zone/moddev/mc/mineralogy/mixin/ReloadableServerResourcesMixin.java create mode 100644 src/main/java/zone/moddev/mc/mineralogy/mixin/SimpleRegionStorageMixin.java create mode 100644 src/main/java/zone/moddev/mc/mineralogy/mixin/WorldGenRegionMixin.java delete mode 100644 src/main/resources/META-INF/coremods.json create mode 100644 src/main/resources/assets/mineralogy/items/amphibolite.json create mode 100644 src/main/resources/assets/mineralogy/items/amphibolite_brick.json create mode 100644 src/main/resources/assets/mineralogy/items/amphibolite_brick_furnace.json create mode 100644 src/main/resources/assets/mineralogy/items/amphibolite_brick_slab.json create mode 100644 src/main/resources/assets/mineralogy/items/amphibolite_brick_stairs.json create mode 100644 src/main/resources/assets/mineralogy/items/amphibolite_brick_wall.json create mode 100644 src/main/resources/assets/mineralogy/items/amphibolite_furnace.json create mode 100644 src/main/resources/assets/mineralogy/items/amphibolite_relief_axe.json create mode 100644 src/main/resources/assets/mineralogy/items/amphibolite_relief_blank.json create mode 100644 src/main/resources/assets/mineralogy/items/amphibolite_relief_cross.json create mode 100644 src/main/resources/assets/mineralogy/items/amphibolite_relief_hammer.json create mode 100644 src/main/resources/assets/mineralogy/items/amphibolite_relief_hoe.json create mode 100644 src/main/resources/assets/mineralogy/items/amphibolite_relief_horizontal.json create mode 100644 src/main/resources/assets/mineralogy/items/amphibolite_relief_i.json create mode 100644 src/main/resources/assets/mineralogy/items/amphibolite_relief_left.json create mode 100644 src/main/resources/assets/mineralogy/items/amphibolite_relief_pickaxe.json create mode 100644 src/main/resources/assets/mineralogy/items/amphibolite_relief_plus.json create mode 100644 src/main/resources/assets/mineralogy/items/amphibolite_relief_right.json create mode 100644 src/main/resources/assets/mineralogy/items/amphibolite_relief_sword.json create mode 100644 src/main/resources/assets/mineralogy/items/amphibolite_relief_vertical.json create mode 100644 src/main/resources/assets/mineralogy/items/amphibolite_slab.json create mode 100644 src/main/resources/assets/mineralogy/items/amphibolite_smooth.json create mode 100644 src/main/resources/assets/mineralogy/items/amphibolite_smooth_brick.json create mode 100644 src/main/resources/assets/mineralogy/items/amphibolite_smooth_brick_furnace.json create mode 100644 src/main/resources/assets/mineralogy/items/amphibolite_smooth_brick_slab.json create mode 100644 src/main/resources/assets/mineralogy/items/amphibolite_smooth_brick_stairs.json create mode 100644 src/main/resources/assets/mineralogy/items/amphibolite_smooth_brick_wall.json create mode 100644 src/main/resources/assets/mineralogy/items/amphibolite_smooth_furnace.json create mode 100644 src/main/resources/assets/mineralogy/items/amphibolite_smooth_slab.json create mode 100644 src/main/resources/assets/mineralogy/items/amphibolite_smooth_stairs.json create mode 100644 src/main/resources/assets/mineralogy/items/amphibolite_smooth_wall.json create mode 100644 src/main/resources/assets/mineralogy/items/amphibolite_stairs.json create mode 100644 src/main/resources/assets/mineralogy/items/amphibolite_wall.json create mode 100644 src/main/resources/assets/mineralogy/items/andesite.json create mode 100644 src/main/resources/assets/mineralogy/items/andesite_brick.json create mode 100644 src/main/resources/assets/mineralogy/items/andesite_brick_furnace.json create mode 100644 src/main/resources/assets/mineralogy/items/andesite_brick_slab.json create mode 100644 src/main/resources/assets/mineralogy/items/andesite_brick_stairs.json create mode 100644 src/main/resources/assets/mineralogy/items/andesite_brick_wall.json create mode 100644 src/main/resources/assets/mineralogy/items/andesite_furnace.json create mode 100644 src/main/resources/assets/mineralogy/items/andesite_relief_axe.json create mode 100644 src/main/resources/assets/mineralogy/items/andesite_relief_blank.json create mode 100644 src/main/resources/assets/mineralogy/items/andesite_relief_cross.json create mode 100644 src/main/resources/assets/mineralogy/items/andesite_relief_hammer.json create mode 100644 src/main/resources/assets/mineralogy/items/andesite_relief_hoe.json create mode 100644 src/main/resources/assets/mineralogy/items/andesite_relief_horizontal.json create mode 100644 src/main/resources/assets/mineralogy/items/andesite_relief_i.json create mode 100644 src/main/resources/assets/mineralogy/items/andesite_relief_left.json create mode 100644 src/main/resources/assets/mineralogy/items/andesite_relief_pickaxe.json create mode 100644 src/main/resources/assets/mineralogy/items/andesite_relief_plus.json create mode 100644 src/main/resources/assets/mineralogy/items/andesite_relief_right.json create mode 100644 src/main/resources/assets/mineralogy/items/andesite_relief_sword.json create mode 100644 src/main/resources/assets/mineralogy/items/andesite_relief_vertical.json create mode 100644 src/main/resources/assets/mineralogy/items/andesite_slab.json create mode 100644 src/main/resources/assets/mineralogy/items/andesite_smooth.json create mode 100644 src/main/resources/assets/mineralogy/items/andesite_smooth_brick.json create mode 100644 src/main/resources/assets/mineralogy/items/andesite_smooth_brick_furnace.json create mode 100644 src/main/resources/assets/mineralogy/items/andesite_smooth_brick_slab.json create mode 100644 src/main/resources/assets/mineralogy/items/andesite_smooth_brick_stairs.json create mode 100644 src/main/resources/assets/mineralogy/items/andesite_smooth_brick_wall.json create mode 100644 src/main/resources/assets/mineralogy/items/andesite_smooth_furnace.json create mode 100644 src/main/resources/assets/mineralogy/items/andesite_smooth_slab.json create mode 100644 src/main/resources/assets/mineralogy/items/andesite_smooth_stairs.json create mode 100644 src/main/resources/assets/mineralogy/items/andesite_smooth_wall.json create mode 100644 src/main/resources/assets/mineralogy/items/andesite_stairs.json create mode 100644 src/main/resources/assets/mineralogy/items/andesite_wall.json create mode 100644 src/main/resources/assets/mineralogy/items/basalt.json create mode 100644 src/main/resources/assets/mineralogy/items/basalt_brick.json create mode 100644 src/main/resources/assets/mineralogy/items/basalt_brick_furnace.json create mode 100644 src/main/resources/assets/mineralogy/items/basalt_brick_slab.json create mode 100644 src/main/resources/assets/mineralogy/items/basalt_brick_stairs.json create mode 100644 src/main/resources/assets/mineralogy/items/basalt_brick_wall.json create mode 100644 src/main/resources/assets/mineralogy/items/basalt_furnace.json create mode 100644 src/main/resources/assets/mineralogy/items/basalt_relief_axe.json create mode 100644 src/main/resources/assets/mineralogy/items/basalt_relief_blank.json create mode 100644 src/main/resources/assets/mineralogy/items/basalt_relief_cross.json create mode 100644 src/main/resources/assets/mineralogy/items/basalt_relief_hammer.json create mode 100644 src/main/resources/assets/mineralogy/items/basalt_relief_hoe.json create mode 100644 src/main/resources/assets/mineralogy/items/basalt_relief_horizontal.json create mode 100644 src/main/resources/assets/mineralogy/items/basalt_relief_i.json create mode 100644 src/main/resources/assets/mineralogy/items/basalt_relief_left.json create mode 100644 src/main/resources/assets/mineralogy/items/basalt_relief_pickaxe.json create mode 100644 src/main/resources/assets/mineralogy/items/basalt_relief_plus.json create mode 100644 src/main/resources/assets/mineralogy/items/basalt_relief_right.json create mode 100644 src/main/resources/assets/mineralogy/items/basalt_relief_sword.json create mode 100644 src/main/resources/assets/mineralogy/items/basalt_relief_vertical.json create mode 100644 src/main/resources/assets/mineralogy/items/basalt_slab.json create mode 100644 src/main/resources/assets/mineralogy/items/basalt_smooth.json create mode 100644 src/main/resources/assets/mineralogy/items/basalt_smooth_brick.json create mode 100644 src/main/resources/assets/mineralogy/items/basalt_smooth_brick_furnace.json create mode 100644 src/main/resources/assets/mineralogy/items/basalt_smooth_brick_slab.json create mode 100644 src/main/resources/assets/mineralogy/items/basalt_smooth_brick_stairs.json create mode 100644 src/main/resources/assets/mineralogy/items/basalt_smooth_brick_wall.json create mode 100644 src/main/resources/assets/mineralogy/items/basalt_smooth_furnace.json create mode 100644 src/main/resources/assets/mineralogy/items/basalt_smooth_slab.json create mode 100644 src/main/resources/assets/mineralogy/items/basalt_smooth_stairs.json create mode 100644 src/main/resources/assets/mineralogy/items/basalt_smooth_wall.json create mode 100644 src/main/resources/assets/mineralogy/items/basalt_stairs.json create mode 100644 src/main/resources/assets/mineralogy/items/basalt_wall.json create mode 100644 src/main/resources/assets/mineralogy/items/basaltic_glass.json create mode 100644 src/main/resources/assets/mineralogy/items/basaltic_glass_brick.json create mode 100644 src/main/resources/assets/mineralogy/items/basaltic_glass_brick_furnace.json create mode 100644 src/main/resources/assets/mineralogy/items/basaltic_glass_brick_slab.json create mode 100644 src/main/resources/assets/mineralogy/items/basaltic_glass_brick_stairs.json create mode 100644 src/main/resources/assets/mineralogy/items/basaltic_glass_brick_wall.json create mode 100644 src/main/resources/assets/mineralogy/items/basaltic_glass_furnace.json create mode 100644 src/main/resources/assets/mineralogy/items/basaltic_glass_relief_axe.json create mode 100644 src/main/resources/assets/mineralogy/items/basaltic_glass_relief_blank.json create mode 100644 src/main/resources/assets/mineralogy/items/basaltic_glass_relief_cross.json create mode 100644 src/main/resources/assets/mineralogy/items/basaltic_glass_relief_hammer.json create mode 100644 src/main/resources/assets/mineralogy/items/basaltic_glass_relief_hoe.json create mode 100644 src/main/resources/assets/mineralogy/items/basaltic_glass_relief_horizontal.json create mode 100644 src/main/resources/assets/mineralogy/items/basaltic_glass_relief_i.json create mode 100644 src/main/resources/assets/mineralogy/items/basaltic_glass_relief_left.json create mode 100644 src/main/resources/assets/mineralogy/items/basaltic_glass_relief_pickaxe.json create mode 100644 src/main/resources/assets/mineralogy/items/basaltic_glass_relief_plus.json create mode 100644 src/main/resources/assets/mineralogy/items/basaltic_glass_relief_right.json create mode 100644 src/main/resources/assets/mineralogy/items/basaltic_glass_relief_sword.json create mode 100644 src/main/resources/assets/mineralogy/items/basaltic_glass_relief_vertical.json create mode 100644 src/main/resources/assets/mineralogy/items/basaltic_glass_slab.json create mode 100644 src/main/resources/assets/mineralogy/items/basaltic_glass_smooth.json create mode 100644 src/main/resources/assets/mineralogy/items/basaltic_glass_smooth_brick.json create mode 100644 src/main/resources/assets/mineralogy/items/basaltic_glass_smooth_brick_furnace.json create mode 100644 src/main/resources/assets/mineralogy/items/basaltic_glass_smooth_brick_slab.json create mode 100644 src/main/resources/assets/mineralogy/items/basaltic_glass_smooth_brick_stairs.json create mode 100644 src/main/resources/assets/mineralogy/items/basaltic_glass_smooth_brick_wall.json create mode 100644 src/main/resources/assets/mineralogy/items/basaltic_glass_smooth_furnace.json create mode 100644 src/main/resources/assets/mineralogy/items/basaltic_glass_smooth_slab.json create mode 100644 src/main/resources/assets/mineralogy/items/basaltic_glass_smooth_stairs.json create mode 100644 src/main/resources/assets/mineralogy/items/basaltic_glass_smooth_wall.json create mode 100644 src/main/resources/assets/mineralogy/items/basaltic_glass_stairs.json create mode 100644 src/main/resources/assets/mineralogy/items/basaltic_glass_wall.json create mode 100644 src/main/resources/assets/mineralogy/items/chalk.json create mode 100644 src/main/resources/assets/mineralogy/items/chalk_dust.json create mode 100644 src/main/resources/assets/mineralogy/items/chert.json create mode 100644 src/main/resources/assets/mineralogy/items/conglomerate.json create mode 100644 src/main/resources/assets/mineralogy/items/conglomerate_brick.json create mode 100644 src/main/resources/assets/mineralogy/items/conglomerate_brick_furnace.json create mode 100644 src/main/resources/assets/mineralogy/items/conglomerate_brick_slab.json create mode 100644 src/main/resources/assets/mineralogy/items/conglomerate_brick_stairs.json create mode 100644 src/main/resources/assets/mineralogy/items/conglomerate_brick_wall.json create mode 100644 src/main/resources/assets/mineralogy/items/conglomerate_furnace.json create mode 100644 src/main/resources/assets/mineralogy/items/conglomerate_relief_axe.json create mode 100644 src/main/resources/assets/mineralogy/items/conglomerate_relief_blank.json create mode 100644 src/main/resources/assets/mineralogy/items/conglomerate_relief_cross.json create mode 100644 src/main/resources/assets/mineralogy/items/conglomerate_relief_hammer.json create mode 100644 src/main/resources/assets/mineralogy/items/conglomerate_relief_hoe.json create mode 100644 src/main/resources/assets/mineralogy/items/conglomerate_relief_horizontal.json create mode 100644 src/main/resources/assets/mineralogy/items/conglomerate_relief_i.json create mode 100644 src/main/resources/assets/mineralogy/items/conglomerate_relief_left.json create mode 100644 src/main/resources/assets/mineralogy/items/conglomerate_relief_pickaxe.json create mode 100644 src/main/resources/assets/mineralogy/items/conglomerate_relief_plus.json create mode 100644 src/main/resources/assets/mineralogy/items/conglomerate_relief_right.json create mode 100644 src/main/resources/assets/mineralogy/items/conglomerate_relief_sword.json create mode 100644 src/main/resources/assets/mineralogy/items/conglomerate_relief_vertical.json create mode 100644 src/main/resources/assets/mineralogy/items/conglomerate_slab.json create mode 100644 src/main/resources/assets/mineralogy/items/conglomerate_smooth.json create mode 100644 src/main/resources/assets/mineralogy/items/conglomerate_smooth_brick.json create mode 100644 src/main/resources/assets/mineralogy/items/conglomerate_smooth_brick_furnace.json create mode 100644 src/main/resources/assets/mineralogy/items/conglomerate_smooth_brick_slab.json create mode 100644 src/main/resources/assets/mineralogy/items/conglomerate_smooth_brick_stairs.json create mode 100644 src/main/resources/assets/mineralogy/items/conglomerate_smooth_brick_wall.json create mode 100644 src/main/resources/assets/mineralogy/items/conglomerate_smooth_furnace.json create mode 100644 src/main/resources/assets/mineralogy/items/conglomerate_smooth_slab.json create mode 100644 src/main/resources/assets/mineralogy/items/conglomerate_smooth_stairs.json create mode 100644 src/main/resources/assets/mineralogy/items/conglomerate_smooth_wall.json create mode 100644 src/main/resources/assets/mineralogy/items/conglomerate_stairs.json create mode 100644 src/main/resources/assets/mineralogy/items/conglomerate_wall.json create mode 100644 src/main/resources/assets/mineralogy/items/crude_oil_bucket.json create mode 100644 src/main/resources/assets/mineralogy/items/diabase.json create mode 100644 src/main/resources/assets/mineralogy/items/diabase_brick.json create mode 100644 src/main/resources/assets/mineralogy/items/diabase_brick_furnace.json create mode 100644 src/main/resources/assets/mineralogy/items/diabase_brick_slab.json create mode 100644 src/main/resources/assets/mineralogy/items/diabase_brick_stairs.json create mode 100644 src/main/resources/assets/mineralogy/items/diabase_brick_wall.json create mode 100644 src/main/resources/assets/mineralogy/items/diabase_furnace.json create mode 100644 src/main/resources/assets/mineralogy/items/diabase_relief_axe.json create mode 100644 src/main/resources/assets/mineralogy/items/diabase_relief_blank.json create mode 100644 src/main/resources/assets/mineralogy/items/diabase_relief_cross.json create mode 100644 src/main/resources/assets/mineralogy/items/diabase_relief_hammer.json create mode 100644 src/main/resources/assets/mineralogy/items/diabase_relief_hoe.json create mode 100644 src/main/resources/assets/mineralogy/items/diabase_relief_horizontal.json create mode 100644 src/main/resources/assets/mineralogy/items/diabase_relief_i.json create mode 100644 src/main/resources/assets/mineralogy/items/diabase_relief_left.json create mode 100644 src/main/resources/assets/mineralogy/items/diabase_relief_pickaxe.json create mode 100644 src/main/resources/assets/mineralogy/items/diabase_relief_plus.json create mode 100644 src/main/resources/assets/mineralogy/items/diabase_relief_right.json create mode 100644 src/main/resources/assets/mineralogy/items/diabase_relief_sword.json create mode 100644 src/main/resources/assets/mineralogy/items/diabase_relief_vertical.json create mode 100644 src/main/resources/assets/mineralogy/items/diabase_slab.json create mode 100644 src/main/resources/assets/mineralogy/items/diabase_smooth.json create mode 100644 src/main/resources/assets/mineralogy/items/diabase_smooth_brick.json create mode 100644 src/main/resources/assets/mineralogy/items/diabase_smooth_brick_furnace.json create mode 100644 src/main/resources/assets/mineralogy/items/diabase_smooth_brick_slab.json create mode 100644 src/main/resources/assets/mineralogy/items/diabase_smooth_brick_stairs.json create mode 100644 src/main/resources/assets/mineralogy/items/diabase_smooth_brick_wall.json create mode 100644 src/main/resources/assets/mineralogy/items/diabase_smooth_furnace.json create mode 100644 src/main/resources/assets/mineralogy/items/diabase_smooth_slab.json create mode 100644 src/main/resources/assets/mineralogy/items/diabase_smooth_stairs.json create mode 100644 src/main/resources/assets/mineralogy/items/diabase_smooth_wall.json create mode 100644 src/main/resources/assets/mineralogy/items/diabase_stairs.json create mode 100644 src/main/resources/assets/mineralogy/items/diabase_wall.json create mode 100644 src/main/resources/assets/mineralogy/items/diorite.json create mode 100644 src/main/resources/assets/mineralogy/items/diorite_brick.json create mode 100644 src/main/resources/assets/mineralogy/items/diorite_brick_furnace.json create mode 100644 src/main/resources/assets/mineralogy/items/diorite_brick_slab.json create mode 100644 src/main/resources/assets/mineralogy/items/diorite_brick_stairs.json create mode 100644 src/main/resources/assets/mineralogy/items/diorite_brick_wall.json create mode 100644 src/main/resources/assets/mineralogy/items/diorite_furnace.json create mode 100644 src/main/resources/assets/mineralogy/items/diorite_relief_axe.json create mode 100644 src/main/resources/assets/mineralogy/items/diorite_relief_blank.json create mode 100644 src/main/resources/assets/mineralogy/items/diorite_relief_cross.json create mode 100644 src/main/resources/assets/mineralogy/items/diorite_relief_hammer.json create mode 100644 src/main/resources/assets/mineralogy/items/diorite_relief_hoe.json create mode 100644 src/main/resources/assets/mineralogy/items/diorite_relief_horizontal.json create mode 100644 src/main/resources/assets/mineralogy/items/diorite_relief_i.json create mode 100644 src/main/resources/assets/mineralogy/items/diorite_relief_left.json create mode 100644 src/main/resources/assets/mineralogy/items/diorite_relief_pickaxe.json create mode 100644 src/main/resources/assets/mineralogy/items/diorite_relief_plus.json create mode 100644 src/main/resources/assets/mineralogy/items/diorite_relief_right.json create mode 100644 src/main/resources/assets/mineralogy/items/diorite_relief_sword.json create mode 100644 src/main/resources/assets/mineralogy/items/diorite_relief_vertical.json create mode 100644 src/main/resources/assets/mineralogy/items/diorite_slab.json create mode 100644 src/main/resources/assets/mineralogy/items/diorite_smooth.json create mode 100644 src/main/resources/assets/mineralogy/items/diorite_smooth_brick.json create mode 100644 src/main/resources/assets/mineralogy/items/diorite_smooth_brick_furnace.json create mode 100644 src/main/resources/assets/mineralogy/items/diorite_smooth_brick_slab.json create mode 100644 src/main/resources/assets/mineralogy/items/diorite_smooth_brick_stairs.json create mode 100644 src/main/resources/assets/mineralogy/items/diorite_smooth_brick_wall.json create mode 100644 src/main/resources/assets/mineralogy/items/diorite_smooth_furnace.json create mode 100644 src/main/resources/assets/mineralogy/items/diorite_smooth_slab.json create mode 100644 src/main/resources/assets/mineralogy/items/diorite_smooth_stairs.json create mode 100644 src/main/resources/assets/mineralogy/items/diorite_smooth_wall.json create mode 100644 src/main/resources/assets/mineralogy/items/diorite_stairs.json create mode 100644 src/main/resources/assets/mineralogy/items/diorite_wall.json create mode 100644 src/main/resources/assets/mineralogy/items/dolomite.json create mode 100644 src/main/resources/assets/mineralogy/items/dolomite_brick.json create mode 100644 src/main/resources/assets/mineralogy/items/dolomite_brick_furnace.json create mode 100644 src/main/resources/assets/mineralogy/items/dolomite_brick_slab.json create mode 100644 src/main/resources/assets/mineralogy/items/dolomite_brick_stairs.json create mode 100644 src/main/resources/assets/mineralogy/items/dolomite_brick_wall.json create mode 100644 src/main/resources/assets/mineralogy/items/dolomite_furnace.json create mode 100644 src/main/resources/assets/mineralogy/items/dolomite_relief_axe.json create mode 100644 src/main/resources/assets/mineralogy/items/dolomite_relief_blank.json create mode 100644 src/main/resources/assets/mineralogy/items/dolomite_relief_cross.json create mode 100644 src/main/resources/assets/mineralogy/items/dolomite_relief_hammer.json create mode 100644 src/main/resources/assets/mineralogy/items/dolomite_relief_hoe.json create mode 100644 src/main/resources/assets/mineralogy/items/dolomite_relief_horizontal.json create mode 100644 src/main/resources/assets/mineralogy/items/dolomite_relief_i.json create mode 100644 src/main/resources/assets/mineralogy/items/dolomite_relief_left.json create mode 100644 src/main/resources/assets/mineralogy/items/dolomite_relief_pickaxe.json create mode 100644 src/main/resources/assets/mineralogy/items/dolomite_relief_plus.json create mode 100644 src/main/resources/assets/mineralogy/items/dolomite_relief_right.json create mode 100644 src/main/resources/assets/mineralogy/items/dolomite_relief_sword.json create mode 100644 src/main/resources/assets/mineralogy/items/dolomite_relief_vertical.json create mode 100644 src/main/resources/assets/mineralogy/items/dolomite_slab.json create mode 100644 src/main/resources/assets/mineralogy/items/dolomite_smooth.json create mode 100644 src/main/resources/assets/mineralogy/items/dolomite_smooth_brick.json create mode 100644 src/main/resources/assets/mineralogy/items/dolomite_smooth_brick_furnace.json create mode 100644 src/main/resources/assets/mineralogy/items/dolomite_smooth_brick_slab.json create mode 100644 src/main/resources/assets/mineralogy/items/dolomite_smooth_brick_stairs.json create mode 100644 src/main/resources/assets/mineralogy/items/dolomite_smooth_brick_wall.json create mode 100644 src/main/resources/assets/mineralogy/items/dolomite_smooth_furnace.json create mode 100644 src/main/resources/assets/mineralogy/items/dolomite_smooth_slab.json create mode 100644 src/main/resources/assets/mineralogy/items/dolomite_smooth_stairs.json create mode 100644 src/main/resources/assets/mineralogy/items/dolomite_smooth_wall.json create mode 100644 src/main/resources/assets/mineralogy/items/dolomite_stairs.json create mode 100644 src/main/resources/assets/mineralogy/items/dolomite_wall.json create mode 100644 src/main/resources/assets/mineralogy/items/drywall_black.json create mode 100644 src/main/resources/assets/mineralogy/items/drywall_blue.json create mode 100644 src/main/resources/assets/mineralogy/items/drywall_brown.json create mode 100644 src/main/resources/assets/mineralogy/items/drywall_cyan.json create mode 100644 src/main/resources/assets/mineralogy/items/drywall_gray.json create mode 100644 src/main/resources/assets/mineralogy/items/drywall_green.json create mode 100644 src/main/resources/assets/mineralogy/items/drywall_light_blue.json create mode 100644 src/main/resources/assets/mineralogy/items/drywall_lime.json create mode 100644 src/main/resources/assets/mineralogy/items/drywall_magenta.json create mode 100644 src/main/resources/assets/mineralogy/items/drywall_orange.json create mode 100644 src/main/resources/assets/mineralogy/items/drywall_pink.json create mode 100644 src/main/resources/assets/mineralogy/items/drywall_purple.json create mode 100644 src/main/resources/assets/mineralogy/items/drywall_red.json create mode 100644 src/main/resources/assets/mineralogy/items/drywall_silver.json create mode 100644 src/main/resources/assets/mineralogy/items/drywall_white.json create mode 100644 src/main/resources/assets/mineralogy/items/drywall_yellow.json create mode 100644 src/main/resources/assets/mineralogy/items/gabbro.json create mode 100644 src/main/resources/assets/mineralogy/items/gabbro_brick.json create mode 100644 src/main/resources/assets/mineralogy/items/gabbro_brick_furnace.json create mode 100644 src/main/resources/assets/mineralogy/items/gabbro_brick_slab.json create mode 100644 src/main/resources/assets/mineralogy/items/gabbro_brick_stairs.json create mode 100644 src/main/resources/assets/mineralogy/items/gabbro_brick_wall.json create mode 100644 src/main/resources/assets/mineralogy/items/gabbro_furnace.json create mode 100644 src/main/resources/assets/mineralogy/items/gabbro_relief_axe.json create mode 100644 src/main/resources/assets/mineralogy/items/gabbro_relief_blank.json create mode 100644 src/main/resources/assets/mineralogy/items/gabbro_relief_cross.json create mode 100644 src/main/resources/assets/mineralogy/items/gabbro_relief_hammer.json create mode 100644 src/main/resources/assets/mineralogy/items/gabbro_relief_hoe.json create mode 100644 src/main/resources/assets/mineralogy/items/gabbro_relief_horizontal.json create mode 100644 src/main/resources/assets/mineralogy/items/gabbro_relief_i.json create mode 100644 src/main/resources/assets/mineralogy/items/gabbro_relief_left.json create mode 100644 src/main/resources/assets/mineralogy/items/gabbro_relief_pickaxe.json create mode 100644 src/main/resources/assets/mineralogy/items/gabbro_relief_plus.json create mode 100644 src/main/resources/assets/mineralogy/items/gabbro_relief_right.json create mode 100644 src/main/resources/assets/mineralogy/items/gabbro_relief_sword.json create mode 100644 src/main/resources/assets/mineralogy/items/gabbro_relief_vertical.json create mode 100644 src/main/resources/assets/mineralogy/items/gabbro_slab.json create mode 100644 src/main/resources/assets/mineralogy/items/gabbro_smooth.json create mode 100644 src/main/resources/assets/mineralogy/items/gabbro_smooth_brick.json create mode 100644 src/main/resources/assets/mineralogy/items/gabbro_smooth_brick_furnace.json create mode 100644 src/main/resources/assets/mineralogy/items/gabbro_smooth_brick_slab.json create mode 100644 src/main/resources/assets/mineralogy/items/gabbro_smooth_brick_stairs.json create mode 100644 src/main/resources/assets/mineralogy/items/gabbro_smooth_brick_wall.json create mode 100644 src/main/resources/assets/mineralogy/items/gabbro_smooth_furnace.json create mode 100644 src/main/resources/assets/mineralogy/items/gabbro_smooth_slab.json create mode 100644 src/main/resources/assets/mineralogy/items/gabbro_smooth_stairs.json create mode 100644 src/main/resources/assets/mineralogy/items/gabbro_smooth_wall.json create mode 100644 src/main/resources/assets/mineralogy/items/gabbro_stairs.json create mode 100644 src/main/resources/assets/mineralogy/items/gabbro_wall.json create mode 100644 src/main/resources/assets/mineralogy/items/gneiss.json create mode 100644 src/main/resources/assets/mineralogy/items/gneiss_brick.json create mode 100644 src/main/resources/assets/mineralogy/items/gneiss_brick_furnace.json create mode 100644 src/main/resources/assets/mineralogy/items/gneiss_brick_slab.json create mode 100644 src/main/resources/assets/mineralogy/items/gneiss_brick_stairs.json create mode 100644 src/main/resources/assets/mineralogy/items/gneiss_brick_wall.json create mode 100644 src/main/resources/assets/mineralogy/items/gneiss_furnace.json create mode 100644 src/main/resources/assets/mineralogy/items/gneiss_relief_axe.json create mode 100644 src/main/resources/assets/mineralogy/items/gneiss_relief_blank.json create mode 100644 src/main/resources/assets/mineralogy/items/gneiss_relief_cross.json create mode 100644 src/main/resources/assets/mineralogy/items/gneiss_relief_hammer.json create mode 100644 src/main/resources/assets/mineralogy/items/gneiss_relief_hoe.json create mode 100644 src/main/resources/assets/mineralogy/items/gneiss_relief_horizontal.json create mode 100644 src/main/resources/assets/mineralogy/items/gneiss_relief_i.json create mode 100644 src/main/resources/assets/mineralogy/items/gneiss_relief_left.json create mode 100644 src/main/resources/assets/mineralogy/items/gneiss_relief_pickaxe.json create mode 100644 src/main/resources/assets/mineralogy/items/gneiss_relief_plus.json create mode 100644 src/main/resources/assets/mineralogy/items/gneiss_relief_right.json create mode 100644 src/main/resources/assets/mineralogy/items/gneiss_relief_sword.json create mode 100644 src/main/resources/assets/mineralogy/items/gneiss_relief_vertical.json create mode 100644 src/main/resources/assets/mineralogy/items/gneiss_slab.json create mode 100644 src/main/resources/assets/mineralogy/items/gneiss_smooth.json create mode 100644 src/main/resources/assets/mineralogy/items/gneiss_smooth_brick.json create mode 100644 src/main/resources/assets/mineralogy/items/gneiss_smooth_brick_furnace.json create mode 100644 src/main/resources/assets/mineralogy/items/gneiss_smooth_brick_slab.json create mode 100644 src/main/resources/assets/mineralogy/items/gneiss_smooth_brick_stairs.json create mode 100644 src/main/resources/assets/mineralogy/items/gneiss_smooth_brick_wall.json create mode 100644 src/main/resources/assets/mineralogy/items/gneiss_smooth_furnace.json create mode 100644 src/main/resources/assets/mineralogy/items/gneiss_smooth_slab.json create mode 100644 src/main/resources/assets/mineralogy/items/gneiss_smooth_stairs.json create mode 100644 src/main/resources/assets/mineralogy/items/gneiss_smooth_wall.json create mode 100644 src/main/resources/assets/mineralogy/items/gneiss_stairs.json create mode 100644 src/main/resources/assets/mineralogy/items/gneiss_wall.json create mode 100644 src/main/resources/assets/mineralogy/items/granite.json create mode 100644 src/main/resources/assets/mineralogy/items/granite_brick.json create mode 100644 src/main/resources/assets/mineralogy/items/granite_brick_furnace.json create mode 100644 src/main/resources/assets/mineralogy/items/granite_brick_slab.json create mode 100644 src/main/resources/assets/mineralogy/items/granite_brick_stairs.json create mode 100644 src/main/resources/assets/mineralogy/items/granite_brick_wall.json create mode 100644 src/main/resources/assets/mineralogy/items/granite_furnace.json create mode 100644 src/main/resources/assets/mineralogy/items/granite_relief_axe.json create mode 100644 src/main/resources/assets/mineralogy/items/granite_relief_blank.json create mode 100644 src/main/resources/assets/mineralogy/items/granite_relief_cross.json create mode 100644 src/main/resources/assets/mineralogy/items/granite_relief_hammer.json create mode 100644 src/main/resources/assets/mineralogy/items/granite_relief_hoe.json create mode 100644 src/main/resources/assets/mineralogy/items/granite_relief_horizontal.json create mode 100644 src/main/resources/assets/mineralogy/items/granite_relief_i.json create mode 100644 src/main/resources/assets/mineralogy/items/granite_relief_left.json create mode 100644 src/main/resources/assets/mineralogy/items/granite_relief_pickaxe.json create mode 100644 src/main/resources/assets/mineralogy/items/granite_relief_plus.json create mode 100644 src/main/resources/assets/mineralogy/items/granite_relief_right.json create mode 100644 src/main/resources/assets/mineralogy/items/granite_relief_sword.json create mode 100644 src/main/resources/assets/mineralogy/items/granite_relief_vertical.json create mode 100644 src/main/resources/assets/mineralogy/items/granite_slab.json create mode 100644 src/main/resources/assets/mineralogy/items/granite_smooth.json create mode 100644 src/main/resources/assets/mineralogy/items/granite_smooth_brick.json create mode 100644 src/main/resources/assets/mineralogy/items/granite_smooth_brick_furnace.json create mode 100644 src/main/resources/assets/mineralogy/items/granite_smooth_brick_slab.json create mode 100644 src/main/resources/assets/mineralogy/items/granite_smooth_brick_stairs.json create mode 100644 src/main/resources/assets/mineralogy/items/granite_smooth_brick_wall.json create mode 100644 src/main/resources/assets/mineralogy/items/granite_smooth_furnace.json create mode 100644 src/main/resources/assets/mineralogy/items/granite_smooth_slab.json create mode 100644 src/main/resources/assets/mineralogy/items/granite_smooth_stairs.json create mode 100644 src/main/resources/assets/mineralogy/items/granite_smooth_wall.json create mode 100644 src/main/resources/assets/mineralogy/items/granite_stairs.json create mode 100644 src/main/resources/assets/mineralogy/items/granite_wall.json create mode 100644 src/main/resources/assets/mineralogy/items/gypsum.json create mode 100644 src/main/resources/assets/mineralogy/items/gypsum_dust.json create mode 100644 src/main/resources/assets/mineralogy/items/hornfels.json create mode 100644 src/main/resources/assets/mineralogy/items/hornfels_brick.json create mode 100644 src/main/resources/assets/mineralogy/items/hornfels_brick_furnace.json create mode 100644 src/main/resources/assets/mineralogy/items/hornfels_brick_slab.json create mode 100644 src/main/resources/assets/mineralogy/items/hornfels_brick_stairs.json create mode 100644 src/main/resources/assets/mineralogy/items/hornfels_brick_wall.json create mode 100644 src/main/resources/assets/mineralogy/items/hornfels_furnace.json create mode 100644 src/main/resources/assets/mineralogy/items/hornfels_relief_axe.json create mode 100644 src/main/resources/assets/mineralogy/items/hornfels_relief_blank.json create mode 100644 src/main/resources/assets/mineralogy/items/hornfels_relief_cross.json create mode 100644 src/main/resources/assets/mineralogy/items/hornfels_relief_hammer.json create mode 100644 src/main/resources/assets/mineralogy/items/hornfels_relief_hoe.json create mode 100644 src/main/resources/assets/mineralogy/items/hornfels_relief_horizontal.json create mode 100644 src/main/resources/assets/mineralogy/items/hornfels_relief_i.json create mode 100644 src/main/resources/assets/mineralogy/items/hornfels_relief_left.json create mode 100644 src/main/resources/assets/mineralogy/items/hornfels_relief_pickaxe.json create mode 100644 src/main/resources/assets/mineralogy/items/hornfels_relief_plus.json create mode 100644 src/main/resources/assets/mineralogy/items/hornfels_relief_right.json create mode 100644 src/main/resources/assets/mineralogy/items/hornfels_relief_sword.json create mode 100644 src/main/resources/assets/mineralogy/items/hornfels_relief_vertical.json create mode 100644 src/main/resources/assets/mineralogy/items/hornfels_slab.json create mode 100644 src/main/resources/assets/mineralogy/items/hornfels_smooth.json create mode 100644 src/main/resources/assets/mineralogy/items/hornfels_smooth_brick.json create mode 100644 src/main/resources/assets/mineralogy/items/hornfels_smooth_brick_furnace.json create mode 100644 src/main/resources/assets/mineralogy/items/hornfels_smooth_brick_slab.json create mode 100644 src/main/resources/assets/mineralogy/items/hornfels_smooth_brick_stairs.json create mode 100644 src/main/resources/assets/mineralogy/items/hornfels_smooth_brick_wall.json create mode 100644 src/main/resources/assets/mineralogy/items/hornfels_smooth_furnace.json create mode 100644 src/main/resources/assets/mineralogy/items/hornfels_smooth_slab.json create mode 100644 src/main/resources/assets/mineralogy/items/hornfels_smooth_stairs.json create mode 100644 src/main/resources/assets/mineralogy/items/hornfels_smooth_wall.json create mode 100644 src/main/resources/assets/mineralogy/items/hornfels_stairs.json create mode 100644 src/main/resources/assets/mineralogy/items/hornfels_wall.json create mode 100644 src/main/resources/assets/mineralogy/items/limestone.json create mode 100644 src/main/resources/assets/mineralogy/items/limestone_brick.json create mode 100644 src/main/resources/assets/mineralogy/items/limestone_brick_furnace.json create mode 100644 src/main/resources/assets/mineralogy/items/limestone_brick_slab.json create mode 100644 src/main/resources/assets/mineralogy/items/limestone_brick_stairs.json create mode 100644 src/main/resources/assets/mineralogy/items/limestone_brick_wall.json create mode 100644 src/main/resources/assets/mineralogy/items/limestone_furnace.json create mode 100644 src/main/resources/assets/mineralogy/items/limestone_relief_axe.json create mode 100644 src/main/resources/assets/mineralogy/items/limestone_relief_blank.json create mode 100644 src/main/resources/assets/mineralogy/items/limestone_relief_cross.json create mode 100644 src/main/resources/assets/mineralogy/items/limestone_relief_hammer.json create mode 100644 src/main/resources/assets/mineralogy/items/limestone_relief_hoe.json create mode 100644 src/main/resources/assets/mineralogy/items/limestone_relief_horizontal.json create mode 100644 src/main/resources/assets/mineralogy/items/limestone_relief_i.json create mode 100644 src/main/resources/assets/mineralogy/items/limestone_relief_left.json create mode 100644 src/main/resources/assets/mineralogy/items/limestone_relief_pickaxe.json create mode 100644 src/main/resources/assets/mineralogy/items/limestone_relief_plus.json create mode 100644 src/main/resources/assets/mineralogy/items/limestone_relief_right.json create mode 100644 src/main/resources/assets/mineralogy/items/limestone_relief_sword.json create mode 100644 src/main/resources/assets/mineralogy/items/limestone_relief_vertical.json create mode 100644 src/main/resources/assets/mineralogy/items/limestone_slab.json create mode 100644 src/main/resources/assets/mineralogy/items/limestone_smooth.json create mode 100644 src/main/resources/assets/mineralogy/items/limestone_smooth_brick.json create mode 100644 src/main/resources/assets/mineralogy/items/limestone_smooth_brick_furnace.json create mode 100644 src/main/resources/assets/mineralogy/items/limestone_smooth_brick_slab.json create mode 100644 src/main/resources/assets/mineralogy/items/limestone_smooth_brick_stairs.json create mode 100644 src/main/resources/assets/mineralogy/items/limestone_smooth_brick_wall.json create mode 100644 src/main/resources/assets/mineralogy/items/limestone_smooth_furnace.json create mode 100644 src/main/resources/assets/mineralogy/items/limestone_smooth_slab.json create mode 100644 src/main/resources/assets/mineralogy/items/limestone_smooth_stairs.json create mode 100644 src/main/resources/assets/mineralogy/items/limestone_smooth_wall.json create mode 100644 src/main/resources/assets/mineralogy/items/limestone_stairs.json create mode 100644 src/main/resources/assets/mineralogy/items/limestone_wall.json create mode 100644 src/main/resources/assets/mineralogy/items/marble.json create mode 100644 src/main/resources/assets/mineralogy/items/marble_brick.json create mode 100644 src/main/resources/assets/mineralogy/items/marble_brick_furnace.json create mode 100644 src/main/resources/assets/mineralogy/items/marble_brick_slab.json create mode 100644 src/main/resources/assets/mineralogy/items/marble_brick_stairs.json create mode 100644 src/main/resources/assets/mineralogy/items/marble_brick_wall.json create mode 100644 src/main/resources/assets/mineralogy/items/marble_furnace.json create mode 100644 src/main/resources/assets/mineralogy/items/marble_relief_axe.json create mode 100644 src/main/resources/assets/mineralogy/items/marble_relief_blank.json create mode 100644 src/main/resources/assets/mineralogy/items/marble_relief_cross.json create mode 100644 src/main/resources/assets/mineralogy/items/marble_relief_hammer.json create mode 100644 src/main/resources/assets/mineralogy/items/marble_relief_hoe.json create mode 100644 src/main/resources/assets/mineralogy/items/marble_relief_horizontal.json create mode 100644 src/main/resources/assets/mineralogy/items/marble_relief_i.json create mode 100644 src/main/resources/assets/mineralogy/items/marble_relief_left.json create mode 100644 src/main/resources/assets/mineralogy/items/marble_relief_pickaxe.json create mode 100644 src/main/resources/assets/mineralogy/items/marble_relief_plus.json create mode 100644 src/main/resources/assets/mineralogy/items/marble_relief_right.json create mode 100644 src/main/resources/assets/mineralogy/items/marble_relief_sword.json create mode 100644 src/main/resources/assets/mineralogy/items/marble_relief_vertical.json create mode 100644 src/main/resources/assets/mineralogy/items/marble_slab.json create mode 100644 src/main/resources/assets/mineralogy/items/marble_smooth.json create mode 100644 src/main/resources/assets/mineralogy/items/marble_smooth_brick.json create mode 100644 src/main/resources/assets/mineralogy/items/marble_smooth_brick_furnace.json create mode 100644 src/main/resources/assets/mineralogy/items/marble_smooth_brick_slab.json create mode 100644 src/main/resources/assets/mineralogy/items/marble_smooth_brick_stairs.json create mode 100644 src/main/resources/assets/mineralogy/items/marble_smooth_brick_wall.json create mode 100644 src/main/resources/assets/mineralogy/items/marble_smooth_furnace.json create mode 100644 src/main/resources/assets/mineralogy/items/marble_smooth_slab.json create mode 100644 src/main/resources/assets/mineralogy/items/marble_smooth_stairs.json create mode 100644 src/main/resources/assets/mineralogy/items/marble_smooth_wall.json create mode 100644 src/main/resources/assets/mineralogy/items/marble_stairs.json create mode 100644 src/main/resources/assets/mineralogy/items/marble_wall.json create mode 100644 src/main/resources/assets/mineralogy/items/mineral_fertilizer.json create mode 100644 src/main/resources/assets/mineralogy/items/nitrate_block.json create mode 100644 src/main/resources/assets/mineralogy/items/nitrate_dust.json create mode 100644 src/main/resources/assets/mineralogy/items/nitrate_ore.json create mode 100644 src/main/resources/assets/mineralogy/items/novaculite.json create mode 100644 src/main/resources/assets/mineralogy/items/novaculite_brick.json create mode 100644 src/main/resources/assets/mineralogy/items/novaculite_brick_furnace.json create mode 100644 src/main/resources/assets/mineralogy/items/novaculite_brick_slab.json create mode 100644 src/main/resources/assets/mineralogy/items/novaculite_brick_stairs.json create mode 100644 src/main/resources/assets/mineralogy/items/novaculite_brick_wall.json create mode 100644 src/main/resources/assets/mineralogy/items/novaculite_furnace.json create mode 100644 src/main/resources/assets/mineralogy/items/novaculite_relief_axe.json create mode 100644 src/main/resources/assets/mineralogy/items/novaculite_relief_blank.json create mode 100644 src/main/resources/assets/mineralogy/items/novaculite_relief_cross.json create mode 100644 src/main/resources/assets/mineralogy/items/novaculite_relief_hammer.json create mode 100644 src/main/resources/assets/mineralogy/items/novaculite_relief_hoe.json create mode 100644 src/main/resources/assets/mineralogy/items/novaculite_relief_horizontal.json create mode 100644 src/main/resources/assets/mineralogy/items/novaculite_relief_i.json create mode 100644 src/main/resources/assets/mineralogy/items/novaculite_relief_left.json create mode 100644 src/main/resources/assets/mineralogy/items/novaculite_relief_pickaxe.json create mode 100644 src/main/resources/assets/mineralogy/items/novaculite_relief_plus.json create mode 100644 src/main/resources/assets/mineralogy/items/novaculite_relief_right.json create mode 100644 src/main/resources/assets/mineralogy/items/novaculite_relief_sword.json create mode 100644 src/main/resources/assets/mineralogy/items/novaculite_relief_vertical.json create mode 100644 src/main/resources/assets/mineralogy/items/novaculite_slab.json create mode 100644 src/main/resources/assets/mineralogy/items/novaculite_smooth.json create mode 100644 src/main/resources/assets/mineralogy/items/novaculite_smooth_brick.json create mode 100644 src/main/resources/assets/mineralogy/items/novaculite_smooth_brick_furnace.json create mode 100644 src/main/resources/assets/mineralogy/items/novaculite_smooth_brick_slab.json create mode 100644 src/main/resources/assets/mineralogy/items/novaculite_smooth_brick_stairs.json create mode 100644 src/main/resources/assets/mineralogy/items/novaculite_smooth_brick_wall.json create mode 100644 src/main/resources/assets/mineralogy/items/novaculite_smooth_furnace.json create mode 100644 src/main/resources/assets/mineralogy/items/novaculite_smooth_slab.json create mode 100644 src/main/resources/assets/mineralogy/items/novaculite_smooth_stairs.json create mode 100644 src/main/resources/assets/mineralogy/items/novaculite_smooth_wall.json create mode 100644 src/main/resources/assets/mineralogy/items/novaculite_stairs.json create mode 100644 src/main/resources/assets/mineralogy/items/novaculite_wall.json create mode 100644 src/main/resources/assets/mineralogy/items/pegmatite.json create mode 100644 src/main/resources/assets/mineralogy/items/pegmatite_brick.json create mode 100644 src/main/resources/assets/mineralogy/items/pegmatite_brick_furnace.json create mode 100644 src/main/resources/assets/mineralogy/items/pegmatite_brick_slab.json create mode 100644 src/main/resources/assets/mineralogy/items/pegmatite_brick_stairs.json create mode 100644 src/main/resources/assets/mineralogy/items/pegmatite_brick_wall.json create mode 100644 src/main/resources/assets/mineralogy/items/pegmatite_furnace.json create mode 100644 src/main/resources/assets/mineralogy/items/pegmatite_relief_axe.json create mode 100644 src/main/resources/assets/mineralogy/items/pegmatite_relief_blank.json create mode 100644 src/main/resources/assets/mineralogy/items/pegmatite_relief_cross.json create mode 100644 src/main/resources/assets/mineralogy/items/pegmatite_relief_hammer.json create mode 100644 src/main/resources/assets/mineralogy/items/pegmatite_relief_hoe.json create mode 100644 src/main/resources/assets/mineralogy/items/pegmatite_relief_horizontal.json create mode 100644 src/main/resources/assets/mineralogy/items/pegmatite_relief_i.json create mode 100644 src/main/resources/assets/mineralogy/items/pegmatite_relief_left.json create mode 100644 src/main/resources/assets/mineralogy/items/pegmatite_relief_pickaxe.json create mode 100644 src/main/resources/assets/mineralogy/items/pegmatite_relief_plus.json create mode 100644 src/main/resources/assets/mineralogy/items/pegmatite_relief_right.json create mode 100644 src/main/resources/assets/mineralogy/items/pegmatite_relief_sword.json create mode 100644 src/main/resources/assets/mineralogy/items/pegmatite_relief_vertical.json create mode 100644 src/main/resources/assets/mineralogy/items/pegmatite_slab.json create mode 100644 src/main/resources/assets/mineralogy/items/pegmatite_smooth.json create mode 100644 src/main/resources/assets/mineralogy/items/pegmatite_smooth_brick.json create mode 100644 src/main/resources/assets/mineralogy/items/pegmatite_smooth_brick_furnace.json create mode 100644 src/main/resources/assets/mineralogy/items/pegmatite_smooth_brick_slab.json create mode 100644 src/main/resources/assets/mineralogy/items/pegmatite_smooth_brick_stairs.json create mode 100644 src/main/resources/assets/mineralogy/items/pegmatite_smooth_brick_wall.json create mode 100644 src/main/resources/assets/mineralogy/items/pegmatite_smooth_furnace.json create mode 100644 src/main/resources/assets/mineralogy/items/pegmatite_smooth_slab.json create mode 100644 src/main/resources/assets/mineralogy/items/pegmatite_smooth_stairs.json create mode 100644 src/main/resources/assets/mineralogy/items/pegmatite_smooth_wall.json create mode 100644 src/main/resources/assets/mineralogy/items/pegmatite_stairs.json create mode 100644 src/main/resources/assets/mineralogy/items/pegmatite_wall.json create mode 100644 src/main/resources/assets/mineralogy/items/peridotite.json create mode 100644 src/main/resources/assets/mineralogy/items/peridotite_brick.json create mode 100644 src/main/resources/assets/mineralogy/items/peridotite_brick_furnace.json create mode 100644 src/main/resources/assets/mineralogy/items/peridotite_brick_slab.json create mode 100644 src/main/resources/assets/mineralogy/items/peridotite_brick_stairs.json create mode 100644 src/main/resources/assets/mineralogy/items/peridotite_brick_wall.json create mode 100644 src/main/resources/assets/mineralogy/items/peridotite_furnace.json create mode 100644 src/main/resources/assets/mineralogy/items/peridotite_relief_axe.json create mode 100644 src/main/resources/assets/mineralogy/items/peridotite_relief_blank.json create mode 100644 src/main/resources/assets/mineralogy/items/peridotite_relief_cross.json create mode 100644 src/main/resources/assets/mineralogy/items/peridotite_relief_hammer.json create mode 100644 src/main/resources/assets/mineralogy/items/peridotite_relief_hoe.json create mode 100644 src/main/resources/assets/mineralogy/items/peridotite_relief_horizontal.json create mode 100644 src/main/resources/assets/mineralogy/items/peridotite_relief_i.json create mode 100644 src/main/resources/assets/mineralogy/items/peridotite_relief_left.json create mode 100644 src/main/resources/assets/mineralogy/items/peridotite_relief_pickaxe.json create mode 100644 src/main/resources/assets/mineralogy/items/peridotite_relief_plus.json create mode 100644 src/main/resources/assets/mineralogy/items/peridotite_relief_right.json create mode 100644 src/main/resources/assets/mineralogy/items/peridotite_relief_sword.json create mode 100644 src/main/resources/assets/mineralogy/items/peridotite_relief_vertical.json create mode 100644 src/main/resources/assets/mineralogy/items/peridotite_slab.json create mode 100644 src/main/resources/assets/mineralogy/items/peridotite_smooth.json create mode 100644 src/main/resources/assets/mineralogy/items/peridotite_smooth_brick.json create mode 100644 src/main/resources/assets/mineralogy/items/peridotite_smooth_brick_furnace.json create mode 100644 src/main/resources/assets/mineralogy/items/peridotite_smooth_brick_slab.json create mode 100644 src/main/resources/assets/mineralogy/items/peridotite_smooth_brick_stairs.json create mode 100644 src/main/resources/assets/mineralogy/items/peridotite_smooth_brick_wall.json create mode 100644 src/main/resources/assets/mineralogy/items/peridotite_smooth_furnace.json create mode 100644 src/main/resources/assets/mineralogy/items/peridotite_smooth_slab.json create mode 100644 src/main/resources/assets/mineralogy/items/peridotite_smooth_stairs.json create mode 100644 src/main/resources/assets/mineralogy/items/peridotite_smooth_wall.json create mode 100644 src/main/resources/assets/mineralogy/items/peridotite_stairs.json create mode 100644 src/main/resources/assets/mineralogy/items/peridotite_wall.json create mode 100644 src/main/resources/assets/mineralogy/items/phosphorous_block.json create mode 100644 src/main/resources/assets/mineralogy/items/phosphorous_dust.json create mode 100644 src/main/resources/assets/mineralogy/items/phosphorous_ore.json create mode 100644 src/main/resources/assets/mineralogy/items/phyllite.json create mode 100644 src/main/resources/assets/mineralogy/items/phyllite_brick.json create mode 100644 src/main/resources/assets/mineralogy/items/phyllite_brick_furnace.json create mode 100644 src/main/resources/assets/mineralogy/items/phyllite_brick_slab.json create mode 100644 src/main/resources/assets/mineralogy/items/phyllite_brick_stairs.json create mode 100644 src/main/resources/assets/mineralogy/items/phyllite_brick_wall.json create mode 100644 src/main/resources/assets/mineralogy/items/phyllite_furnace.json create mode 100644 src/main/resources/assets/mineralogy/items/phyllite_relief_axe.json create mode 100644 src/main/resources/assets/mineralogy/items/phyllite_relief_blank.json create mode 100644 src/main/resources/assets/mineralogy/items/phyllite_relief_cross.json create mode 100644 src/main/resources/assets/mineralogy/items/phyllite_relief_hammer.json create mode 100644 src/main/resources/assets/mineralogy/items/phyllite_relief_hoe.json create mode 100644 src/main/resources/assets/mineralogy/items/phyllite_relief_horizontal.json create mode 100644 src/main/resources/assets/mineralogy/items/phyllite_relief_i.json create mode 100644 src/main/resources/assets/mineralogy/items/phyllite_relief_left.json create mode 100644 src/main/resources/assets/mineralogy/items/phyllite_relief_pickaxe.json create mode 100644 src/main/resources/assets/mineralogy/items/phyllite_relief_plus.json create mode 100644 src/main/resources/assets/mineralogy/items/phyllite_relief_right.json create mode 100644 src/main/resources/assets/mineralogy/items/phyllite_relief_sword.json create mode 100644 src/main/resources/assets/mineralogy/items/phyllite_relief_vertical.json create mode 100644 src/main/resources/assets/mineralogy/items/phyllite_slab.json create mode 100644 src/main/resources/assets/mineralogy/items/phyllite_smooth.json create mode 100644 src/main/resources/assets/mineralogy/items/phyllite_smooth_brick.json create mode 100644 src/main/resources/assets/mineralogy/items/phyllite_smooth_brick_furnace.json create mode 100644 src/main/resources/assets/mineralogy/items/phyllite_smooth_brick_slab.json create mode 100644 src/main/resources/assets/mineralogy/items/phyllite_smooth_brick_stairs.json create mode 100644 src/main/resources/assets/mineralogy/items/phyllite_smooth_brick_wall.json create mode 100644 src/main/resources/assets/mineralogy/items/phyllite_smooth_furnace.json create mode 100644 src/main/resources/assets/mineralogy/items/phyllite_smooth_slab.json create mode 100644 src/main/resources/assets/mineralogy/items/phyllite_smooth_stairs.json create mode 100644 src/main/resources/assets/mineralogy/items/phyllite_smooth_wall.json create mode 100644 src/main/resources/assets/mineralogy/items/phyllite_stairs.json create mode 100644 src/main/resources/assets/mineralogy/items/phyllite_wall.json create mode 100644 src/main/resources/assets/mineralogy/items/pumice.json create mode 100644 src/main/resources/assets/mineralogy/items/quartzite.json create mode 100644 src/main/resources/assets/mineralogy/items/quartzite_brick.json create mode 100644 src/main/resources/assets/mineralogy/items/quartzite_brick_furnace.json create mode 100644 src/main/resources/assets/mineralogy/items/quartzite_brick_slab.json create mode 100644 src/main/resources/assets/mineralogy/items/quartzite_brick_stairs.json create mode 100644 src/main/resources/assets/mineralogy/items/quartzite_brick_wall.json create mode 100644 src/main/resources/assets/mineralogy/items/quartzite_furnace.json create mode 100644 src/main/resources/assets/mineralogy/items/quartzite_relief_axe.json create mode 100644 src/main/resources/assets/mineralogy/items/quartzite_relief_blank.json create mode 100644 src/main/resources/assets/mineralogy/items/quartzite_relief_cross.json create mode 100644 src/main/resources/assets/mineralogy/items/quartzite_relief_hammer.json create mode 100644 src/main/resources/assets/mineralogy/items/quartzite_relief_hoe.json create mode 100644 src/main/resources/assets/mineralogy/items/quartzite_relief_horizontal.json create mode 100644 src/main/resources/assets/mineralogy/items/quartzite_relief_i.json create mode 100644 src/main/resources/assets/mineralogy/items/quartzite_relief_left.json create mode 100644 src/main/resources/assets/mineralogy/items/quartzite_relief_pickaxe.json create mode 100644 src/main/resources/assets/mineralogy/items/quartzite_relief_plus.json create mode 100644 src/main/resources/assets/mineralogy/items/quartzite_relief_right.json create mode 100644 src/main/resources/assets/mineralogy/items/quartzite_relief_sword.json create mode 100644 src/main/resources/assets/mineralogy/items/quartzite_relief_vertical.json create mode 100644 src/main/resources/assets/mineralogy/items/quartzite_slab.json create mode 100644 src/main/resources/assets/mineralogy/items/quartzite_smooth.json create mode 100644 src/main/resources/assets/mineralogy/items/quartzite_smooth_brick.json create mode 100644 src/main/resources/assets/mineralogy/items/quartzite_smooth_brick_furnace.json create mode 100644 src/main/resources/assets/mineralogy/items/quartzite_smooth_brick_slab.json create mode 100644 src/main/resources/assets/mineralogy/items/quartzite_smooth_brick_stairs.json create mode 100644 src/main/resources/assets/mineralogy/items/quartzite_smooth_brick_wall.json create mode 100644 src/main/resources/assets/mineralogy/items/quartzite_smooth_furnace.json create mode 100644 src/main/resources/assets/mineralogy/items/quartzite_smooth_slab.json create mode 100644 src/main/resources/assets/mineralogy/items/quartzite_smooth_stairs.json create mode 100644 src/main/resources/assets/mineralogy/items/quartzite_smooth_wall.json create mode 100644 src/main/resources/assets/mineralogy/items/quartzite_stairs.json create mode 100644 src/main/resources/assets/mineralogy/items/quartzite_wall.json create mode 100644 src/main/resources/assets/mineralogy/items/rhyolite.json create mode 100644 src/main/resources/assets/mineralogy/items/rhyolite_brick.json create mode 100644 src/main/resources/assets/mineralogy/items/rhyolite_brick_furnace.json create mode 100644 src/main/resources/assets/mineralogy/items/rhyolite_brick_slab.json create mode 100644 src/main/resources/assets/mineralogy/items/rhyolite_brick_stairs.json create mode 100644 src/main/resources/assets/mineralogy/items/rhyolite_brick_wall.json create mode 100644 src/main/resources/assets/mineralogy/items/rhyolite_furnace.json create mode 100644 src/main/resources/assets/mineralogy/items/rhyolite_relief_axe.json create mode 100644 src/main/resources/assets/mineralogy/items/rhyolite_relief_blank.json create mode 100644 src/main/resources/assets/mineralogy/items/rhyolite_relief_cross.json create mode 100644 src/main/resources/assets/mineralogy/items/rhyolite_relief_hammer.json create mode 100644 src/main/resources/assets/mineralogy/items/rhyolite_relief_hoe.json create mode 100644 src/main/resources/assets/mineralogy/items/rhyolite_relief_horizontal.json create mode 100644 src/main/resources/assets/mineralogy/items/rhyolite_relief_i.json create mode 100644 src/main/resources/assets/mineralogy/items/rhyolite_relief_left.json create mode 100644 src/main/resources/assets/mineralogy/items/rhyolite_relief_pickaxe.json create mode 100644 src/main/resources/assets/mineralogy/items/rhyolite_relief_plus.json create mode 100644 src/main/resources/assets/mineralogy/items/rhyolite_relief_right.json create mode 100644 src/main/resources/assets/mineralogy/items/rhyolite_relief_sword.json create mode 100644 src/main/resources/assets/mineralogy/items/rhyolite_relief_vertical.json create mode 100644 src/main/resources/assets/mineralogy/items/rhyolite_slab.json create mode 100644 src/main/resources/assets/mineralogy/items/rhyolite_smooth.json create mode 100644 src/main/resources/assets/mineralogy/items/rhyolite_smooth_brick.json create mode 100644 src/main/resources/assets/mineralogy/items/rhyolite_smooth_brick_furnace.json create mode 100644 src/main/resources/assets/mineralogy/items/rhyolite_smooth_brick_slab.json create mode 100644 src/main/resources/assets/mineralogy/items/rhyolite_smooth_brick_stairs.json create mode 100644 src/main/resources/assets/mineralogy/items/rhyolite_smooth_brick_wall.json create mode 100644 src/main/resources/assets/mineralogy/items/rhyolite_smooth_furnace.json create mode 100644 src/main/resources/assets/mineralogy/items/rhyolite_smooth_slab.json create mode 100644 src/main/resources/assets/mineralogy/items/rhyolite_smooth_stairs.json create mode 100644 src/main/resources/assets/mineralogy/items/rhyolite_smooth_wall.json create mode 100644 src/main/resources/assets/mineralogy/items/rhyolite_stairs.json create mode 100644 src/main/resources/assets/mineralogy/items/rhyolite_wall.json create mode 100644 src/main/resources/assets/mineralogy/items/rock_salt.json create mode 100644 src/main/resources/assets/mineralogy/items/rock_salt_brick.json create mode 100644 src/main/resources/assets/mineralogy/items/rock_salt_brick_furnace.json create mode 100644 src/main/resources/assets/mineralogy/items/rock_salt_brick_slab.json create mode 100644 src/main/resources/assets/mineralogy/items/rock_salt_brick_stairs.json create mode 100644 src/main/resources/assets/mineralogy/items/rock_salt_brick_wall.json create mode 100644 src/main/resources/assets/mineralogy/items/rock_salt_dust.json create mode 100644 src/main/resources/assets/mineralogy/items/rock_salt_furnace.json create mode 100644 src/main/resources/assets/mineralogy/items/rock_salt_relief_axe.json create mode 100644 src/main/resources/assets/mineralogy/items/rock_salt_relief_blank.json create mode 100644 src/main/resources/assets/mineralogy/items/rock_salt_relief_cross.json create mode 100644 src/main/resources/assets/mineralogy/items/rock_salt_relief_hammer.json create mode 100644 src/main/resources/assets/mineralogy/items/rock_salt_relief_hoe.json create mode 100644 src/main/resources/assets/mineralogy/items/rock_salt_relief_horizontal.json create mode 100644 src/main/resources/assets/mineralogy/items/rock_salt_relief_i.json create mode 100644 src/main/resources/assets/mineralogy/items/rock_salt_relief_left.json create mode 100644 src/main/resources/assets/mineralogy/items/rock_salt_relief_pickaxe.json create mode 100644 src/main/resources/assets/mineralogy/items/rock_salt_relief_plus.json create mode 100644 src/main/resources/assets/mineralogy/items/rock_salt_relief_right.json create mode 100644 src/main/resources/assets/mineralogy/items/rock_salt_relief_sword.json create mode 100644 src/main/resources/assets/mineralogy/items/rock_salt_relief_vertical.json create mode 100644 src/main/resources/assets/mineralogy/items/rock_salt_slab.json create mode 100644 src/main/resources/assets/mineralogy/items/rock_salt_smooth.json create mode 100644 src/main/resources/assets/mineralogy/items/rock_salt_smooth_brick.json create mode 100644 src/main/resources/assets/mineralogy/items/rock_salt_smooth_brick_furnace.json create mode 100644 src/main/resources/assets/mineralogy/items/rock_salt_smooth_brick_slab.json create mode 100644 src/main/resources/assets/mineralogy/items/rock_salt_smooth_brick_stairs.json create mode 100644 src/main/resources/assets/mineralogy/items/rock_salt_smooth_brick_wall.json create mode 100644 src/main/resources/assets/mineralogy/items/rock_salt_smooth_furnace.json create mode 100644 src/main/resources/assets/mineralogy/items/rock_salt_smooth_slab.json create mode 100644 src/main/resources/assets/mineralogy/items/rock_salt_smooth_stairs.json create mode 100644 src/main/resources/assets/mineralogy/items/rock_salt_smooth_wall.json create mode 100644 src/main/resources/assets/mineralogy/items/rock_salt_stairs.json create mode 100644 src/main/resources/assets/mineralogy/items/rock_salt_wall.json create mode 100644 src/main/resources/assets/mineralogy/items/rocksaltlamp.json create mode 100644 src/main/resources/assets/mineralogy/items/rocksaltstreetlamp.json create mode 100644 src/main/resources/assets/mineralogy/items/salt_dust.json create mode 100644 src/main/resources/assets/mineralogy/items/schist.json create mode 100644 src/main/resources/assets/mineralogy/items/schist_brick.json create mode 100644 src/main/resources/assets/mineralogy/items/schist_brick_furnace.json create mode 100644 src/main/resources/assets/mineralogy/items/schist_brick_slab.json create mode 100644 src/main/resources/assets/mineralogy/items/schist_brick_stairs.json create mode 100644 src/main/resources/assets/mineralogy/items/schist_brick_wall.json create mode 100644 src/main/resources/assets/mineralogy/items/schist_furnace.json create mode 100644 src/main/resources/assets/mineralogy/items/schist_relief_axe.json create mode 100644 src/main/resources/assets/mineralogy/items/schist_relief_blank.json create mode 100644 src/main/resources/assets/mineralogy/items/schist_relief_cross.json create mode 100644 src/main/resources/assets/mineralogy/items/schist_relief_hammer.json create mode 100644 src/main/resources/assets/mineralogy/items/schist_relief_hoe.json create mode 100644 src/main/resources/assets/mineralogy/items/schist_relief_horizontal.json create mode 100644 src/main/resources/assets/mineralogy/items/schist_relief_i.json create mode 100644 src/main/resources/assets/mineralogy/items/schist_relief_left.json create mode 100644 src/main/resources/assets/mineralogy/items/schist_relief_pickaxe.json create mode 100644 src/main/resources/assets/mineralogy/items/schist_relief_plus.json create mode 100644 src/main/resources/assets/mineralogy/items/schist_relief_right.json create mode 100644 src/main/resources/assets/mineralogy/items/schist_relief_sword.json create mode 100644 src/main/resources/assets/mineralogy/items/schist_relief_vertical.json create mode 100644 src/main/resources/assets/mineralogy/items/schist_slab.json create mode 100644 src/main/resources/assets/mineralogy/items/schist_smooth.json create mode 100644 src/main/resources/assets/mineralogy/items/schist_smooth_brick.json create mode 100644 src/main/resources/assets/mineralogy/items/schist_smooth_brick_furnace.json create mode 100644 src/main/resources/assets/mineralogy/items/schist_smooth_brick_slab.json create mode 100644 src/main/resources/assets/mineralogy/items/schist_smooth_brick_stairs.json create mode 100644 src/main/resources/assets/mineralogy/items/schist_smooth_brick_wall.json create mode 100644 src/main/resources/assets/mineralogy/items/schist_smooth_furnace.json create mode 100644 src/main/resources/assets/mineralogy/items/schist_smooth_slab.json create mode 100644 src/main/resources/assets/mineralogy/items/schist_smooth_stairs.json create mode 100644 src/main/resources/assets/mineralogy/items/schist_smooth_wall.json create mode 100644 src/main/resources/assets/mineralogy/items/schist_stairs.json create mode 100644 src/main/resources/assets/mineralogy/items/schist_wall.json create mode 100644 src/main/resources/assets/mineralogy/items/scoria.json create mode 100644 src/main/resources/assets/mineralogy/items/scoria_brick.json create mode 100644 src/main/resources/assets/mineralogy/items/scoria_brick_furnace.json create mode 100644 src/main/resources/assets/mineralogy/items/scoria_brick_slab.json create mode 100644 src/main/resources/assets/mineralogy/items/scoria_brick_stairs.json create mode 100644 src/main/resources/assets/mineralogy/items/scoria_brick_wall.json create mode 100644 src/main/resources/assets/mineralogy/items/scoria_furnace.json create mode 100644 src/main/resources/assets/mineralogy/items/scoria_relief_axe.json create mode 100644 src/main/resources/assets/mineralogy/items/scoria_relief_blank.json create mode 100644 src/main/resources/assets/mineralogy/items/scoria_relief_cross.json create mode 100644 src/main/resources/assets/mineralogy/items/scoria_relief_hammer.json create mode 100644 src/main/resources/assets/mineralogy/items/scoria_relief_hoe.json create mode 100644 src/main/resources/assets/mineralogy/items/scoria_relief_horizontal.json create mode 100644 src/main/resources/assets/mineralogy/items/scoria_relief_i.json create mode 100644 src/main/resources/assets/mineralogy/items/scoria_relief_left.json create mode 100644 src/main/resources/assets/mineralogy/items/scoria_relief_pickaxe.json create mode 100644 src/main/resources/assets/mineralogy/items/scoria_relief_plus.json create mode 100644 src/main/resources/assets/mineralogy/items/scoria_relief_right.json create mode 100644 src/main/resources/assets/mineralogy/items/scoria_relief_sword.json create mode 100644 src/main/resources/assets/mineralogy/items/scoria_relief_vertical.json create mode 100644 src/main/resources/assets/mineralogy/items/scoria_slab.json create mode 100644 src/main/resources/assets/mineralogy/items/scoria_smooth.json create mode 100644 src/main/resources/assets/mineralogy/items/scoria_smooth_brick.json create mode 100644 src/main/resources/assets/mineralogy/items/scoria_smooth_brick_furnace.json create mode 100644 src/main/resources/assets/mineralogy/items/scoria_smooth_brick_slab.json create mode 100644 src/main/resources/assets/mineralogy/items/scoria_smooth_brick_stairs.json create mode 100644 src/main/resources/assets/mineralogy/items/scoria_smooth_brick_wall.json create mode 100644 src/main/resources/assets/mineralogy/items/scoria_smooth_furnace.json create mode 100644 src/main/resources/assets/mineralogy/items/scoria_smooth_slab.json create mode 100644 src/main/resources/assets/mineralogy/items/scoria_smooth_stairs.json create mode 100644 src/main/resources/assets/mineralogy/items/scoria_smooth_wall.json create mode 100644 src/main/resources/assets/mineralogy/items/scoria_stairs.json create mode 100644 src/main/resources/assets/mineralogy/items/scoria_wall.json create mode 100644 src/main/resources/assets/mineralogy/items/shale.json create mode 100644 src/main/resources/assets/mineralogy/items/shale_brick.json create mode 100644 src/main/resources/assets/mineralogy/items/shale_brick_furnace.json create mode 100644 src/main/resources/assets/mineralogy/items/shale_brick_slab.json create mode 100644 src/main/resources/assets/mineralogy/items/shale_brick_stairs.json create mode 100644 src/main/resources/assets/mineralogy/items/shale_brick_wall.json create mode 100644 src/main/resources/assets/mineralogy/items/shale_furnace.json create mode 100644 src/main/resources/assets/mineralogy/items/shale_relief_axe.json create mode 100644 src/main/resources/assets/mineralogy/items/shale_relief_blank.json create mode 100644 src/main/resources/assets/mineralogy/items/shale_relief_cross.json create mode 100644 src/main/resources/assets/mineralogy/items/shale_relief_hammer.json create mode 100644 src/main/resources/assets/mineralogy/items/shale_relief_hoe.json create mode 100644 src/main/resources/assets/mineralogy/items/shale_relief_horizontal.json create mode 100644 src/main/resources/assets/mineralogy/items/shale_relief_i.json create mode 100644 src/main/resources/assets/mineralogy/items/shale_relief_left.json create mode 100644 src/main/resources/assets/mineralogy/items/shale_relief_pickaxe.json create mode 100644 src/main/resources/assets/mineralogy/items/shale_relief_plus.json create mode 100644 src/main/resources/assets/mineralogy/items/shale_relief_right.json create mode 100644 src/main/resources/assets/mineralogy/items/shale_relief_sword.json create mode 100644 src/main/resources/assets/mineralogy/items/shale_relief_vertical.json create mode 100644 src/main/resources/assets/mineralogy/items/shale_slab.json create mode 100644 src/main/resources/assets/mineralogy/items/shale_smooth.json create mode 100644 src/main/resources/assets/mineralogy/items/shale_smooth_brick.json create mode 100644 src/main/resources/assets/mineralogy/items/shale_smooth_brick_furnace.json create mode 100644 src/main/resources/assets/mineralogy/items/shale_smooth_brick_slab.json create mode 100644 src/main/resources/assets/mineralogy/items/shale_smooth_brick_stairs.json create mode 100644 src/main/resources/assets/mineralogy/items/shale_smooth_brick_wall.json create mode 100644 src/main/resources/assets/mineralogy/items/shale_smooth_furnace.json create mode 100644 src/main/resources/assets/mineralogy/items/shale_smooth_slab.json create mode 100644 src/main/resources/assets/mineralogy/items/shale_smooth_stairs.json create mode 100644 src/main/resources/assets/mineralogy/items/shale_smooth_wall.json create mode 100644 src/main/resources/assets/mineralogy/items/shale_stairs.json create mode 100644 src/main/resources/assets/mineralogy/items/shale_wall.json create mode 100644 src/main/resources/assets/mineralogy/items/siltstone.json create mode 100644 src/main/resources/assets/mineralogy/items/siltstone_brick.json create mode 100644 src/main/resources/assets/mineralogy/items/siltstone_brick_furnace.json create mode 100644 src/main/resources/assets/mineralogy/items/siltstone_brick_slab.json create mode 100644 src/main/resources/assets/mineralogy/items/siltstone_brick_stairs.json create mode 100644 src/main/resources/assets/mineralogy/items/siltstone_brick_wall.json create mode 100644 src/main/resources/assets/mineralogy/items/siltstone_furnace.json create mode 100644 src/main/resources/assets/mineralogy/items/siltstone_relief_axe.json create mode 100644 src/main/resources/assets/mineralogy/items/siltstone_relief_blank.json create mode 100644 src/main/resources/assets/mineralogy/items/siltstone_relief_cross.json create mode 100644 src/main/resources/assets/mineralogy/items/siltstone_relief_hammer.json create mode 100644 src/main/resources/assets/mineralogy/items/siltstone_relief_hoe.json create mode 100644 src/main/resources/assets/mineralogy/items/siltstone_relief_horizontal.json create mode 100644 src/main/resources/assets/mineralogy/items/siltstone_relief_i.json create mode 100644 src/main/resources/assets/mineralogy/items/siltstone_relief_left.json create mode 100644 src/main/resources/assets/mineralogy/items/siltstone_relief_pickaxe.json create mode 100644 src/main/resources/assets/mineralogy/items/siltstone_relief_plus.json create mode 100644 src/main/resources/assets/mineralogy/items/siltstone_relief_right.json create mode 100644 src/main/resources/assets/mineralogy/items/siltstone_relief_sword.json create mode 100644 src/main/resources/assets/mineralogy/items/siltstone_relief_vertical.json create mode 100644 src/main/resources/assets/mineralogy/items/siltstone_slab.json create mode 100644 src/main/resources/assets/mineralogy/items/siltstone_smooth.json create mode 100644 src/main/resources/assets/mineralogy/items/siltstone_smooth_brick.json create mode 100644 src/main/resources/assets/mineralogy/items/siltstone_smooth_brick_furnace.json create mode 100644 src/main/resources/assets/mineralogy/items/siltstone_smooth_brick_slab.json create mode 100644 src/main/resources/assets/mineralogy/items/siltstone_smooth_brick_stairs.json create mode 100644 src/main/resources/assets/mineralogy/items/siltstone_smooth_brick_wall.json create mode 100644 src/main/resources/assets/mineralogy/items/siltstone_smooth_furnace.json create mode 100644 src/main/resources/assets/mineralogy/items/siltstone_smooth_slab.json create mode 100644 src/main/resources/assets/mineralogy/items/siltstone_smooth_stairs.json create mode 100644 src/main/resources/assets/mineralogy/items/siltstone_smooth_wall.json create mode 100644 src/main/resources/assets/mineralogy/items/siltstone_stairs.json create mode 100644 src/main/resources/assets/mineralogy/items/siltstone_wall.json create mode 100644 src/main/resources/assets/mineralogy/items/slate.json create mode 100644 src/main/resources/assets/mineralogy/items/slate_brick.json create mode 100644 src/main/resources/assets/mineralogy/items/slate_brick_furnace.json create mode 100644 src/main/resources/assets/mineralogy/items/slate_brick_slab.json create mode 100644 src/main/resources/assets/mineralogy/items/slate_brick_stairs.json create mode 100644 src/main/resources/assets/mineralogy/items/slate_brick_wall.json create mode 100644 src/main/resources/assets/mineralogy/items/slate_furnace.json create mode 100644 src/main/resources/assets/mineralogy/items/slate_relief_axe.json create mode 100644 src/main/resources/assets/mineralogy/items/slate_relief_blank.json create mode 100644 src/main/resources/assets/mineralogy/items/slate_relief_cross.json create mode 100644 src/main/resources/assets/mineralogy/items/slate_relief_hammer.json create mode 100644 src/main/resources/assets/mineralogy/items/slate_relief_hoe.json create mode 100644 src/main/resources/assets/mineralogy/items/slate_relief_horizontal.json create mode 100644 src/main/resources/assets/mineralogy/items/slate_relief_i.json create mode 100644 src/main/resources/assets/mineralogy/items/slate_relief_left.json create mode 100644 src/main/resources/assets/mineralogy/items/slate_relief_pickaxe.json create mode 100644 src/main/resources/assets/mineralogy/items/slate_relief_plus.json create mode 100644 src/main/resources/assets/mineralogy/items/slate_relief_right.json create mode 100644 src/main/resources/assets/mineralogy/items/slate_relief_sword.json create mode 100644 src/main/resources/assets/mineralogy/items/slate_relief_vertical.json create mode 100644 src/main/resources/assets/mineralogy/items/slate_slab.json create mode 100644 src/main/resources/assets/mineralogy/items/slate_smooth.json create mode 100644 src/main/resources/assets/mineralogy/items/slate_smooth_brick.json create mode 100644 src/main/resources/assets/mineralogy/items/slate_smooth_brick_furnace.json create mode 100644 src/main/resources/assets/mineralogy/items/slate_smooth_brick_slab.json create mode 100644 src/main/resources/assets/mineralogy/items/slate_smooth_brick_stairs.json create mode 100644 src/main/resources/assets/mineralogy/items/slate_smooth_brick_wall.json create mode 100644 src/main/resources/assets/mineralogy/items/slate_smooth_furnace.json create mode 100644 src/main/resources/assets/mineralogy/items/slate_smooth_slab.json create mode 100644 src/main/resources/assets/mineralogy/items/slate_smooth_stairs.json create mode 100644 src/main/resources/assets/mineralogy/items/slate_smooth_wall.json create mode 100644 src/main/resources/assets/mineralogy/items/slate_stairs.json create mode 100644 src/main/resources/assets/mineralogy/items/slate_wall.json create mode 100644 src/main/resources/assets/mineralogy/items/sulfur_block.json create mode 100644 src/main/resources/assets/mineralogy/items/sulfur_dust.json create mode 100644 src/main/resources/assets/mineralogy/items/sulfur_ore.json create mode 100644 src/main/resources/assets/mineralogy/items/tuff.json create mode 100644 src/main/resources/assets/mineralogy/items/tuff_brick.json create mode 100644 src/main/resources/assets/mineralogy/items/tuff_brick_furnace.json create mode 100644 src/main/resources/assets/mineralogy/items/tuff_brick_slab.json create mode 100644 src/main/resources/assets/mineralogy/items/tuff_brick_stairs.json create mode 100644 src/main/resources/assets/mineralogy/items/tuff_brick_wall.json create mode 100644 src/main/resources/assets/mineralogy/items/tuff_furnace.json create mode 100644 src/main/resources/assets/mineralogy/items/tuff_relief_axe.json create mode 100644 src/main/resources/assets/mineralogy/items/tuff_relief_blank.json create mode 100644 src/main/resources/assets/mineralogy/items/tuff_relief_cross.json create mode 100644 src/main/resources/assets/mineralogy/items/tuff_relief_hammer.json create mode 100644 src/main/resources/assets/mineralogy/items/tuff_relief_hoe.json create mode 100644 src/main/resources/assets/mineralogy/items/tuff_relief_horizontal.json create mode 100644 src/main/resources/assets/mineralogy/items/tuff_relief_i.json create mode 100644 src/main/resources/assets/mineralogy/items/tuff_relief_left.json create mode 100644 src/main/resources/assets/mineralogy/items/tuff_relief_pickaxe.json create mode 100644 src/main/resources/assets/mineralogy/items/tuff_relief_plus.json create mode 100644 src/main/resources/assets/mineralogy/items/tuff_relief_right.json create mode 100644 src/main/resources/assets/mineralogy/items/tuff_relief_sword.json create mode 100644 src/main/resources/assets/mineralogy/items/tuff_relief_vertical.json create mode 100644 src/main/resources/assets/mineralogy/items/tuff_slab.json create mode 100644 src/main/resources/assets/mineralogy/items/tuff_smooth.json create mode 100644 src/main/resources/assets/mineralogy/items/tuff_smooth_brick.json create mode 100644 src/main/resources/assets/mineralogy/items/tuff_smooth_brick_furnace.json create mode 100644 src/main/resources/assets/mineralogy/items/tuff_smooth_brick_slab.json create mode 100644 src/main/resources/assets/mineralogy/items/tuff_smooth_brick_stairs.json create mode 100644 src/main/resources/assets/mineralogy/items/tuff_smooth_brick_wall.json create mode 100644 src/main/resources/assets/mineralogy/items/tuff_smooth_furnace.json create mode 100644 src/main/resources/assets/mineralogy/items/tuff_smooth_slab.json create mode 100644 src/main/resources/assets/mineralogy/items/tuff_smooth_stairs.json create mode 100644 src/main/resources/assets/mineralogy/items/tuff_smooth_wall.json create mode 100644 src/main/resources/assets/mineralogy/items/tuff_stairs.json create mode 100644 src/main/resources/assets/mineralogy/items/tuff_wall.json delete mode 100644 src/main/resources/coremods/mineralogy_legacy_world_fix.js create mode 100644 src/main/resources/data/c/tags/item/lamps/rock_salt.json create mode 100644 src/main/resources/data/c/tags/item/paper.json create mode 100644 src/main/resources/mineralogy.mixins.json diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 319cdec59..59e3e584d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,19 +1,19 @@ -name: Mineralogy 1.21.1 NeoForge CI +name: Mineralogy 1.21.11 NeoForge CI on: push: branches: - - master-1.21.1-neo + - master-1.21.11-neo - 'feature/**' pull_request: branches: - - master-1.21.1-neo + - master-1.21.11-neo permissions: contents: read concurrency: - group: mineralogy-1.21.1-neo-${{ github.workflow }}-${{ github.ref }} + group: mineralogy-1.21.11-neo-${{ github.workflow }}-${{ github.ref }} cancel-in-progress: true jobs: @@ -91,20 +91,20 @@ jobs: - name: Upload audited release candidate uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7 with: - name: Mineralogy-1.21.1-neoforge-${{ github.sha }} + name: Mineralogy-1.21.11-neoforge-${{ github.sha }} if-no-files-found: error retention-days: 30 path: | - build/libs/Mineralogy-6.1.2.121012.jar - build/libs/Mineralogy-6.1.2.121012-sources.jar - build/libs/Mineralogy-6.1.2.121012-javadoc.jar + build/libs/Mineralogy-6.1.2.121112.jar + build/libs/Mineralogy-6.1.2.121112-sources.jar + build/libs/Mineralogy-6.1.2.121112-javadoc.jar build/release/SHA256SUMS CHANGELOG.txt - name: Upload diagnostics on failure if: failure() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7 with: - name: Mineralogy-1.21.1-neoforge-diagnostics-${{ github.sha }} + name: Mineralogy-1.21.11-neoforge-diagnostics-${{ github.sha }} if-no-files-found: ignore retention-days: 14 path: | diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index d1972d7d9..5b976aaa5 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -3,11 +3,11 @@ name: CodeQL on: push: branches: - - master-1.21.1-neo + - master-1.21.11-neo - 'feature/**' pull_request: branches: - - master-1.21.1-neo + - master-1.21.11-neo schedule: - cron: '43 7 * * 4' diff --git a/.github/workflows/validate-gradle-build.yml b/.github/workflows/validate-gradle-build.yml index 270142893..0d91b4d05 100644 --- a/.github/workflows/validate-gradle-build.yml +++ b/.github/workflows/validate-gradle-build.yml @@ -3,11 +3,11 @@ name: Validate Gradle Wrapper on: push: branches: - - master-1.21.1-neo + - master-1.21.11-neo - 'feature/**' pull_request: branches: - - master-1.21.1-neo + - master-1.21.11-neo permissions: contents: read diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 8faa547f1..b4a470e53 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,3 +1,40 @@ +Mineralogy 6.1.2.121112 for Minecraft 1.21.11 NeoForge + +- Ported the accepted NeoForge 1.21.1 product to Minecraft 1.21.11 and + NeoForge 21.11.45 while preserving registry, NBT, provider, configuration, + migration, crude-oil, recipe, locale, guide, relief, mining, furnace, and + world identities. +- Replaced NeoForge 1.21.1's JavaScript conversion coremod with required + Mixins for legacy state-table expansion, level-data capture, protected chunk + writes, and converted chunk preparation/finalization. All 18,192 legacy + mappings, selected-world restoration, sidecars, and furnace normalization + remain intact. +- Adapted registrations, fluids, block entities, fuel handling, item + definitions, identifiers, tags, and JSON recipes to Minecraft 1.21.11. + Runtime cobblestone membership is rebound in place through named holder sets + and holder invalidation callbacks; obsolete ingredient-cache access is gone. +- Retained rock-furnace block entities through 1.21.11's changed-state hook so + lit and unlit transitions preserve contents without a block-state mismatch. + Added canonical `c:paper` and `c:lamps/rock_salt` tags so every retained + Mineralogy recipe resolves under the target tag conventions. +- Restored the NeoForge mod-bus subscription for creative-tab content builds, + so the registered Mineralogy tab or five grouped tabs contain their intended + visible blocks and items. +- Matched Mineralogy's native-equivalent andesite, diorite, granite, basalt, + and tuff models to Minecraft's textures, including upright slabs, stairs, + walls, furnaces, and reliefs. Basalt preserves its separate top and side + surfaces; tuff bricks use native tuff-brick artwork. Mineralogy-only brick + finishes and custom furnace fronts remain distinct, while resource packs can + now restyle each shared family consistently. +- Retained the complete native-rock and tuff contract: 1,433 Mineralogy + recipe/advancement pairs, 18 slab bridges, 48 Minecraft recipe overrides, + 21 Minecraft advancement overrides, and all 19 configurable cobblestone + routes. +- Updated metadata, CI, documentation, exact OreSpawn pin, and release audits + for Minecraft 1.21.11, NeoForge 21.11.45, OreSpawn 4.0.16.121112, Java 21, + resource format 75, and data format 94.1. Mineralogy still registers no + world generator. + Mineralogy 6.1.2.121012 for Minecraft 1.21.1 NeoForge - Ported the accepted NeoForge feature and compatibility contract to Minecraft diff --git a/README.md b/README.md index 172518fba..18ddd8866 100644 --- a/README.md +++ b/README.md @@ -1,21 +1,21 @@ [![Discord](https://img.shields.io/badge/Discord-MMD-green.svg?style=flat&logo=Discord)](https://discord.moddev.zone) [![CurseForge downloads](https://cf.way2muchnoise.eu/full_minecraft-mineralogy_downloads.svg)](https://www.curseforge.com/minecraft/mc-mods/minecraft-mineralogy) [![Supported Minecraft versions](https://cf.way2muchnoise.eu/versions/Minecraft_minecraft-mineralogy_all.svg)](https://www.curseforge.com/minecraft/mc-mods/minecraft-mineralogy) -[![Build, test, and audit](https://github.com/MinecraftModDevelopmentMods/MinecraftMineralogy/actions/workflows/ci.yml/badge.svg?branch=master-1.21.1-neo)](https://github.com/MinecraftModDevelopmentMods/MinecraftMineralogy/actions/workflows/ci.yml?query=branch%3Amaster-1.21.1-neo) +[![Build, test, and audit](https://github.com/MinecraftModDevelopmentMods/MinecraftMineralogy/actions/workflows/ci.yml/badge.svg?branch=master-1.21.11-neo)](https://github.com/MinecraftModDevelopmentMods/MinecraftMineralogy/actions/workflows/ci.yml?query=branch%3Amaster-1.21.11-neo) -# Mineralogy 6 for Minecraft 1.21.1 +# Mineralogy 6 for Minecraft 1.21.11 Mineralogy adds real-world rock families, matching construction blocks, mineral ores and dusts, rock furnaces, drywall, rock-salt lighting, fertilizer, and crude oil. OreSpawn 4 is the sole terrain, strata, ore, and deposit engine; Mineralogy no longer installs a parallel world generator. -This branch builds Mineralogy `6.1.2.121012` for NeoForge `21.1.247` and is built -and tested against OreSpawn `4.0.16.121012`. Its declared compatibility range is +This branch builds Mineralogy `6.1.2.121112` for NeoForge `21.11.45` and is built +and tested against OreSpawn `4.0.16.121112`. Its declared compatibility range is OreSpawn `[4.0.6,5.0.0)`. Install both mods on clients and servers. This is the NeoForge build. It is intentionally maintained separately from the -Forge 1.21.1 branch; use the jar that matches the loader in your modpack. +Forge 1.21.11 branch; use the jar that matches the loader in your modpack. ## Configuration and help diff --git a/build.gradle b/build.gradle index f8e9467c9..a5b505691 100644 --- a/build.gradle +++ b/build.gradle @@ -44,8 +44,8 @@ def versionParts = project.mod_version.toString().tokenize('.') if (versionParts.size() != 4 || !versionParts.every { it ==~ /\d+/ }) { throw new GradleException("mod_version must use Major.Minor.Bug.Target numeric form: ${project.mod_version}") } -if (versionParts[3] != '121012') { - throw new GradleException("Mineralogy 1.21.1 NeoForge releases must use target 121012: ${project.mod_version}") +if (versionParts[3] != '121112') { + throw new GradleException("Mineralogy 1.21.11 NeoForge releases must use target 121112: ${project.mod_version}") } java { @@ -191,7 +191,7 @@ configurations { dependencies { implementation "net.neoforged:neoforge:${project.neo_version}" - // NeoForge 21.1 uses official names in both development and production, so the + // NeoForge 21.11 uses official names in both development and production, so the // exact released OreSpawn artifact is suitable for ordinary runtime use. runtimeOnly(orespawnCoordinate) { transitive = false } orespawnRelease(orespawnCoordinate) { transitive = false } @@ -224,7 +224,6 @@ processResources { minecraft_version_range : project.minecraft_version_range, neo_version : project.neo_version, neo_version_range : project.neo_version_range, - loader_version_range : project.loader_version_range, mod_id : project.mod_id, mod_name : project.mod_name, mod_license : project.mod_license, @@ -261,6 +260,7 @@ tasks.named('jar', Jar) { 'Implementation-Vendor' : 'SkyBlade1978', 'Built-On-Java' : '21', 'Mineralogy-Loader' : 'neoforge', + 'MixinConfigs' : 'mineralogy.mixins.json', 'Built-On' : "${project.minecraft_version}-${project.neo_version}" ]) } @@ -460,13 +460,13 @@ tasks.register('verifyMavenCoordinates') { tasks.register('verifyReleaseConfiguration') { group = 'verification' - description = 'Verifies the exact Mineralogy 1.21.1 NeoForge release identity.' + description = 'Verifies the exact Mineralogy 1.21.11 NeoForge release identity.' doLast { - if (project.mod_version != '6.1.2.121012' + if (project.mod_version != '6.1.2.121112' || project.mod_group != expectedMavenGroup - || project.minecraft_version != '1.21.1' - || project.neo_version != '21.1.247') { - throw new GradleException('Unexpected Mineralogy 1.21.1 NeoForge release identity') + || project.minecraft_version != '1.21.11' + || project.neo_version != '21.11.45') { + throw new GradleException('Unexpected Mineralogy 1.21.11 NeoForge release identity') } } } @@ -475,9 +475,9 @@ tasks.register('verifyReleaseDependencies') { group = 'verification' description = 'Resolves and verifies the exact released OreSpawn dependency.' doLast { - if (project.mod_version != '6.1.2.121012' + if (project.mod_version != '6.1.2.121112' || project.minecraft_version != project.mc_version - || project.mc_version != '1.21.1' + || project.mc_version != '1.21.11' || project.loader_name != 'neoforge' || project.loader_code != '2' || project.java_version != '21' @@ -486,9 +486,9 @@ tasks.register('verifyReleaseDependencies') { || project.curseforge_project_id != '240974') { throw new GradleException('Unexpected generic release dispatcher metadata') } - if (project.orespawn_version != '4.0.16.121012' || + if (project.orespawn_version != '4.0.16.121112' || project.orespawn_curse_project_id != '245586' || - project.orespawn_curse_file_id != '8807135') { + project.orespawn_curse_file_id != '8809764') { throw new GradleException('Unexpected OreSpawn release coordinates') } File artifact = configurations.orespawnRelease.resolvedConfiguration.resolvedArtifacts @@ -532,6 +532,7 @@ tasks.register('verifyReleaseArtifacts') { it.startsWith('zone/moddev/mc/mineralogy/test/') || it.startsWith('ci-fixtures/') || it.contains('minecraft-mavenizer') || it.startsWith('src/test/') || + it == 'META-INF/coremods.json' || it.startsWith('coremods/') || it == 'AGENTS.md' || it.contains('/agent-notes/') }) { throw new GradleException("${artifactName} contains a retired, test, probe, or agent-only path") } @@ -547,6 +548,8 @@ tasks.register('verifyReleaseArtifacts') { [ 'META-INF/neoforge.mods.toml', 'META-INF/accesstransformer.cfg', + 'mineralogy.mixins.json', + 'zone/moddev/mc/mineralogy/Mineralogy.class', 'data/mineralogy/orespawn/provider.json', 'META-INF/mineralogy/docs/README.md', 'META-INF/mineralogy/docs/examples/mineralogy-provider.json', @@ -563,6 +566,9 @@ tasks.register('verifyReleaseArtifacts') { if (actualMavenCoordinate != expectedMavenCoordinate) { throw new GradleException("Expected manifest Maven-Artifact ${expectedMavenCoordinate}, found ${actualMavenCoordinate}") } + if (manifest.mainAttributes.getValue('MixinConfigs') != 'mineralogy.mixins.json') { + throw new GradleException('Release jar does not declare the required Mineralogy mixin configuration') + } } finally { manifestStream.close() @@ -574,6 +580,7 @@ tasks.register('verifyReleaseArtifacts') { it.startsWith('zone/moddev/mc/mineralogy/oilfixture/') || it.startsWith('zone/moddev/mc/mineralogy/test/') || it.startsWith('ci-fixtures/') || it.contains('minecraft-mavenizer') || + it == 'META-INF/coremods.json' || it.startsWith('coremods/') || it == 'AGENTS.md' || it.contains('/agent-notes/') }) { throw new GradleException('Release jar contains a retired, test, probe, or agent-only path') } @@ -606,6 +613,72 @@ tasks.register('verifyReleaseArtifacts') { if (locales.size() != 17) { throw new GradleException("Release jar must contain 17 locales, found ${locales.size()}") } + def legacyItemModels = names.findAll { it ==~ /assets\/mineralogy\/models\/item\/[^\/]+\.json/ } + def itemDefinitions = names.findAll { it ==~ /assets\/mineralogy\/items\/[^\/]+\.json/ } + if (legacyItemModels.size() != 1144 || itemDefinitions.size() != 928) { + throw new GradleException('Release jar must contain 1,144 legacy item models and 928 NeoForge 21.11 item definitions') + } + itemDefinitions.each { definitionName -> + String id = definitionName.substring( + 'assets/mineralogy/items/'.length(), definitionName.length() - '.json'.length()) + if (id.endsWith('_double_slab') || (id.startsWith('lit_') && id.endsWith('_furnace'))) { + throw new GradleException("Hidden block unexpectedly has an item definition: ${id}") + } + def definition = new JsonSlurper().parse(zip.getInputStream(zip.getEntry(definitionName))) + if (definition.model?.type != 'minecraft:model' || + definition.model?.model != "mineralogy:item/${id}") { + throw new GradleException("Invalid NeoForge 21.11 item definition: ${definitionName}") + } + } + def blockModelText = names.findAll { + it.startsWith('assets/mineralogy/models/block/') && it.endsWith('.json') + }.collect { modelName -> + zip.getInputStream(zip.getEntry(modelName)).withCloseable { stream -> + stream.getText('UTF-8') + } + }.join('\n') + [ + 'minecraft:block/andesite': 26, + 'minecraft:block/polished_andesite': 83, + 'minecraft:block/diorite': 26, + 'minecraft:block/polished_diorite': 83, + 'minecraft:block/granite': 26, + 'minecraft:block/polished_granite': 83, + 'minecraft:block/basalt_top': 13, + 'minecraft:block/basalt_side': 14, + 'minecraft:block/polished_basalt_top': 13, + 'minecraft:block/polished_basalt_side': 171, + 'minecraft:block/tuff': 26, + 'minecraft:block/polished_tuff': 83, + 'minecraft:block/tuff_bricks': 28 + ].each { texture, expectedCount -> + int actualCount = blockModelText.count("\"${texture}\"") + if (actualCount != expectedCount) { + throw new GradleException("Expected ${expectedCount} packaged references to ${texture}, found ${actualCount}") + } + } + [ + 'mineralogy:blocks/andesite', + 'mineralogy:blocks/andesite_smooth', + 'mineralogy:blocks/diorite', + 'mineralogy:blocks/diorite_smooth', + 'mineralogy:blocks/granite', + 'mineralogy:blocks/granite_smooth', + 'mineralogy:blocks/basalt', + 'mineralogy:blocks/basalt_smooth', + 'mineralogy:blocks/tuff', + 'mineralogy:blocks/tuff_smooth', + 'mineralogy:blocks/tuff_brick_top', + 'mineralogy:blocks/tuff_brick_side' + ].each { retiredTexture -> + if (blockModelText.contains("\"${retiredTexture}\"")) { + throw new GradleException("Packaged native-equivalent rock model still uses ${retiredTexture}") + } + } + if (blockModelText.count('"mineralogy:blocks/tuff_smooth_brick_top"') != 15 || + blockModelText.count('"mineralogy:blocks/tuff_smooth_brick_side"') != 13) { + throw new GradleException('Packaged Mineralogy-only smooth-tuff-brick models lost their distinct textures') + } zip.entries().findAll { !it.directory && it.name.endsWith('.class') }.each { entry -> byte[] header = new byte[8] def stream = zip.getInputStream(entry) @@ -629,7 +702,7 @@ tasks.register('verifyReleaseArtifacts') { ?.dimensions?.get('minecraft:overworld') if (!provider.rocks.values().every { it.min_y == -64 && it.max_y == 319 } || oil?.min_y != -48 || oil?.max_y != 48) { - throw new GradleException('Packaged provider does not use Minecraft 1.21.1 world heights') + throw new GradleException('Packaged provider does not use Minecraft 1.21.11 world heights') } if (provider.rocks['mineralogy:rock/minecraft/basalt']?.block != 'minecraft:basalt' || provider.rocks['mineralogy:rock/minecraft/tuff']?.block != 'minecraft:tuff' || @@ -642,10 +715,11 @@ tasks.register('verifyReleaseArtifacts') { ] || provider.profile_defaults?.terrain_dimensions?.get('minecraft:overworld')?.host_blocks != ['minecraft:stone', 'minecraft:deepslate'] || !provider.ores.values().every { ore -> - ore.dimensions?.get('minecraft:overworld')?.host_tags == - ['minecraft:stone_ore_replaceables', 'minecraft:deepslate_ore_replaceables'] + def dimension = ore.dimensions?.get('minecraft:overworld') + dimension?.host_blocks == ['minecraft:stone', 'minecraft:deepslate'] && + dimension?.host_tags == [] }) { - throw new GradleException('Packaged provider does not use the Minecraft 1.21.1 native-rock and deepslate contract') + throw new GradleException('Packaged provider does not use the Minecraft 1.21.11 native-rock and deepslate contract') } byte[] providerBytes = zip.getInputStream( zip.getEntry('data/mineralogy/orespawn/provider.json')).bytes @@ -667,7 +741,7 @@ tasks.register('verifyReleaseArtifacts') { 'data/mineralogy/advancement/mineralogy/all_the_rocks.json'))) if (allTheRocks.display?.icon?.id != 'mineralogy:basalt' || allTheRocks.display.icon.containsKey('item')) { - throw new GradleException('Custom advancement icon must use the Minecraft 1.21.1 item-stack id field') + throw new GradleException('Custom advancement icon must use the Minecraft 1.21.11 item-stack id field') } def verifyAdvancementPredicates = { advancement, String source -> advancement.criteria?.each { criterionName, criterion -> @@ -680,7 +754,7 @@ tasks.register('verifyReleaseArtifacts') { ? holderSet.isEmpty() || holderSet.any { !(it instanceof String) || it.isEmpty() } : !(holderSet instanceof String) || holderSet.isEmpty() }) { - throw new GradleException("Invalid Minecraft 1.21.1 item predicate in ${source}: ${criterionName}") + throw new GradleException("Invalid Minecraft 1.21.11 item predicate in ${source}: ${criterionName}") } } } @@ -691,7 +765,7 @@ tasks.register('verifyReleaseArtifacts') { }.each { entryName -> def advancement = new JsonSlurper().parse(zip.getInputStream(zip.getEntry(entryName))) if (advancement.sends_telemetry_event != false) { - throw new GradleException("Minecraft 1.21.1 recipe advancement must disable telemetry: ${entryName}") + throw new GradleException("Minecraft 1.21.11 recipe advancement must disable telemetry: ${entryName}") } if (advancement.criteria != null) verifyAdvancementPredicates(advancement, entryName) } @@ -717,7 +791,7 @@ tasks.register('verifyReleaseArtifacts') { def advancement = new JsonSlurper().parse(zip.getInputStream(zip.getEntry( "data/mineralogy/advancement/recipes/${bridge.name}.json"))) if (recipe.type != 'minecraft:crafting_shapeless' || recipe.ingredients?.size() != 1 || - recipe.ingredients[0].item != bridge.source || recipe.result?.id != bridge.result || + recipe.ingredients[0] != bridge.source || recipe.result?.id != bridge.result || recipe.result?.count != 1 || recipe.containsKey('neoforge:conditions') || advancement.containsKey('neoforge:conditions') || advancement.criteria?.has_rock?.conditions?.items?.getAt(0)?.items != bridge.source) { @@ -768,10 +842,10 @@ tasks.register('verifyReleaseArtifacts') { def data = new JsonSlurper().parse(zip.getInputStream(zip.getEntry( "data/minecraft/recipe/${recipeName}.json"))) String result = "minecraft:${recipeName}" - if (data.key?.C?.tag != 'mineralogy:cobblestone_equivalents' + if (data.key?.C != '#mineralogy:cobblestone_equivalents' || data.pattern != ['#S#', '#C#', '###'] - || data.key?.S?.item != result - || data.key?.get('#')?.item != 'minecraft:diamond' + || data.key?.S != result + || data.key?.get('#') != 'minecraft:diamond' || data.result?.id != result || data.result?.count != 2 || data.category != 'misc' @@ -787,10 +861,10 @@ tasks.register('verifyReleaseArtifacts') { if (recipe.endsWith('_stonecutting')) { if (!(data.result instanceof Map) || data.result.id == null || data.result.count != 2 || data.containsKey('count')) { - throw new GradleException("Invalid Minecraft 1.21.1 stonecutting result: ${recipe}") + throw new GradleException("Invalid Minecraft 1.21.11 stonecutting result: ${recipe}") } } else if (data.result?.id == null) { - throw new GradleException("Invalid Minecraft 1.21.1 slab result: ${recipe}") + throw new GradleException("Invalid Minecraft 1.21.11 slab result: ${recipe}") } } def families = ['andesite', 'basalt', 'diorite', 'granite', 'rhyolite', @@ -809,6 +883,18 @@ tasks.register('verifyReleaseArtifacts') { def expected = [base] + families.collect { "#mineralogy:stones/${it}" } if (values != expected) throw new GradleException("Invalid Mineralogy recipe union tag: ${tag}") } + [ + 'data/c/tags/item/paper.json': ['minecraft:paper'], + 'data/forge/tags/item/paper.json': ['#c:paper'], + 'data/c/tags/item/lamps/rock_salt.json': ['mineralogy:rocksaltlamp'], + 'data/forge/tags/item/lamps/rock_salt.json': ['#c:lamps/rock_salt'] + ].each { entryName, expectedValues -> + def entry = zip.getEntry(entryName) + def values = entry == null ? [] : new JsonSlurper().parse(zip.getInputStream(entry)).values + if (values != expectedValues) { + throw new GradleException("Invalid canonical/compatibility ingredient tag: ${entryName}") + } + } if (!families.every { names.contains("data/mineralogy/tags/block/stones/${it}.json".toString()) }) { throw new GradleException('Release jar must contain all 27 raw-rock family block tags') } @@ -852,7 +938,7 @@ tasks.register('verifyReleaseArtifacts') { def wallBlockstates = names.findAll { it ==~ /assets\/mineralogy\/blockstates\/.+_wall\.json/ } def tallWallModels = names.findAll { it ==~ /assets\/mineralogy\/models\/block\/.+_wall_side_tall\.json/ } if (wallBlockstates.size() != 108 || tallWallModels.size() != 108) { - throw new GradleException("Release jar must contain all 108 NeoForge 21.1 wall blockstates and tall-side models") + throw new GradleException("Release jar must contain all 108 NeoForge 21.11 wall blockstates and tall-side models") } } finally { diff --git a/docs/CONTENT_CONFIG.md b/docs/CONTENT_CONFIG.md index 735d108fb..f3a0b4ab7 100644 --- a/docs/CONTENT_CONFIG.md +++ b/docs/CONTENT_CONFIG.md @@ -71,7 +71,7 @@ as levers, pistons, dispensers, droppers, and brewing stands. Setting it to and stone-crafting recipes while restoring their target-native ingredients. Rocks remain `stone`, retain their material-specific tags, and use exact Mineralogy slab, stair, and wall recipes. Chert and pumice remain historical -unconditional cobblestone equivalents in tag-backed recipes. The three 1.21.1 +unconditional cobblestone equivalents in tag-backed recipes. The three 1.21.11 armor-trim template duplication recipes restore exact vanilla cobblestone when the option is disabled, matching their native definitions. diff --git a/docs/DEVELOPER_GUIDE.md b/docs/DEVELOPER_GUIDE.md index 75f2d71e7..b059eb0fb 100644 --- a/docs/DEVELOPER_GUIDE.md +++ b/docs/DEVELOPER_GUIDE.md @@ -40,31 +40,33 @@ families additionally use `cobblestone`; chert and pumice always retain that identity. Gypsum, chalk, rock salt, and both rock salt lamps retain their specialty aliases. -Minecraft 1.21.1's `minecraft:stone_crafting_materials` and +Minecraft 1.21.11's `minecraft:stone_crafting_materials` and `minecraft:stone_tool_materials` item tags include Mineralogy's dynamic union, so enabled Mineralogy rocks work in native tool recipes. NeoForge itself also uses `c:cobblestones/normal` in several higher-priority vanilla recipe overrides. Mineralogy therefore rebuilds that tag as well as the canonical `c:cobblestones`, compatibility, vanilla, and Mineralogy block and item tag membership after initial tag loading and every data reload. It preserves other -mods' members and clears the cached item stacks in already-parsed recipes so -the recipe manager observes the new membership immediately. +mods' members. Minecraft 1.21.11 removed the old mutable ingredient caches, so +Mineralogy updates both each existing named holder set and every affected +holder's tag membership in place; the holder-set invalidation callbacks make +the recipe manager observe the new membership immediately. Sixteen established vanilla recipes and their advancements use stable Mineralogy union tags for the complete exact-cobblestone, stone-crafting-material, and stone-tool-material contracts. When equivalence is disabled those dynamically rebound tags contain vanilla materials plus unconditional chert and pumice; enabling it adds all 27 families and safe -native aliases. The access transformer exposes only Minecraft's two private -`Ingredient` cache fields needed to invalidate those caches after rebinding; -it changes no game identity or recipe behavior by itself. +native aliases. The access transformer exposes only the package-private holder +binding methods needed for that targeted update; it changes no game identity +or recipe behavior by itself. -Minecraft 1.21.1 retains three additional configurable recipes: coast, sentry, and vex +Minecraft 1.21.11 retains three additional configurable recipes: coast, sentry, and vex armor-trim template duplication. They use the same dynamically rebound Mineralogy cobblestone union. Their vanilla advancements are intentionally untouched because those recipes unlock from owning the template, not from cobblestone. -Minecraft 1.21.1 also owns andesite, basalt, diorite, granite, tuff, and several +Minecraft 1.21.11 also owns andesite, basalt, diorite, granite, tuff, and several matching finishes. Mineralogy's family tags include both native and retained legacy identities. Five `data/minecraft/recipe/polished_*.json` overrides move the native polished-block route from 2x2 crafting to one exact native block plus @@ -72,11 +74,25 @@ sand. That leaves 2x2 matching raw blocks available for Mineralogy bricks. The matching vanilla advancements are overridden too, so native polishing is revealed only after the player has both the exact native rock and sand. +Mineralogy models for exact native-equivalent raw and polished andesite, +diorite, granite, basalt, and tuff surfaces reference Minecraft's textures +directly. Basalt models preserve the native top/side distinction rather than +flattening the column texture. This keeps Mineralogy's upright slabs and other +compatible forms visually continuous with their native inputs and lets +resource packs restyle both identities together. Mineralogy-only brick +finishes and custom furnace fronts retain their own artwork. + Native `minecraft:tuff`, `minecraft:polished_tuff`, and `minecraft:tuff_bricks` join the matching family tags only where no competing vanilla output exists. Tuff plus sand produces vanilla polished tuff, while a 2x2 of raw tuff remains Mineralogy's brick route. Vanilla polished-tuff brick, stair, wall, and chiseled recipes remain authoritative. +Mineralogy models in those three exact tuff families reference +`minecraft:block/tuff`, `minecraft:block/polished_tuff`, and +`minecraft:block/tuff_bricks` directly. This keeps Mineralogy's upright slabs +and other compatible forms visually continuous with native blocks. +Mineralogy's smooth tuff brick has no native equivalent and retains its own +texture. `minecraft:smooth_basalt` joins the smooth-basalt family and can unlock and craft Mineralogy smooth-basalt forms, while Minecraft's basalt-to-smooth-basalt smelting recipe remains intact. @@ -107,7 +123,7 @@ material and finish so basalt cannot produce a different rock's slab or wall. ## Crafting Data -All Mineralogy recipes are native Minecraft/NeoForge 1.21.1 JSON under +All Mineralogy recipes are native Minecraft/NeoForge 1.21.11 JSON under `data/mineralogy/recipe/`. Run `scripts/generate-recipes.ps1` after changing the recipe matrix; it generates the 27 stone families and global recipes, the native slab/stonecutting overrides and compatibility conversions, and the five @@ -117,7 +133,7 @@ advancement with the same NeoForge conditions and the same exact-item or family-tag material predicate as the recipe. Unlocks use direct inventory ingredients instead of listening to other recipe unlocks, which would recursively reveal an entire construction tree. Polishing uses Minecraft -1.21.1's advancement requirements matrix to require the matching source plus +1.21.11's advancement requirements matrix to require the matching source plus accepted sand; manually crafting a recipe is the target-native fallback for Forge's delayed crafting-output inventory trigger. Rock-furnace advancements use the matching slab-family tag as their sole material criterion. They @@ -144,14 +160,14 @@ The legacy `GENERATE_*` flags can remove registrations on the next start. The new issue-121 switches only change creative visibility and Mineralogy-owned recipes, so existing content remains loadable. -NeoForge 21.1 converts pre-flattening chunks lazily. The coremod expands Minecraft's -fixed legacy state tables before conversion, and the selected-world hook +NeoForge 21.11 converts pre-flattening chunks lazily. Required Mixins expand +Minecraft's fixed legacy state tables before conversion, and the selected-world hook installs the complete saved block mapping before Mojang's data fixer. It reinstalls that mapping after the client enumerates other old saves, normalizes legacy rock-furnace tile IDs, retains sidecar recovery, and protects populated -chunks from cross-boundary feature writes. Its packaged runtime uses SRG method -names, so transformer matching relies on stable owners and descriptors and -fails startup if an insertion point cannot be found. Validate both previously +chunks from cross-boundary feature writes. The Mixins target exact owners and +descriptors and fail startup if a required injection point cannot be found. +The obsolete JavaScript coremod is deliberately absent. Validate both previously unloaded occupied furnaces and new chunks at an old-world boundary in the reobfuscated jar; a development launch alone cannot prove this path. @@ -173,5 +189,5 @@ OreSpawn in a launcher-like NeoForge installation. The normal jar packages this guide under `META-INF/mineralogy/docs/`. The complete release version is `Major.Minor.Bug.Target`; see -[Mineralogy Versioning](VERSIONS.md). This branch validates target `121012` -for Minecraft 1.21.1 NeoForge and does not append CI build numbers. +[Mineralogy Versioning](VERSIONS.md). This branch validates target `121112` +for Minecraft 1.21.11 NeoForge and does not append CI build numbers. diff --git a/docs/PLAYER_GUIDE.md b/docs/PLAYER_GUIDE.md index 6270ccca6..1b9ad94ca 100644 --- a/docs/PLAYER_GUIDE.md +++ b/docs/PLAYER_GUIDE.md @@ -2,8 +2,8 @@ ## Installing -Mineralogy 6 needs Minecraft 1.21.1, NeoForge 21.1.247, and OreSpawn -4.0.16.121012. Do not mix this NeoForge jar with the separate Forge build. +Mineralogy 6 needs Minecraft 1.21.11, NeoForge 21.11.45, and OreSpawn +4.0.16.121112. Do not mix this NeoForge jar with the separate Forge build. Install matching Mineralogy and OreSpawn jars on both clients and servers. Do not open a world containing Mineralogy blocks without Mineralogy installed. @@ -19,7 +19,7 @@ Cyano/`LEGACY` engine with their established family order and layer settings. It does not silently convert old terrain to Stable Layers. Back up an important world before changing its profile or upgrading mods. -On the first 1.21.1 start, Mineralogy recognizes the old saved registry and +On the first 1.21.11 start, Mineralogy recognizes the old saved registry and protects existing Overworld chunks while Minecraft converts them to flattened block states. Rock furnaces are converted when their chunk is first loaded; their inventory and cooking progress are retained. Old vanilla tile IDs are @@ -56,6 +56,11 @@ back without loss. Minecraft's native basalt and tuff work as members of their matching Mineralogy families. Native smooth basalt also works wherever Mineralogy expects smooth basalt, while Minecraft's normal basalt-smelting recipe is left unchanged. +Mineralogy's native-equivalent andesite, diorite, granite, basalt, and tuff +construction forms use the matching Minecraft textures, so upright-capable +slabs blend with their native blocks and follow the same resource pack. Tuff +brick forms use native tuff-brick artwork; Mineralogy-only brick finishes and +custom furnace fronts remain visually distinct. Deepslate is used as terrain and an ore host, but is not a Mineralogy construction family. @@ -85,7 +90,7 @@ Its **Rock Settings** screen provides four altitude controls: - **Minimum Y** (`min_y`) and **Maximum Y** (`max_y`) are inclusive hard limits. The rock cannot replace terrain outside them. -Minecraft 1.21.1 accepts Y `-64` through `319`; Depth Spread accepts `1` through +Minecraft 1.21.11 accepts Y `-64` through `319`; Depth Spread accepts `1` through `512`. The saved fields are independent of the rock's geological family, overall weight, and geome weights, which also affect where it is selected. @@ -113,7 +118,7 @@ terrain replacement through each dimension's `host_blocks` and `host_tags`. The packaged Mineralogy profile initially uses `minecraft:stone` and `minecraft:deepslate` in the Overworld. -The terrain-host list is not exposed by OreSpawn's 1.21.1 graphical editor. Stop +The terrain-host list is not exposed by OreSpawn's 1.21.11 graphical editor. Stop Minecraft or the server before editing the JSON. For defaults inherited by worlds created afterward, edit: @@ -147,11 +152,11 @@ each natural terrain block that Mineralogy rock may replace: ``` Use `host_tags` when an OreSpawn/pack-provided group is more appropriate; on -Minecraft 1.21.1 these resolve through target-native block tags. Exact +Minecraft 1.21.11 these resolve through target-native block tags. Exact `host_blocks` entries are the clearest choice for one modded stone. -Minecraft 1.21.1 matches a `host_blocks` entry by flattened block registry +Minecraft 1.21.11 matches a `host_blocks` entry by flattened block registry identity. Add only natural base-terrain blocks, not machines, containers, or construction blocks. Restart after editing. The change affects only chunks generated afterward; @@ -160,11 +165,11 @@ OreSpawn never retro-generates Mineralogy rock strata into existing chunks. ### Enabling Mineralogy Geology In Another Dimension OreSpawn can apply Mineralogy rocks to a stone-based mod dimension without a -separate Mineralogy dimension option. Minecraft 1.21.1 uses the dimension +separate Mineralogy dimension option. Minecraft 1.21.11 uses the dimension type's registered ID. For example, use `examplemod:moon` when that is the ID documented by the installed dimension mod. -The 1.21.1 graphical editor does not expose terrain-dimension or rock-membership +The 1.21.11 graphical editor does not expose terrain-dimension or rock-membership fields. Stop Minecraft or the server and edit the appropriate OreSpawn JSON: `config/orespawn-worldgen.json` for defaults inherited by future worlds, or `/serverconfig/orespawn-worldgen.json` for an established world. diff --git a/docs/PROVIDER.md b/docs/PROVIDER.md index 74a466a14..e6adb97ea 100644 --- a/docs/PROVIDER.md +++ b/docs/PROVIDER.md @@ -14,7 +14,7 @@ The exact bytes from the installed build are exported as - Provider schema 4, mod ID `mineralogy`, and provider revision 3. - 32 enabled rock rules across the four geological families. - Sulfur, phosphorous, and nitrate ore rules. -- Minecraft 1.21.1 heights `-64` through `319` and Overworld-only terrain defaults. +- Minecraft 1.21.11 heights `-64` through `319` and Overworld-only terrain defaults. - Minecraft blocks for granite, diorite, andesite, basalt, and tuff. Worldgen aliases map the five matching historical Mineralogy rock IDs to their native outputs, while all historical Mineralogy blocks remain registered for old @@ -82,7 +82,7 @@ that same dimension ID to each desired rock rule's `dimensions` array. A rock without `dimensions` is Overworld-only. A configured custom dimension is disabled during baking when no valid rock rules include it. -Minecraft 1.21.1 uses the registered dimension-type ID, such as +Minecraft 1.21.11 uses the registered dimension-type ID, such as `examplemod:moon`; consult the dimension mod's documentation for its exact ID. Rock membership makes different stone sets possible per dimension. To use different altitude settings for the same output block, define unique rock rule @@ -90,7 +90,7 @@ IDs with different `depth_peak`, `depth_spread`, `min_y`, or `max_y` values and non-overlapping dimension lists. Duplicate output states within one dimension are rejected. -The 1.21.1 editor does not expose terrain-dimension or rock-membership fields, so +The 1.21.11 editor does not expose terrain-dimension or rock-membership fields, so players edit the stopped world's saved profile and pack authors may provide global defaults or a complete provider override. Changes affect newly generated chunks only. @@ -112,6 +112,6 @@ intends to replace the whole packaged Mineralogy provider; it is unnecessary for an ordinary per-world host-list change and does not rewrite established world profiles. -On Minecraft 1.21.1, terrain hosts are baked as flattened block identities. +On Minecraft 1.21.11, terrain hosts are baked as flattened block identities. Changes affect only newly generated chunks because Mineralogy strata are never retro-generated. diff --git a/docs/README.md b/docs/README.md index 7a5a86fd2..5317171f5 100644 --- a/docs/README.md +++ b/docs/README.md @@ -1,6 +1,6 @@ # Mineralogy Guide -Mineralogy 6 for Minecraft 1.21.1 supplies rock, mineral, construction, and +Mineralogy 6 for Minecraft 1.21.11 supplies rock, mineral, construction, and crude-oil content to OreSpawn 4. OreSpawn is the only terrain and deposit engine. diff --git a/docs/VERSIONS.md b/docs/VERSIONS.md index f38d33a5c..2a1dbd041 100644 --- a/docs/VERSIONS.md +++ b/docs/VERSIONS.md @@ -13,10 +13,10 @@ The first three components are the **functional version**. Mineralogy `6.1.2` means major generation 6, minor release 1, and bug revision 2. The fourth component identifies the target build. The complete version for -this Minecraft 1.21.1 NeoForge release is therefore: +this Minecraft 1.21.11 NeoForge release is therefore: ```text -6.1.2.121012 +6.1.2.121112 ``` This expanded numeric form is compatible with Maven version ordering, but it @@ -25,7 +25,7 @@ components. The release tag is exactly the complete four-component version, with no redundant Minecraft-version prefix. For this branch the tag is therefore -`6.1.2.121012`, not `1.21.1-6.1.2.121012`. The Target already makes tags unique +`6.1.2.121112`, not `1.21.11-6.1.2.121112`. The Target already makes tags unique across Minecraft versions and loaders. ## Reading the target component @@ -60,10 +60,11 @@ minor digits, and all remaining digits for the Minecraft major version. | 1.21.1 | Forge | `121011` | `6.1.2.121011` | | 1.21.1 | NeoForge | `121012` | `6.1.2.121012` | | 1.21.11 | Forge | `121111` | `6.1.2.121111` | +| 1.21.11 | NeoForge | `121112` | `6.1.2.121112` | | 26.2 | Forge | `2602001` | `6.0.0.2602001` | | 26.2 | NeoForge | `2602002` | `6.0.0.2602002` | -The 1.21.1 NeoForge row records this branch's current release. The other rows illustrate +The 1.21.11 NeoForge row records this branch's current release. The other rows illustrate target encoding or earlier releases; they do not claim that later Minecraft targets already contain the same functional changes. @@ -124,8 +125,9 @@ Minecraft 1.17.1 / Forge / Mineralogy 6.1.0.117011 Minecraft 1.18.2 / Forge / Mineralogy 6.1.2.118021 Minecraft 1.19.4 / Forge / Mineralogy 6.1.2.119041 Minecraft 1.20.1 / Forge / Mineralogy 6.1.2.120011 -Minecraft 1.21.1 / Forge / Mineralogy 6.1.2.120061 +Minecraft 1.20.6 / Forge / Mineralogy 6.1.2.120061 Minecraft 1.21.1 / NeoForge / Mineralogy 6.1.2.121012 +Minecraft 1.21.11 / NeoForge / Mineralogy 6.1.2.121112 ``` Minecraft and loader APIs may require different internal code without changing @@ -157,8 +159,8 @@ excluding Mineralogy 7. Minecraft and loader metadata still decide whether a particular jar can load on the current game. Mineralogy 6 also requires OreSpawn `[4.0.6,5.0.0)`. OreSpawn uses the same -target calculation, so the matching Minecraft 1.21.1 NeoForge release used for -this candidate is `4.0.16.121012`. The dependency range deliberately describes the supported +target calculation, so the matching Minecraft 1.21.11 NeoForge release used for +this candidate is `4.0.16.121112`. The dependency range deliberately describes the supported functional OreSpawn generation; NeoForge still prevents jars for another Minecraft target from loading together. @@ -171,7 +173,7 @@ feature generation, not the exact jar. The Gradle build reads the complete version from `mod_version`, verifies that it has four numeric components, and checks that its Target matches the declared Minecraft version and NeoForge loader. CI build numbers are not appended. For this -branch, published metadata and artifacts therefore use `6.1.2.121012`. +branch, published metadata and artifacts therefore use `6.1.2.121112`. Every release note should state: diff --git a/gradle.properties b/gradle.properties index e2346fb7b..43793ae41 100644 --- a/gradle.properties +++ b/gradle.properties @@ -5,8 +5,9 @@ org.gradle.daemon=false org.gradle.configuration-cache=false org.gradle.caching=true org.gradle.parallel=false +neogradle.subsystems.decompiler.enabled=true -mod_version=6.1.2.121012 +mod_version=6.1.2.121112 mod_group=zone.moddev.mc.mineralogy mod_group_id=zone.moddev.mc.mineralogy mod_id=mineralogy @@ -16,21 +17,20 @@ mod_authors=Cyanobacterium, SkyBlade1978, JRIwanek mod_description=Fills the world with real-world rocks. # Release metadata consumed by the generic dispatcher. -minecraft_version=1.21.1 -mc_version=1.21.1 -minecraft_version_range=[1.21.1,1.22) +minecraft_version=1.21.11 +mc_version=1.21.11 +minecraft_version_range=[1.21.11] loader_name=neoforge loader_code=2 -neo_version=21.1.247 -neo_version_range=[21.1.247,21.2) -loader_version_range=[3,) +neo_version=21.11.45 +neo_version_range=[21.11.45,21.12) java_version=21 java_toolchain_version=21.0.7+6 java_setup_version=21.0.7+6.0.LTS gradle_java_version=21 curseforge_project_id=240974 -orespawn_version=4.0.16.121012 +orespawn_version=4.0.16.121112 orespawn_curse_project_id=245586 -orespawn_curse_file_id=8807135 -orespawn_sha256=B0659E071633D9EC42A96D9759895DE2F5126C205A4BDBFEE0EB8E3F226D158B +orespawn_curse_file_id=8809764 +orespawn_sha256=F7F2840D11090EC3B6A7A73AD380CFCAC3C034D3C8FCD9914CA1AAD4219E19E9 diff --git a/resourcepack/x128/pack.mcmeta b/resourcepack/x128/pack.mcmeta index 13f02bc82..03cdd6175 100644 --- a/resourcepack/x128/pack.mcmeta +++ b/resourcepack/x128/pack.mcmeta @@ -1,6 +1,7 @@ { "pack": { - "pack_format": 3, + "max_format": 75, + "min_format": 75, "description": "Minecraft Mineralogy\n-FoxNekitsune & DrCyano" } -} \ No newline at end of file +} diff --git a/resourcepack/x16/pack.mcmeta b/resourcepack/x16/pack.mcmeta index 13f02bc82..03cdd6175 100644 --- a/resourcepack/x16/pack.mcmeta +++ b/resourcepack/x16/pack.mcmeta @@ -1,6 +1,7 @@ { "pack": { - "pack_format": 3, + "max_format": 75, + "min_format": 75, "description": "Minecraft Mineralogy\n-FoxNekitsune & DrCyano" } -} \ No newline at end of file +} diff --git a/resourcepack/x32/pack.mcmeta b/resourcepack/x32/pack.mcmeta index 782ef72ae..8bc4db74d 100644 --- a/resourcepack/x32/pack.mcmeta +++ b/resourcepack/x32/pack.mcmeta @@ -1,6 +1,7 @@ { "pack": { - "pack_format": 3, + "max_format": 75, + "min_format": 75, "description": "Minecraft Mineralogy\n-Fox Nekitsune & DrCyano" } -} \ No newline at end of file +} diff --git a/resourcepack/x64/pack.mcmeta b/resourcepack/x64/pack.mcmeta index 782ef72ae..8bc4db74d 100644 --- a/resourcepack/x64/pack.mcmeta +++ b/resourcepack/x64/pack.mcmeta @@ -1,6 +1,7 @@ { "pack": { - "pack_format": 3, + "max_format": 75, + "min_format": 75, "description": "Minecraft Mineralogy\n-Fox Nekitsune & DrCyano" } -} \ No newline at end of file +} diff --git a/scripts/generate-locales.ps1 b/scripts/generate-locales.ps1 index 23689fb5f..aa451787d 100644 --- a/scripts/generate-locales.ps1 +++ b/scripts/generate-locales.ps1 @@ -53,4 +53,4 @@ $actual = @(Get-ChildItem -LiteralPath $targetRoot -Filter '*.json' | Sort-Objec if ($actual.Count -ne 17) { throw "Expected exactly 17 generated locale files, found $($actual.Count)" } -Write-Output 'Generated 17 reviewed Mineralogy 1.21.1 JSON locales with 938 ordered keys each.' +Write-Output 'Generated 17 reviewed Mineralogy 1.21.11 JSON locales with 938 ordered keys each.' diff --git a/scripts/generate-recipes.ps1 b/scripts/generate-recipes.ps1 index 20e474944..152ae208c 100644 --- a/scripts/generate-recipes.ps1 +++ b/scripts/generate-recipes.ps1 @@ -27,7 +27,7 @@ $colors = @( 'gray', 'pink', 'lime', 'yellow', 'light_blue', 'magenta', 'orange', 'white' ) -# Minecraft owns these full-block identities in 1.21.1. Mineralogy keeps its +# Minecraft owns these full-block identities in 1.21.11. Mineralogy keeps its # legacy blocks registered, but recipes may accept either identity where doing # so cannot compete with a native recipe. $nativeFullBlocks = @{ @@ -116,11 +116,16 @@ function ItemIngredient([string] $item, [object] $data = $null) { $item = "minecraft:$($dyes[[int]$data])" } } - $ingredient = [ordered]@{ item = $item } - return $ingredient + return $item } function AdvancementPredicate([object] $ingredient) { + if ($ingredient -is [string]) { + return [ordered]@{ items = [string]$ingredient } + } + if ($ingredient -is [System.Array]) { + return [ordered]@{ items = @($ingredient) } + } if ($ingredient -is [System.Collections.IDictionary]) { if ($ingredient.Contains('item')) { return [ordered]@{ items = [string]$ingredient['item'] } @@ -141,33 +146,33 @@ function AdvancementPredicate([object] $ingredient) { if ($null -ne $ingredient.PSObject.Properties['items']) { return [ordered]@{ items = $ingredient.items } } - throw "Cannot convert recipe ingredient into a Minecraft 1.21.1 advancement predicate" + throw "Cannot convert recipe ingredient into a Minecraft 1.21.11 advancement predicate" } function OreIngredient([string] $ore) { - if ($ore -eq 'sand') { return [ordered]@{ tag = 'c:sands' } } - if ($ore -eq 'paper') { return [ordered]@{ tag = 'c:paper' } } - if ($ore -eq 'drywallWhite') { return [ordered]@{ tag = 'mineralogy:drywall/white' } } - if ($ore -eq 'lampRocksalt') { return [ordered]@{ tag = 'c:lamps/rock_salt' } } + if ($ore -eq 'sand') { return '#c:sands' } + if ($ore -eq 'paper') { return '#c:paper' } + if ($ore -eq 'drywallWhite') { return '#mineralogy:drywall/white' } + if ($ore -eq 'lampRocksalt') { return '#c:lamps/rock_salt' } if ($ore -match '^dust(.+)$') { $name = $Matches[1] -replace 'Rock_salt', 'rock_salt' - return [ordered]@{ tag = "c:dusts/$($name.ToLowerInvariant())" } + return "#c:dusts/$($name.ToLowerInvariant())" } if ($ore -match '^block(.+)$') { $name = $Matches[1] -replace 'Rocksalt', 'rock_salt' - return [ordered]@{ tag = "c:storage_blocks/$($name.ToLowerInvariant())" } + return "#c:storage_blocks/$($name.ToLowerInvariant())" } if ($ore -match '^stone(.+?)(SmoothBrick|Smooth|Brick)?$') { $family = Convert-CamelToSnake $Matches[1] $finish = if ($Matches[2]) { '/' + (Convert-CamelToSnake $Matches[2]) } else { '' } - return [ordered]@{ tag = "mineralogy:stones/$family$finish" } + return "#mineralogy:stones/$family$finish" } if ($ore -match '^slab(.+?)(SmoothBrick|Smooth|Brick)?$') { $family = Convert-CamelToSnake $Matches[1] $finish = if ($Matches[2]) { '/' + (Convert-CamelToSnake $Matches[2]) } else { '' } - return [ordered]@{ tag = "mineralogy:slabs/$family$finish" } + return "#mineralogy:slabs/$family$finish" } - throw "No Minecraft 1.21.1 tag mapping for legacy OreDictionary key $ore" + throw "No Minecraft 1.21.11 tag mapping for legacy OreDictionary key $ore" } function Convert-CamelToSnake([string] $value) { @@ -337,14 +342,14 @@ function Add-SandUnlockCriteria( $criteria['has_sand'] = [ordered]@{ trigger = 'minecraft:inventory_changed' conditions = [ordered]@{ - items = @([ordered]@{ items = @('minecraft:sand') }) + items = @([ordered]@{ items = 'minecraft:sand' }) } } if ($sandMode -eq 'ore_dictionary') { $criteria['has_red_sand'] = [ordered]@{ trigger = 'minecraft:inventory_changed' conditions = [ordered]@{ - items = @([ordered]@{ items = @('minecraft:red_sand') }) + items = @([ordered]@{ items = 'minecraft:red_sand' }) } } } @@ -363,6 +368,9 @@ function Get-UnlockRequirements([string] $sandMode) { } function Resolve-UnlockIngredient([object] $ingredient) { + if ($ingredient -is [string] -or $ingredient -is [System.Array]) { + return $ingredient + } if ($null -ne $ingredient.item) { return [ordered]@{ item = [string]$ingredient.item } } @@ -897,17 +905,29 @@ function Prepare-TargetDirectories() { foreach ($file in Get-ChildItem -LiteralPath $recipeRoot -Filter '*.json') { $recipe = Get-Content -LiteralPath $file.FullName -Raw | ConvertFrom-Json if ($recipe.type -eq 'minecraft:smelting') { - if ($null -eq $recipe.ingredient.item) { + $smeltingIngredient = if ($recipe.ingredient -is [string]) { + [string]$recipe.ingredient + } + elseif ($null -ne $recipe.ingredient.item) { + [string]$recipe.ingredient.item + } + else { + $null + } + if ($null -eq $smeltingIngredient) { throw "Smelting recipe $($file.Name) has no direct item ingredient" } - Register-UnlockSource $file.BaseName ([string]$recipe.ingredient.item) + Register-UnlockSource $file.BaseName $smeltingIngredient $orderedRecipe = [ordered]@{ type = [string]$recipe.type category = 'blocks' } foreach ($property in $recipe.PSObject.Properties) { if ($property.Name -notin @('type', 'category')) { - if ($property.Name -eq 'result' -and $property.Value -is [string]) { + if ($property.Name -eq 'ingredient') { + $orderedRecipe[$property.Name] = $smeltingIngredient + } + elseif ($property.Name -eq 'result' -and $property.Value -is [string]) { $orderedRecipe[$property.Name] = [ordered]@{ id = [string]$property.Value } } else { @@ -1029,7 +1049,7 @@ function Write-CobblestoneRecipeTags() { function VanillaRecipeAdvancement( [string] $recipeName, [string] $criterionName, - [System.Collections.IDictionary] $criterionIngredient + [object] $criterionIngredient ) { return [ordered]@{ parent = 'minecraft:recipes/root' @@ -1054,8 +1074,8 @@ function Write-ConditionalMinecraftAdvancement( [string] $recipeName, [System.Collections.IDictionary] $condition, [string] $criterionName, - [System.Collections.IDictionary] $enabledIngredient, - [System.Collections.IDictionary] $fallbackIngredient + [object] $enabledIngredient, + [object] $fallbackIngredient ) { $directory = Join-Path $minecraftAdvancementRoot $category New-Item -ItemType Directory -Force -Path $directory | Out-Null @@ -1065,12 +1085,12 @@ function Write-ConditionalMinecraftAdvancement( function Write-CobblestoneRecipeOverrides() { $condition = ConfigCondition 'COBBLESTONE_EQUIVILENT' - $enabledCobblestone = [ordered]@{ tag = 'mineralogy:cobblestone_equivalents' } - $fallbackCobblestone = [ordered]@{ tag = 'c:cobblestones' } - $enabledCrafting = [ordered]@{ tag = 'mineralogy:stone_crafting_materials' } - $fallbackCrafting = [ordered]@{ tag = 'minecraft:stone_crafting_materials' } - $enabledTools = [ordered]@{ tag = 'mineralogy:stone_tool_materials' } - $fallbackTools = [ordered]@{ tag = 'minecraft:stone_tool_materials' } + $enabledCobblestone = '#mineralogy:cobblestone_equivalents' + $fallbackCobblestone = '#c:cobblestones' + $enabledCrafting = '#mineralogy:stone_crafting_materials' + $fallbackCrafting = '#minecraft:stone_crafting_materials' + $enabledTools = '#mineralogy:stone_tool_materials' + $fallbackTools = '#minecraft:stone_tool_materials' Write-ConditionalMinecraftRecipe 'furnace' $condition ` (VanillaShapedRecipe @('###', '# #', '###') ([ordered]@{ '#' = $enabledCrafting }) 'minecraft:furnace') ` @@ -1092,11 +1112,11 @@ function Write-CobblestoneRecipeOverrides() { Write-ConditionalMinecraftRecipe 'piston' $condition ` (VanillaShapedRecipe @('TTT', '#X#', '#R#') ([ordered]@{ R = ItemIngredient 'minecraft:redstone'; '#' = $enabledCobblestone - T = [ordered]@{ tag = 'minecraft:planks' }; X = ItemIngredient 'minecraft:iron_ingot' + T = '#minecraft:planks'; X = ItemIngredient 'minecraft:iron_ingot' }) 'minecraft:piston') ` (VanillaShapedRecipe @('TTT', '#X#', '#R#') ([ordered]@{ R = ItemIngredient 'minecraft:redstone'; '#' = $fallbackCobblestone - T = [ordered]@{ tag = 'minecraft:planks' }; X = ItemIngredient 'minecraft:iron_ingot' + T = '#minecraft:planks'; X = ItemIngredient 'minecraft:iron_ingot' }) 'minecraft:piston') Write-ConditionalMinecraftRecipe 'dispenser' $condition ` (VanillaShapedRecipe @('###', '#X#', '#R#') ([ordered]@{ @@ -1361,4 +1381,4 @@ $advancementCount = Synchronize-AdvancementConditions if ($advancementCount -ne $expectedTargetRecipeCount) { throw "Expected $expectedTargetRecipeCount recipe advancements, found $advancementCount" } -Write-Output "Generated $expectedRecipeCount crafting recipe JSON files, retained 28 target-native smelting recipes, created $createdAdvancements missing recipe advancements, and conditioned $advancementCount Minecraft 1.21.1 recipe advancements." +Write-Output "Generated $expectedRecipeCount crafting recipe JSON files, retained 28 target-native smelting recipes, created $createdAdvancements missing recipe advancements, and conditioned $advancementCount Minecraft 1.21.11 recipe advancements." diff --git a/src/main/java/zone/moddev/mc/mineralogy/Mineralogy.java b/src/main/java/zone/moddev/mc/mineralogy/Mineralogy.java index 4d6d43499..079841da6 100644 --- a/src/main/java/zone/moddev/mc/mineralogy/Mineralogy.java +++ b/src/main/java/zone/moddev/mc/mineralogy/Mineralogy.java @@ -3,6 +3,7 @@ import zone.moddev.mc.mineralogy.compat.CobblestoneTagPolicy; import zone.moddev.mc.mineralogy.documentation.DocumentationExporter; import zone.moddev.mc.mineralogy.init.MineralogyFluids; +import zone.moddev.mc.mineralogy.init.MineralogyItemGroups; import zone.moddev.mc.mineralogy.migration.LegacyMineralogy6ConfigMigrator; import zone.moddev.mc.mineralogy.migration.LegacyOreConfigMigrator; import zone.moddev.mc.mineralogy.patching.LegacyWorldDataHook; @@ -46,8 +47,6 @@ public Mineralogy(IEventBus modEventBus, ModContainer modContainer) { MineralogyFluids.register(modEventBus); NeoForge.EVENT_BUS.addListener(EventPriority.HIGHEST, LegacyWorldDataHook::onServerAboutToStart); - NeoForge.EVENT_BUS.addListener(EventPriority.HIGHEST, - CobblestoneTagPolicy::onServerAboutToStart); NeoForge.EVENT_BUS.addListener(CobblestoneTagPolicy::onTagsUpdated); } diff --git a/src/main/java/zone/moddev/mc/mineralogy/MineralogyConfig.java b/src/main/java/zone/moddev/mc/mineralogy/MineralogyConfig.java index fa36ab5d6..7c5549f5d 100644 --- a/src/main/java/zone/moddev/mc/mineralogy/MineralogyConfig.java +++ b/src/main/java/zone/moddev/mc/mineralogy/MineralogyConfig.java @@ -19,7 +19,7 @@ import com.mojang.serialization.MapCodec; import com.mojang.serialization.codecs.RecordCodecBuilder; -import net.minecraft.resources.ResourceLocation; +import net.minecraft.resources.Identifier; import net.neoforged.neoforge.common.conditions.ICondition; import net.neoforged.bus.api.IEventBus; import net.neoforged.fml.loading.FMLPaths; @@ -34,8 +34,8 @@ */ public final class MineralogyConfig { public static final String FILE_NAME = "mineralogy-common.toml"; - private static final ResourceLocation CONFIG_CONDITION_ID = - ResourceLocation.fromNamespaceAndPath(Mineralogy.MODID, "config"); + private static final Identifier CONFIG_CONDITION_ID = + Identifier.fromNamespaceAndPath(Mineralogy.MODID, "config"); private static DeferredRegister> conditionCodecs; private static boolean smeltableGravel = true; diff --git a/src/main/java/zone/moddev/mc/mineralogy/blocks/Chalk.java b/src/main/java/zone/moddev/mc/mineralogy/blocks/Chalk.java index af1bb8c89..bdbe39b17 100644 --- a/src/main/java/zone/moddev/mc/mineralogy/blocks/Chalk.java +++ b/src/main/java/zone/moddev/mc/mineralogy/blocks/Chalk.java @@ -9,7 +9,7 @@ import net.minecraft.world.level.block.state.BlockState; import net.minecraft.world.item.Item; import net.minecraft.world.item.ItemStack; -import net.minecraft.resources.ResourceLocation; +import net.minecraft.resources.Identifier; import net.minecraft.world.level.storage.loot.LootParams.Builder; import net.minecraft.core.registries.BuiltInRegistries; @@ -24,7 +24,7 @@ public List getDrops(BlockState state, Builder builder) { return Collections.singletonList(new ItemStack(this)); } - Item dust = BuiltInRegistries.ITEM.get(ResourceLocation.fromNamespaceAndPath(Mineralogy.MODID, "chalk_dust")); + Item dust = BuiltInRegistries.ITEM.getValue(Identifier.fromNamespaceAndPath(Mineralogy.MODID, "chalk_dust")); if (dust != null) { return Collections.singletonList(new ItemStack(dust, 4)); } diff --git a/src/main/java/zone/moddev/mc/mineralogy/blocks/DoubleSlab.java b/src/main/java/zone/moddev/mc/mineralogy/blocks/DoubleSlab.java index 08d0c2e19..629e54011 100644 --- a/src/main/java/zone/moddev/mc/mineralogy/blocks/DoubleSlab.java +++ b/src/main/java/zone/moddev/mc/mineralogy/blocks/DoubleSlab.java @@ -3,16 +3,16 @@ import java.util.Collections; import java.util.List; +import zone.moddev.mc.mineralogy.init.RegistrationProperties; + import net.minecraft.world.level.block.Block; import net.minecraft.world.level.block.state.BlockBehaviour; import net.minecraft.world.level.block.SoundType; import net.minecraft.world.level.block.state.BlockState; -import net.minecraft.world.entity.player.Player; import net.minecraft.world.item.ItemStack; import net.minecraft.core.BlockPos; import net.minecraft.world.level.LevelReader; import net.minecraft.world.level.storage.loot.LootParams.Builder; -import net.minecraft.world.phys.HitResult; public class DoubleSlab extends Block implements NamedMineralogyBlock { private final Block drops; @@ -27,8 +27,9 @@ public DoubleSlab(float hardness, float blastResistance, int toolHardnessLevel, public DoubleSlab(float hardness, float blastResistance, int toolHardnessLevel, SoundType sound, Block drops, Block fullBlock, String name) { - super(BlockBehaviour.Properties.ofFullCopy(net.minecraft.world.level.block.Blocks.STONE).strength(hardness, blastResistance).sound(sound) - .requiresCorrectToolForDrops()); + super(RegistrationProperties.block( + BlockBehaviour.Properties.ofFullCopy(net.minecraft.world.level.block.Blocks.STONE) + .strength(hardness, blastResistance).sound(sound).requiresCorrectToolForDrops(), name)); this.drops = drops; this.fullBlock = fullBlock; this.toolHardnessLevel = toolHardnessLevel; @@ -41,8 +42,7 @@ public String mineralogyRegistryPath() { } @Override - public ItemStack getCloneItemStack(BlockState state, HitResult target, LevelReader world, BlockPos pos, - Player player) { + protected ItemStack getCloneItemStack(LevelReader world, BlockPos pos, BlockState state, boolean includeData) { return new ItemStack(drops); } diff --git a/src/main/java/zone/moddev/mc/mineralogy/blocks/DryWall.java b/src/main/java/zone/moddev/mc/mineralogy/blocks/DryWall.java index 9eecb7b24..bbed74017 100644 --- a/src/main/java/zone/moddev/mc/mineralogy/blocks/DryWall.java +++ b/src/main/java/zone/moddev/mc/mineralogy/blocks/DryWall.java @@ -1,5 +1,7 @@ package zone.moddev.mc.mineralogy.blocks; +import zone.moddev.mc.mineralogy.init.RegistrationProperties; + import net.minecraft.world.level.block.Block; import net.minecraft.world.level.block.state.BlockBehaviour; import net.minecraft.world.level.block.IronBarsBlock; @@ -11,8 +13,10 @@ public class DryWall extends IronBarsBlock implements NamedMineralogyBlock { private final String registryPath; public DryWall(String color) { - super(BlockBehaviour.Properties.ofFullCopy(net.minecraft.world.level.block.Blocks.STONE).strength(0.75F, 1.0F).sound(SoundType.STONE) - .requiresCorrectToolForDrops()); + super(RegistrationProperties.block( + BlockBehaviour.Properties.ofFullCopy(net.minecraft.world.level.block.Blocks.STONE) + .strength(0.75F, 1.0F).sound(SoundType.STONE).requiresCorrectToolForDrops(), + "drywall_" + color)); this.toolHardnessLevel = 0; this.registryPath = "drywall_" + color; } diff --git a/src/main/java/zone/moddev/mc/mineralogy/blocks/Gypsum.java b/src/main/java/zone/moddev/mc/mineralogy/blocks/Gypsum.java index f9044cd65..19fd4294e 100644 --- a/src/main/java/zone/moddev/mc/mineralogy/blocks/Gypsum.java +++ b/src/main/java/zone/moddev/mc/mineralogy/blocks/Gypsum.java @@ -10,7 +10,7 @@ import net.minecraft.world.level.block.state.BlockState; import net.minecraft.world.item.Item; import net.minecraft.world.item.ItemStack; -import net.minecraft.resources.ResourceLocation; +import net.minecraft.resources.Identifier; import net.minecraft.world.level.storage.loot.LootParams.Builder; import net.minecraft.core.registries.BuiltInRegistries; @@ -27,7 +27,7 @@ public List getDrops(BlockState state, Builder builder) { return Collections.singletonList(new ItemStack(this)); } - Item dust = BuiltInRegistries.ITEM.get(ResourceLocation.fromNamespaceAndPath(Mineralogy.MODID, "gypsum_dust")); + Item dust = BuiltInRegistries.ITEM.getValue(Identifier.fromNamespaceAndPath(Mineralogy.MODID, "gypsum_dust")); if (dust != null) { return Collections.singletonList(new ItemStack(dust, prng.nextInt(3) + 1)); } diff --git a/src/main/java/zone/moddev/mc/mineralogy/blocks/MineralogyLiquidBlock.java b/src/main/java/zone/moddev/mc/mineralogy/blocks/MineralogyLiquidBlock.java index e01468a36..d822410ee 100644 --- a/src/main/java/zone/moddev/mc/mineralogy/blocks/MineralogyLiquidBlock.java +++ b/src/main/java/zone/moddev/mc/mineralogy/blocks/MineralogyLiquidBlock.java @@ -1,7 +1,6 @@ package zone.moddev.mc.mineralogy.blocks; import java.util.Optional; -import java.util.function.Supplier; import net.minecraft.core.BlockPos; import net.minecraft.core.Direction; @@ -9,8 +8,12 @@ import net.minecraft.tags.FluidTags; import net.minecraft.world.item.ItemStack; import net.minecraft.world.entity.player.Player; +import net.minecraft.world.entity.LivingEntity; +import net.minecraft.util.RandomSource; import net.minecraft.world.level.Level; import net.minecraft.world.level.LevelAccessor; +import net.minecraft.world.level.LevelReader; +import net.minecraft.world.level.ScheduledTickAccess; import net.minecraft.world.level.block.Block; import net.minecraft.world.level.block.Blocks; import net.minecraft.world.level.block.LiquidBlock; @@ -18,9 +21,12 @@ import net.minecraft.world.level.block.state.BlockState; import net.minecraft.world.level.material.FlowingFluid; import net.minecraft.world.level.pathfinder.PathComputationType; +import net.minecraft.world.level.redstone.Orientation; +import org.jspecify.annotations.Nullable; public class MineralogyLiquidBlock extends LiquidBlock { - public MineralogyLiquidBlock(Supplier fluid, BlockBehaviour.Properties properties) { + public MineralogyLiquidBlock(java.util.function.Supplier fluid, + BlockBehaviour.Properties properties) { super(fluid.get(), properties); } @@ -36,26 +42,27 @@ public boolean skipRendering(BlockState state, BlockState adjacentState, Directi @Override public void onPlace(BlockState state, Level world, BlockPos pos, BlockState oldState, boolean isMoving) { - scheduleFluidTick(world, pos, state); + scheduleFluidTick(world, world, pos, state); } @Override - public BlockState updateShape(BlockState state, Direction direction, BlockState adjacentState, - LevelAccessor world, BlockPos pos, BlockPos adjacentPos) { + protected BlockState updateShape(BlockState state, LevelReader world, ScheduledTickAccess ticks, + BlockPos pos, Direction direction, BlockPos adjacentPos, BlockState adjacentState, + RandomSource random) { if (state.getFluidState().isSource() || adjacentState.getFluidState().isSource()) { - scheduleFluidTick(world, pos, state); + scheduleFluidTick(world, ticks, pos, state); } return state; } @Override - public void neighborChanged(BlockState state, Level world, BlockPos pos, Block block, BlockPos neighborPos, - boolean isMoving) { - scheduleFluidTick(world, pos, state); + protected void neighborChanged(BlockState state, Level world, BlockPos pos, Block block, + @Nullable Orientation orientation, boolean isMoving) { + scheduleFluidTick(world, world, pos, state); } @Override - public ItemStack pickupBlock(Player player, LevelAccessor world, BlockPos pos, BlockState state) { + public ItemStack pickupBlock(@Nullable LivingEntity player, LevelAccessor world, BlockPos pos, BlockState state) { if (state.getValue(LEVEL) == 0) { world.setBlock(pos, Blocks.AIR.defaultBlockState(), 11); return new ItemStack(fluid.getBucket()); @@ -68,7 +75,7 @@ public Optional getPickupSound() { return fluid.getPickupSound(); } - private void scheduleFluidTick(LevelAccessor world, BlockPos pos, BlockState state) { - world.scheduleTick(pos, state.getFluidState().getType(), fluid.getTickDelay(world)); + private void scheduleFluidTick(LevelReader world, ScheduledTickAccess ticks, BlockPos pos, BlockState state) { + ticks.scheduleTick(pos, state.getFluidState().getType(), fluid.getTickDelay(world)); } } diff --git a/src/main/java/zone/moddev/mc/mineralogy/blocks/Ore.java b/src/main/java/zone/moddev/mc/mineralogy/blocks/Ore.java index 07008c934..816f2d9c9 100644 --- a/src/main/java/zone/moddev/mc/mineralogy/blocks/Ore.java +++ b/src/main/java/zone/moddev/mc/mineralogy/blocks/Ore.java @@ -4,6 +4,7 @@ import java.util.List; import zone.moddev.mc.mineralogy.Mineralogy; +import zone.moddev.mc.mineralogy.init.RegistrationProperties; import net.minecraft.world.level.block.Block; import net.minecraft.world.level.block.state.BlockBehaviour; @@ -12,7 +13,7 @@ import net.minecraft.world.item.Item; import net.minecraft.world.item.ItemStack; import net.minecraft.world.level.ItemLike; -import net.minecraft.resources.ResourceLocation; +import net.minecraft.resources.Identifier; import net.minecraft.world.level.storage.loot.LootParams.Builder; import net.minecraft.core.registries.BuiltInRegistries; @@ -24,8 +25,9 @@ public class Ore extends Block implements NamedMineralogyBlock { private final int pickLevel; public Ore(String name, String dropItemName, int minNumberDropped, int maxNumberDropped, int pickLevel) { - super(BlockBehaviour.Properties.ofFullCopy(net.minecraft.world.level.block.Blocks.STONE).strength(1.5F, 5.0F).sound(SoundType.STONE) - .requiresCorrectToolForDrops()); + super(RegistrationProperties.block( + BlockBehaviour.Properties.ofFullCopy(net.minecraft.world.level.block.Blocks.STONE) + .strength(1.5F, 5.0F).sound(SoundType.STONE).requiresCorrectToolForDrops(), name)); this.registryPath = name; this.dropItemName = dropItemName; this.dropAdduct = minNumberDropped; @@ -39,7 +41,7 @@ public String mineralogyRegistryPath() { } public ItemLike getItemDropped() { - Item item = BuiltInRegistries.ITEM.get(ResourceLocation.fromNamespaceAndPath(Mineralogy.MODID, dropItemName)); + Item item = BuiltInRegistries.ITEM.getValue(Identifier.fromNamespaceAndPath(Mineralogy.MODID, dropItemName)); return item == null ? this : item; } diff --git a/src/main/java/zone/moddev/mc/mineralogy/blocks/Rock.java b/src/main/java/zone/moddev/mc/mineralogy/blocks/Rock.java index c86037b9d..2a51a3588 100644 --- a/src/main/java/zone/moddev/mc/mineralogy/blocks/Rock.java +++ b/src/main/java/zone/moddev/mc/mineralogy/blocks/Rock.java @@ -5,6 +5,7 @@ import java.util.function.Predicate; import zone.moddev.mc.mineralogy.MineralogyConfig; +import zone.moddev.mc.mineralogy.init.RegistrationProperties; import net.minecraft.world.level.block.Block; import net.minecraft.world.level.block.state.BlockBehaviour; @@ -15,7 +16,6 @@ import net.minecraft.world.item.enchantment.Enchantments; import net.minecraft.world.item.ItemStack; import net.minecraft.core.BlockPos; -import net.minecraft.core.registries.Registries; import net.minecraft.world.level.LevelReader; import net.minecraft.world.level.storage.loot.LootParams.Builder; import net.minecraft.world.level.storage.loot.parameters.LootContextParams; @@ -25,8 +25,9 @@ public class Rock extends Block implements NamedMineralogyBlock { public Rock(boolean isStoneEquivalent, float hardness, float blastResistance, int toolHardnessLevel, SoundType sound, String name) { - super(BlockBehaviour.Properties.ofFullCopy(Blocks.STONE).strength(hardness, blastResistance).sound(sound) - .requiresCorrectToolForDrops()); + super(RegistrationProperties.block( + BlockBehaviour.Properties.ofFullCopy(Blocks.STONE).strength(hardness, blastResistance).sound(sound) + .requiresCorrectToolForDrops(), name)); this.registryPath = name; this.isStoneEquivalent = isStoneEquivalent; @@ -56,14 +57,13 @@ public List getDrops(BlockState state, Builder builder) { protected static boolean hasSilkTouch(Builder builder) { ItemStack tool = builder.getOptionalParameter(LootContextParams.TOOL); return tool != null && !tool.isEmpty() - && EnchantmentHelper.getItemEnchantmentLevel(builder.getLevel().registryAccess() - .registryOrThrow(Registries.ENCHANTMENT).getHolderOrThrow(Enchantments.SILK_TOUCH), tool) > 0; + && EnchantmentHelper.getItemEnchantmentLevel( + builder.getLevel().registryAccess().getOrThrow(Enchantments.SILK_TOUCH), tool) > 0; } protected static int getFortuneLevel(Builder builder) { ItemStack tool = builder.getOptionalParameter(LootContextParams.TOOL); return tool == null || tool.isEmpty() ? 0 : EnchantmentHelper.getItemEnchantmentLevel( - builder.getLevel().registryAccess().registryOrThrow(Registries.ENCHANTMENT) - .getHolderOrThrow(Enchantments.FORTUNE), tool); + builder.getLevel().registryAccess().getOrThrow(Enchantments.FORTUNE), tool); } } diff --git a/src/main/java/zone/moddev/mc/mineralogy/blocks/RockFurnace.java b/src/main/java/zone/moddev/mc/mineralogy/blocks/RockFurnace.java index 1d3a192ca..c0b5b37ab 100644 --- a/src/main/java/zone/moddev/mc/mineralogy/blocks/RockFurnace.java +++ b/src/main/java/zone/moddev/mc/mineralogy/blocks/RockFurnace.java @@ -6,6 +6,7 @@ import zone.moddev.mc.mineralogy.Mineralogy; import zone.moddev.mc.mineralogy.init.TileEntities; +import zone.moddev.mc.mineralogy.init.RegistrationProperties; import zone.moddev.mc.mineralogy.tileentity.TileEntityRockFurnace; import net.minecraft.world.level.block.Block; @@ -29,11 +30,12 @@ import net.minecraft.world.level.block.entity.BlockEntity; import net.minecraft.world.level.block.entity.BlockEntityTicker; import net.minecraft.world.level.block.entity.BlockEntityType; +import net.minecraft.server.level.ServerLevel; import net.minecraft.world.level.block.RenderShape; import net.minecraft.world.InteractionResult; import net.minecraft.core.Direction; import net.minecraft.world.level.block.Mirror; -import net.minecraft.resources.ResourceLocation; +import net.minecraft.resources.Identifier; import net.minecraft.world.level.block.Rotation; import net.minecraft.sounds.SoundSource; import net.minecraft.world.phys.BlockHitResult; @@ -46,7 +48,7 @@ import net.minecraft.core.registries.BuiltInRegistries; public class RockFurnace extends BaseEntityBlock implements NamedMineralogyBlock { - public static final net.minecraft.world.level.block.state.properties.DirectionProperty FACING = HorizontalDirectionalBlock.FACING; + public static final net.minecraft.world.level.block.state.properties.EnumProperty FACING = HorizontalDirectionalBlock.FACING; private static boolean keepInventory; private final boolean burning; @@ -56,8 +58,10 @@ public class RockFurnace extends BaseEntityBlock implements NamedMineralogyBlock public RockFurnace(float hardness, float blastResistance, int toolHardnessLevel, boolean burning, float burnModifier, String name) { - super(BlockBehaviour.Properties.ofFullCopy(net.minecraft.world.level.block.Blocks.STONE).strength(hardness, blastResistance) - .sound(SoundType.STONE).lightLevel(state -> burning ? 14 : 0).requiresCorrectToolForDrops()); + super(RegistrationProperties.block( + BlockBehaviour.Properties.ofFullCopy(net.minecraft.world.level.block.Blocks.STONE) + .strength(hardness, blastResistance).sound(SoundType.STONE) + .lightLevel(state -> burning ? 14 : 0).requiresCorrectToolForDrops(), name)); this.burning = burning; this.burnModifier = burnModifier; this.toolHardnessLevel = toolHardnessLevel; @@ -98,7 +102,7 @@ public void setPlacedBy(Level world, BlockPos pos, BlockState state, LivingEntit @Override protected InteractionResult useWithoutItem(BlockState state, Level world, BlockPos pos, Player player, BlockHitResult hit) { - if (world.isClientSide) { + if (world.isClientSide()) { return InteractionResult.SUCCESS; } @@ -145,7 +149,7 @@ public BlockEntity newBlockEntity(BlockPos pos, BlockState state) { @Override public BlockEntityTicker getTicker(Level world, BlockState state, BlockEntityType blockEntityType) { - return world.isClientSide ? null + return world.isClientSide() ? null : createTickerHelper(blockEntityType, TileEntities.rock_furnace, TileEntityRockFurnace::serverTick); } @@ -155,33 +159,28 @@ public List getDrops(BlockState state, Builder builder) { } @Override - public void onRemove(BlockState state, Level world, BlockPos pos, BlockState newState, boolean isMoving) { - if (state.getBlock() != newState.getBlock()) { - if (!keepInventory) { - BlockEntity tileEntity = world.getBlockEntity(pos); - if (tileEntity instanceof TileEntityRockFurnace) { - Containers.dropContents(world, pos, (TileEntityRockFurnace) tileEntity); - world.updateNeighbourForOutputSignal(pos, this); - } - } + protected void affectNeighborsAfterRemoval(BlockState state, ServerLevel world, BlockPos pos, + boolean isMoving) { + Containers.updateNeighboursAfterDestroy(state, world, pos); + } - super.onRemove(state, world, pos, newState, isMoving); - } + @Override + protected boolean shouldChangedStateKeepBlockEntity(BlockState previousState) { + return previousState.getBlock() instanceof RockFurnace; } @Override - public boolean hasAnalogOutputSignal(BlockState state) { + protected boolean hasAnalogOutputSignal(BlockState state) { return true; } @Override - public int getAnalogOutputSignal(BlockState blockState, Level world, BlockPos pos) { + protected int getAnalogOutputSignal(BlockState blockState, Level world, BlockPos pos, Direction direction) { return AbstractContainerMenu.getRedstoneSignalFromBlockEntity(world.getBlockEntity(pos)); } @Override - public ItemStack getCloneItemStack(BlockState state, HitResult target, LevelReader world, BlockPos pos, - Player player) { + protected ItemStack getCloneItemStack(LevelReader world, BlockPos pos, BlockState state, boolean includeData) { return new ItemStack(getUnlitBlock(state.getBlock())); } @@ -241,8 +240,12 @@ public boolean isBurningVariant() { return burning; } + public static boolean isKeepingInventory() { + return keepInventory; + } + private static Block getStateBlock(Block block, boolean active) { - ResourceLocation name = BuiltInRegistries.BLOCK.getKey(block); + Identifier name = BuiltInRegistries.BLOCK.getKey(block); if (name == null) { return block; } @@ -254,7 +257,7 @@ private static Block getStateBlock(Block block, boolean active) { path = path.substring(4); } - Block stateBlock = BuiltInRegistries.BLOCK.get(ResourceLocation.fromNamespaceAndPath(Mineralogy.MODID, path)); + Block stateBlock = BuiltInRegistries.BLOCK.getValue(Identifier.fromNamespaceAndPath(Mineralogy.MODID, path)); return stateBlock == null ? block : stateBlock; } diff --git a/src/main/java/zone/moddev/mc/mineralogy/blocks/RockRelief.java b/src/main/java/zone/moddev/mc/mineralogy/blocks/RockRelief.java index 6bdc9a32c..9f68b219b 100644 --- a/src/main/java/zone/moddev/mc/mineralogy/blocks/RockRelief.java +++ b/src/main/java/zone/moddev/mc/mineralogy/blocks/RockRelief.java @@ -44,7 +44,7 @@ public VoxelShape getVisualShape(BlockState state, BlockGetter world, BlockPos p } @Override - public VoxelShape getOcclusionShape(BlockState state, BlockGetter world, BlockPos pos) { + protected VoxelShape getOcclusionShape(BlockState state) { return Shapes.empty(); } diff --git a/src/main/java/zone/moddev/mc/mineralogy/blocks/RockSalt.java b/src/main/java/zone/moddev/mc/mineralogy/blocks/RockSalt.java index 328a67b6d..b0ec6a5eb 100644 --- a/src/main/java/zone/moddev/mc/mineralogy/blocks/RockSalt.java +++ b/src/main/java/zone/moddev/mc/mineralogy/blocks/RockSalt.java @@ -9,7 +9,7 @@ import net.minecraft.world.level.block.state.BlockState; import net.minecraft.world.item.Item; import net.minecraft.world.item.ItemStack; -import net.minecraft.resources.ResourceLocation; +import net.minecraft.resources.Identifier; import net.minecraft.world.level.storage.loot.LootParams.Builder; import net.minecraft.core.registries.BuiltInRegistries; @@ -24,7 +24,7 @@ public List getDrops(BlockState state, Builder builder) { return Collections.singletonList(new ItemStack(this)); } - Item dust = BuiltInRegistries.ITEM.get(ResourceLocation.fromNamespaceAndPath(Mineralogy.MODID, "rock_salt_dust")); + Item dust = BuiltInRegistries.ITEM.getValue(Identifier.fromNamespaceAndPath(Mineralogy.MODID, "rock_salt_dust")); if (dust != null) { return Collections.singletonList(new ItemStack(dust, 4)); } diff --git a/src/main/java/zone/moddev/mc/mineralogy/blocks/RockSaltLamp.java b/src/main/java/zone/moddev/mc/mineralogy/blocks/RockSaltLamp.java index ca64129b2..b7c168ea8 100644 --- a/src/main/java/zone/moddev/mc/mineralogy/blocks/RockSaltLamp.java +++ b/src/main/java/zone/moddev/mc/mineralogy/blocks/RockSaltLamp.java @@ -1,5 +1,7 @@ package zone.moddev.mc.mineralogy.blocks; +import zone.moddev.mc.mineralogy.init.RegistrationProperties; + import net.minecraft.world.level.block.Block; import net.minecraft.world.level.block.state.BlockBehaviour; import net.minecraft.world.level.block.state.BlockState; @@ -7,7 +9,7 @@ import net.minecraft.world.level.block.SoundType; import net.minecraft.core.particles.ParticleTypes; import net.minecraft.world.item.context.BlockPlaceContext; -import net.minecraft.world.level.block.state.properties.DirectionProperty; +import net.minecraft.world.level.block.state.properties.EnumProperty; import net.minecraft.world.level.block.state.StateDefinition; import net.minecraft.core.Direction; import net.minecraft.world.level.block.Mirror; @@ -18,12 +20,13 @@ import net.minecraft.world.level.BlockGetter; import net.minecraft.world.level.LevelAccessor; import net.minecraft.world.level.LevelReader; +import net.minecraft.world.level.ScheduledTickAccess; import net.minecraft.world.level.Level; import net.minecraft.util.RandomSource; public class RockSaltLamp extends Block implements NamedMineralogyBlock { - public static final DirectionProperty FACING = DirectionProperty.create("facing", Direction.values()); + public static final EnumProperty FACING = EnumProperty.create("facing", Direction.class); private static final VoxelShape STANDING_SHAPE = Block.box(6.4D, 0.0D, 6.4D, 9.6D, 9.6D, 9.6D); private static final VoxelShape NORTH_SHAPE = Block.box(5.6D, 3.2D, 11.2D, 10.4D, 12.8D, 16.0D); @@ -32,8 +35,9 @@ public class RockSaltLamp extends Block implements NamedMineralogyBlock { private static final VoxelShape EAST_SHAPE = Block.box(0.0D, 3.2D, 5.6D, 4.8D, 12.8D, 10.4D); public RockSaltLamp() { - super(BlockBehaviour.Properties.ofFullCopy(net.minecraft.world.level.block.Blocks.STONE).strength(0.25F) - .lightLevel(state -> 15).sound(SoundType.STONE)); + super(RegistrationProperties.block( + BlockBehaviour.Properties.ofFullCopy(net.minecraft.world.level.block.Blocks.STONE).strength(0.25F) + .lightLevel(state -> 15).sound(SoundType.STONE), "rocksaltlamp")); this.registerDefaultState(this.getStateDefinition().any().setValue(FACING, Direction.UP)); } @@ -83,8 +87,9 @@ public BlockState getStateForPlacement(BlockPlaceContext context) { } @Override - public BlockState updateShape(BlockState state, Direction facing, BlockState facingState, - LevelAccessor world, BlockPos currentPos, BlockPos facingPos) { + protected BlockState updateShape(BlockState state, LevelReader world, ScheduledTickAccess ticks, + BlockPos currentPos, Direction facing, BlockPos facingPos, BlockState facingState, + RandomSource random) { return facing.getOpposite() == state.getValue(FACING) && !state.canSurvive(world, currentPos) ? Blocks.AIR.defaultBlockState() : state; diff --git a/src/main/java/zone/moddev/mc/mineralogy/blocks/RockSaltStreetLamp.java b/src/main/java/zone/moddev/mc/mineralogy/blocks/RockSaltStreetLamp.java index 8586006be..99f412dc8 100644 --- a/src/main/java/zone/moddev/mc/mineralogy/blocks/RockSaltStreetLamp.java +++ b/src/main/java/zone/moddev/mc/mineralogy/blocks/RockSaltStreetLamp.java @@ -1,5 +1,7 @@ package zone.moddev.mc.mineralogy.blocks; +import zone.moddev.mc.mineralogy.init.RegistrationProperties; + import net.minecraft.world.level.block.Block; import net.minecraft.world.level.block.state.BlockBehaviour; import net.minecraft.world.level.block.state.BlockState; @@ -7,7 +9,7 @@ import net.minecraft.world.level.block.SoundType; import net.minecraft.core.particles.ParticleTypes; import net.minecraft.world.item.context.BlockPlaceContext; -import net.minecraft.world.level.block.state.properties.DirectionProperty; +import net.minecraft.world.level.block.state.properties.EnumProperty; import net.minecraft.world.level.block.state.StateDefinition; import net.minecraft.core.Direction; import net.minecraft.world.level.block.Mirror; @@ -18,17 +20,19 @@ import net.minecraft.world.level.BlockGetter; import net.minecraft.world.level.LevelAccessor; import net.minecraft.world.level.LevelReader; +import net.minecraft.world.level.ScheduledTickAccess; import net.minecraft.world.level.Level; import net.minecraft.util.RandomSource; public class RockSaltStreetLamp extends Block implements NamedMineralogyBlock { - public static final DirectionProperty FACING = DirectionProperty.create("facing", Direction.values()); + public static final EnumProperty FACING = EnumProperty.create("facing", Direction.class); private static final VoxelShape STANDING_SHAPE = Block.box(6.4D, 0.0D, 6.4D, 9.6D, 28.8D, 9.6D); public RockSaltStreetLamp() { - super(BlockBehaviour.Properties.ofFullCopy(net.minecraft.world.level.block.Blocks.IRON_BLOCK).strength(1.0F) - .lightLevel(state -> 15).sound(SoundType.METAL)); + super(RegistrationProperties.block( + BlockBehaviour.Properties.ofFullCopy(net.minecraft.world.level.block.Blocks.IRON_BLOCK).strength(1.0F) + .lightLevel(state -> 15).sound(SoundType.METAL), "rocksaltstreetlamp")); this.registerDefaultState(this.getStateDefinition().any().setValue(FACING, Direction.UP)); } @@ -53,8 +57,9 @@ public BlockState getStateForPlacement(BlockPlaceContext context) { } @Override - public BlockState updateShape(BlockState state, Direction facing, BlockState facingState, - LevelAccessor world, BlockPos currentPos, BlockPos facingPos) { + protected BlockState updateShape(BlockState state, LevelReader world, ScheduledTickAccess ticks, + BlockPos currentPos, Direction facing, BlockPos facingPos, BlockState facingState, + RandomSource random) { return !state.canSurvive(world, currentPos) ? Blocks.AIR.defaultBlockState() : state; } diff --git a/src/main/java/zone/moddev/mc/mineralogy/blocks/RockSlab.java b/src/main/java/zone/moddev/mc/mineralogy/blocks/RockSlab.java index 18615fa9e..093d68b14 100644 --- a/src/main/java/zone/moddev/mc/mineralogy/blocks/RockSlab.java +++ b/src/main/java/zone/moddev/mc/mineralogy/blocks/RockSlab.java @@ -1,6 +1,7 @@ package zone.moddev.mc.mineralogy.blocks; import zone.moddev.mc.mineralogy.Mineralogy; +import zone.moddev.mc.mineralogy.init.RegistrationProperties; import net.minecraft.world.level.block.Block; import net.minecraft.world.level.block.state.BlockBehaviour; @@ -8,12 +9,12 @@ import net.minecraft.world.level.block.SoundType; import net.minecraft.world.entity.player.Player; import net.minecraft.world.item.ItemStack; -import net.minecraft.world.level.block.state.properties.DirectionProperty; +import net.minecraft.world.level.block.state.properties.EnumProperty; import net.minecraft.world.level.block.state.StateDefinition; -import net.minecraft.world.ItemInteractionResult; +import net.minecraft.world.InteractionResult; import net.minecraft.core.Direction; import net.minecraft.world.InteractionHand; -import net.minecraft.resources.ResourceLocation; +import net.minecraft.resources.Identifier; import net.minecraft.world.phys.BlockHitResult; import net.minecraft.core.BlockPos; import net.minecraft.world.phys.shapes.CollisionContext; @@ -25,7 +26,7 @@ import net.minecraft.core.registries.BuiltInRegistries; public class RockSlab extends Block implements NamedMineralogyBlock { - public static final DirectionProperty FACING = DirectionProperty.create("facing", Direction.values()); + public static final EnumProperty FACING = EnumProperty.create("facing", Direction.class); private static final double THICKNESS = 8.0D; private static final VoxelShape[] SHAPES = new VoxelShape[Direction.values().length]; @@ -52,8 +53,9 @@ public RockSlab(float hardness, float blastResistance, int toolHardnessLevel, So public RockSlab(float hardness, float blastResistance, int toolHardnessLevel, SoundType sound, String name, String doubleSlabName) { - super(BlockBehaviour.Properties.ofFullCopy(net.minecraft.world.level.block.Blocks.STONE).strength(hardness, blastResistance).sound(sound) - .requiresCorrectToolForDrops()); + super(RegistrationProperties.block( + BlockBehaviour.Properties.ofFullCopy(net.minecraft.world.level.block.Blocks.STONE) + .strength(hardness, blastResistance).sound(sound).requiresCorrectToolForDrops(), name)); this.toolHardnessLevel = toolHardnessLevel; this.doubleSlabName = doubleSlabName; this.registryPath = name; @@ -80,7 +82,7 @@ public boolean isCollisionShapeFullBlock(BlockState state, BlockGetter world, Bl } @Override - public boolean propagatesSkylightDown(BlockState state, BlockGetter world, BlockPos pos) { + protected boolean propagatesSkylightDown(BlockState state) { return false; } @@ -96,33 +98,33 @@ public boolean canSurvive(BlockState state, LevelReader world, BlockPos pos) { } @Override - protected ItemInteractionResult useItemOn(ItemStack held, BlockState state, Level world, BlockPos pos, + protected InteractionResult useItemOn(ItemStack held, BlockState state, Level world, BlockPos pos, Player player, InteractionHand hand, BlockHitResult hit) { Direction facing = hit.getDirection(); if (this.doubleSlabName == null || this.doubleSlabName.isEmpty() || facing != state.getValue(FACING)) { - return ItemInteractionResult.PASS_TO_DEFAULT_BLOCK_INTERACTION; + return InteractionResult.TRY_WITH_EMPTY_HAND; } - ResourceLocation slabItemName = held.isEmpty() ? null : BuiltInRegistries.ITEM.getKey(held.getItem()); + Identifier slabItemName = held.isEmpty() ? null : BuiltInRegistries.ITEM.getKey(held.getItem()); if (!BuiltInRegistries.BLOCK.getKey(this).equals(slabItemName)) { - return ItemInteractionResult.PASS_TO_DEFAULT_BLOCK_INTERACTION; + return InteractionResult.TRY_WITH_EMPTY_HAND; } - Block doubleSlab = BuiltInRegistries.BLOCK.get( - ResourceLocation.fromNamespaceAndPath(Mineralogy.MODID, this.doubleSlabName)); + Block doubleSlab = BuiltInRegistries.BLOCK.getValue( + Identifier.fromNamespaceAndPath(Mineralogy.MODID, this.doubleSlabName)); if (!(doubleSlab instanceof DoubleSlab)) { - return ItemInteractionResult.PASS_TO_DEFAULT_BLOCK_INTERACTION; + return InteractionResult.TRY_WITH_EMPTY_HAND; } - if (!world.isClientSide) { + if (!world.isClientSide()) { world.setBlock(pos, doubleSlab.defaultBlockState(), 3); if (!player.isCreative()) { held.shrink(1); } } - return ItemInteractionResult.sidedSuccess(world.isClientSide); + return world.isClientSide() ? InteractionResult.SUCCESS : InteractionResult.SUCCESS_SERVER; } @Override protected void createBlockStateDefinition(StateDefinition.Builder builder) { diff --git a/src/main/java/zone/moddev/mc/mineralogy/blocks/RockStairs.java b/src/main/java/zone/moddev/mc/mineralogy/blocks/RockStairs.java index c82fd1349..27f5095b4 100644 --- a/src/main/java/zone/moddev/mc/mineralogy/blocks/RockStairs.java +++ b/src/main/java/zone/moddev/mc/mineralogy/blocks/RockStairs.java @@ -1,5 +1,7 @@ package zone.moddev.mc.mineralogy.blocks; +import zone.moddev.mc.mineralogy.init.RegistrationProperties; + import net.minecraft.world.level.block.Block; import net.minecraft.world.level.block.state.BlockBehaviour; import net.minecraft.world.level.block.SoundType; @@ -11,8 +13,9 @@ public class RockStairs extends StairBlock implements NamedMineralogyBlock { public RockStairs(Block materialBlock, float hardness, float blastResistance, int toolHardnessLevel, SoundType sound, String name) { - super(materialBlock.defaultBlockState(), BlockBehaviour.Properties.ofFullCopy(materialBlock) - .strength(hardness, blastResistance).sound(sound).requiresCorrectToolForDrops()); + super(materialBlock.defaultBlockState(), RegistrationProperties.block( + BlockBehaviour.Properties.ofFullCopy(materialBlock).strength(hardness, blastResistance) + .sound(sound).requiresCorrectToolForDrops(), name)); this.registryPath = name; this.toolHardnessLevel = toolHardnessLevel; diff --git a/src/main/java/zone/moddev/mc/mineralogy/blocks/RockWall.java b/src/main/java/zone/moddev/mc/mineralogy/blocks/RockWall.java index 88ea3b681..1076a3adb 100644 --- a/src/main/java/zone/moddev/mc/mineralogy/blocks/RockWall.java +++ b/src/main/java/zone/moddev/mc/mineralogy/blocks/RockWall.java @@ -1,5 +1,7 @@ package zone.moddev.mc.mineralogy.blocks; +import zone.moddev.mc.mineralogy.init.RegistrationProperties; + import net.minecraft.world.level.block.Block; import net.minecraft.world.level.block.state.BlockBehaviour; import net.minecraft.world.level.block.SoundType; @@ -15,8 +17,9 @@ public class RockWall extends WallBlock implements NamedMineralogyBlock { private final String registryPath; public RockWall(Block materialBlock, float hardness, float blastResistance, int toolHardnessLevel, SoundType sound, String name) { - super(BlockBehaviour.Properties.ofFullCopy(net.minecraft.world.level.block.Blocks.STONE).strength(hardness, blastResistance).sound(sound) - .requiresCorrectToolForDrops()); + super(RegistrationProperties.block( + BlockBehaviour.Properties.ofFullCopy(net.minecraft.world.level.block.Blocks.STONE) + .strength(hardness, blastResistance).sound(sound).requiresCorrectToolForDrops(), name)); this.registryPath = name; this.toolHardnessLevel = toolHardnessLevel; diff --git a/src/main/java/zone/moddev/mc/mineralogy/client/ClientSetup.java b/src/main/java/zone/moddev/mc/mineralogy/client/ClientSetup.java index e15afb7c7..20da3d0ff 100644 --- a/src/main/java/zone/moddev/mc/mineralogy/client/ClientSetup.java +++ b/src/main/java/zone/moddev/mc/mineralogy/client/ClientSetup.java @@ -3,14 +3,16 @@ import zone.moddev.mc.mineralogy.Mineralogy; import zone.moddev.mc.mineralogy.init.MineralogyFluids; -import net.minecraft.client.renderer.RenderType; +import net.minecraft.client.renderer.chunk.ChunkSectionLayer; import net.minecraft.client.renderer.ItemBlockRenderTypes; +import net.neoforged.neoforge.client.extensions.common.IClientFluidTypeExtensions; +import net.neoforged.neoforge.client.extensions.common.RegisterClientExtensionsEvent; import net.neoforged.api.distmarker.Dist; import net.neoforged.bus.api.SubscribeEvent; import net.neoforged.fml.common.EventBusSubscriber; import net.neoforged.fml.event.lifecycle.FMLClientSetupEvent; -@EventBusSubscriber(modid = Mineralogy.MODID, bus = EventBusSubscriber.Bus.MOD, value = Dist.CLIENT) +@EventBusSubscriber(modid = Mineralogy.MODID, value = Dist.CLIENT) public final class ClientSetup { private ClientSetup() { } @@ -19,7 +21,22 @@ private ClientSetup() { public static void clientSetup(FMLClientSetupEvent event) { // Block render types are declared by their model JSON on NeoForge 21.1. // Fluid render layers still use the target-native client registration API. - ItemBlockRenderTypes.setRenderLayer(MineralogyFluids.CRUDE_OIL.get(), RenderType.translucent()); - ItemBlockRenderTypes.setRenderLayer(MineralogyFluids.FLOWING_CRUDE_OIL.get(), RenderType.translucent()); + ItemBlockRenderTypes.setRenderLayer(MineralogyFluids.CRUDE_OIL.get(), ChunkSectionLayer.TRANSLUCENT); + ItemBlockRenderTypes.setRenderLayer(MineralogyFluids.FLOWING_CRUDE_OIL.get(), ChunkSectionLayer.TRANSLUCENT); + } + + @SubscribeEvent + public static void registerClientExtensions(RegisterClientExtensionsEvent event) { + event.registerFluidType(new IClientFluidTypeExtensions() { + @Override + public net.minecraft.resources.Identifier getStillTexture() { + return MineralogyFluids.crudeOilStillTexture(); + } + + @Override + public net.minecraft.resources.Identifier getFlowingTexture() { + return MineralogyFluids.crudeOilFlowTexture(); + } + }, MineralogyFluids.CRUDE_OIL_TYPE.get()); } } diff --git a/src/main/java/zone/moddev/mc/mineralogy/compat/CobblestoneTagPolicy.java b/src/main/java/zone/moddev/mc/mineralogy/compat/CobblestoneTagPolicy.java index a9ed7a8e6..ebc304546 100644 --- a/src/main/java/zone/moddev/mc/mineralogy/compat/CobblestoneTagPolicy.java +++ b/src/main/java/zone/moddev/mc/mineralogy/compat/CobblestoneTagPolicy.java @@ -1,103 +1,81 @@ package zone.moddev.mc.mineralogy.compat; import java.util.ArrayList; -import java.util.LinkedHashMap; import java.util.LinkedHashSet; import java.util.List; -import java.util.Map; import java.util.Set; import net.minecraft.core.Holder; +import net.minecraft.core.HolderLookup; import net.minecraft.core.HolderSet; import net.minecraft.core.Registry; -import net.minecraft.core.RegistryAccess; import net.minecraft.core.registries.Registries; +import net.minecraft.resources.Identifier; import net.minecraft.resources.ResourceKey; -import net.minecraft.resources.ResourceLocation; import net.minecraft.tags.TagKey; import net.minecraft.world.item.Item; -import net.minecraft.world.item.crafting.Ingredient; -import net.minecraft.world.item.crafting.RecipeHolder; import net.minecraft.world.level.block.Block; import net.neoforged.neoforge.event.TagsUpdatedEvent; -import net.neoforged.neoforge.event.server.ServerAboutToStartEvent; -import net.neoforged.neoforge.server.ServerLifecycleHooks; import zone.moddev.mc.mineralogy.Mineralogy; import zone.moddev.mc.mineralogy.MineralogyConfig; import zone.moddev.mc.mineralogy.data.Material; import zone.moddev.mc.mineralogy.data.MaterialData; -/** Applies the legacy cobblestone option to NeoForge 21.1 block and item tags. */ +/** Applies the legacy cobblestone option to NeoForge 21.11 tags. */ public final class CobblestoneTagPolicy { - private static final ResourceLocation COMMON_COBBLESTONES = ResourceLocation.fromNamespaceAndPath("c", "cobblestones"); - private static final ResourceLocation COMMON_NORMAL_COBBLESTONES = - ResourceLocation.fromNamespaceAndPath("c", "cobblestones/normal"); - private static final ResourceLocation FORGE_COBBLESTONE = ResourceLocation.fromNamespaceAndPath("forge", "cobblestone"); - private static final ResourceLocation MINERALOGY_COBBLESTONE = - ResourceLocation.fromNamespaceAndPath(Mineralogy.MODID, "cobblestone_equivalents"); - private static final ResourceLocation MINERALOGY_STONE_CRAFTING = - ResourceLocation.fromNamespaceAndPath(Mineralogy.MODID, "stone_crafting_materials"); - private static final ResourceLocation MINERALOGY_STONE_TOOLS = - ResourceLocation.fromNamespaceAndPath(Mineralogy.MODID, "stone_tool_materials"); - private static final ResourceLocation STONE_CRAFTING_MATERIALS = - ResourceLocation.fromNamespaceAndPath("minecraft", "stone_crafting_materials"); - private static final ResourceLocation STONE_TOOL_MATERIALS = - ResourceLocation.fromNamespaceAndPath("minecraft", "stone_tool_materials"); + private static final Identifier COMMON_COBBLESTONES = id("c", "cobblestones"); + private static final Identifier COMMON_NORMAL_COBBLESTONES = id("c", "cobblestones/normal"); + private static final Identifier LEGACY_COBBLESTONE = id("forge", "cobblestone"); + private static final Identifier MINERALOGY_COBBLESTONE = mineralogyId("cobblestone_equivalents"); + private static final Identifier MINERALOGY_STONE_CRAFTING = mineralogyId("stone_crafting_materials"); + private static final Identifier MINERALOGY_STONE_TOOLS = mineralogyId("stone_tool_materials"); + private static final Identifier STONE_CRAFTING_MATERIALS = id("minecraft", "stone_crafting_materials"); + private static final Identifier STONE_TOOL_MATERIALS = id("minecraft", "stone_tool_materials"); private CobblestoneTagPolicy() { } - /** Apply after the initial tag load and every server-side data reload. */ + /** Reapply on clients after receiving the server's tag packet. */ public static void onTagsUpdated(TagsUpdatedEvent event) { if (event.shouldUpdateStaticData()) { - apply(event.getRegistryAccess()); - invalidateRecipeIngredients(ServerLifecycleHooks.getCurrentServer()); + apply(event.getLookupProvider()); } } - /** Clear ingredients parsed before the initial server tag update. */ - public static void onServerAboutToStart(ServerAboutToStartEvent event) { - apply(event.getServer().registryAccess()); - invalidateRecipeIngredients(event.getServer()); - } - - static void apply(RegistryAccess access) { - Registry blockRegistry = access.registryOrThrow(Registries.BLOCK); - Registry itemRegistry = access.registryOrThrow(Registries.ITEM); + /** Rebind the already-loaded named sets on the server or client. */ + public static void apply(HolderLookup.Provider access) { + HolderLookup.RegistryLookup blockRegistry = access.lookupOrThrow(Registries.BLOCK); + HolderLookup.RegistryLookup itemRegistry = access.lookupOrThrow(Registries.ITEM); Set> configuredBlocks = rawRockHolders(blockRegistry, Registries.BLOCK); Set> configuredItems = rawRockHolders(itemRegistry, Registries.ITEM); boolean enabled = MineralogyConfig.makeRockCobblestoneEquivilent(); - Map, List>> blockTags = snapshot(blockRegistry); - updateTag(blockTags, blockRegistry, Registries.BLOCK, COMMON_COBBLESTONES, + updateTag(blockRegistry, Registries.BLOCK, COMMON_COBBLESTONES, configuredBlocks, enabled, "chert", "pumice"); - updateTag(blockTags, blockRegistry, Registries.BLOCK, COMMON_NORMAL_COBBLESTONES, + updateTag(blockRegistry, Registries.BLOCK, COMMON_NORMAL_COBBLESTONES, configuredBlocks, enabled, "chert", "pumice"); - updateTag(blockTags, blockRegistry, Registries.BLOCK, FORGE_COBBLESTONE, + updateTag(blockRegistry, Registries.BLOCK, LEGACY_COBBLESTONE, configuredBlocks, enabled, "chert", "pumice"); - blockRegistry.bindTags(blockTags); - Map, List>> itemTags = snapshot(itemRegistry); - updateTag(itemTags, itemRegistry, Registries.ITEM, COMMON_COBBLESTONES, + updateTag(itemRegistry, Registries.ITEM, COMMON_COBBLESTONES, configuredItems, enabled, "chert", "pumice"); - updateTag(itemTags, itemRegistry, Registries.ITEM, COMMON_NORMAL_COBBLESTONES, + updateTag(itemRegistry, Registries.ITEM, COMMON_NORMAL_COBBLESTONES, configuredItems, enabled, "chert", "pumice"); - updateTag(itemTags, itemRegistry, Registries.ITEM, FORGE_COBBLESTONE, + updateTag(itemRegistry, Registries.ITEM, LEGACY_COBBLESTONE, configuredItems, enabled, "chert", "pumice"); - updateTag(itemTags, itemRegistry, Registries.ITEM, MINERALOGY_COBBLESTONE, + updateTag(itemRegistry, Registries.ITEM, MINERALOGY_COBBLESTONE, configuredItems, enabled, "chert", "pumice"); - updateTag(itemTags, itemRegistry, Registries.ITEM, STONE_CRAFTING_MATERIALS, + updateTag(itemRegistry, Registries.ITEM, MINERALOGY_STONE_CRAFTING, configuredItems, enabled, "chert", "pumice"); - updateTag(itemTags, itemRegistry, Registries.ITEM, STONE_TOOL_MATERIALS, + updateTag(itemRegistry, Registries.ITEM, MINERALOGY_STONE_TOOLS, configuredItems, enabled, "chert", "pumice"); - updateTag(itemTags, itemRegistry, Registries.ITEM, MINERALOGY_STONE_CRAFTING, + updateTag(itemRegistry, Registries.ITEM, STONE_CRAFTING_MATERIALS, configuredItems, enabled, "chert", "pumice"); - updateTag(itemTags, itemRegistry, Registries.ITEM, MINERALOGY_STONE_TOOLS, + updateTag(itemRegistry, Registries.ITEM, STONE_TOOL_MATERIALS, configuredItems, enabled, "chert", "pumice"); - itemRegistry.bindTags(itemTags); - Mineralogy.LOGGER.debug("Applied NeoForge 21.1 cobblestone policy: enabled={}, rocks={}, " + Mineralogy.LOGGER.debug("Applied NeoForge 21.11 cobblestone policy: enabled={}, rocks={}, " + "unionItems={}, commonItems={}, craftingItems={}, toolItems={}", enabled, configuredItems.size(), size(itemRegistry, Registries.ITEM, MINERALOGY_COBBLESTONE), size(itemRegistry, Registries.ITEM, COMMON_COBBLESTONES), @@ -105,63 +83,86 @@ static void apply(RegistryAccess access) { size(itemRegistry, Registries.ITEM, STONE_TOOL_MATERIALS)); } - private static void invalidateRecipeIngredients(net.minecraft.server.MinecraftServer server) { - if (server == null) { - return; - } - int invalidated = 0; - for (RecipeHolder holder : server.getRecipeManager().getRecipes()) { - for (Ingredient ingredient : holder.value().getIngredients()) { - ingredient.itemStacks = null; - ingredient.stackingIds = null; - invalidated++; - } - } - Mineralogy.LOGGER.debug("Invalidated {} NeoForge recipe ingredient caches after tag rebinding", invalidated); - } - - static Map, List>> snapshot(Registry registry) { - Map, List>> result = new LinkedHashMap<>(); - registry.getTags().forEach(pair -> result.put(pair.getFirst(), holders(pair.getSecond()))); - return result; - } - private static List> holders(HolderSet.Named values) { List> result = new ArrayList<>(); values.forEach(result::add); return result; } - private static Set> rawRockHolders(Registry registry, + private static Set> rawRockHolders(HolderLookup.RegistryLookup registry, ResourceKey> registryKey) { Set> values = new LinkedHashSet<>(); for (Material material : MaterialData.allIncludingRockSalt()) { - TagKey tag = TagKey.create(registryKey, - ResourceLocation.fromNamespaceAndPath(Mineralogy.MODID, "stones/" + material.id())); - registry.getTag(tag).ifPresent(named -> named.forEach(values::add)); + TagKey tag = TagKey.create(registryKey, mineralogyId("stones/" + material.id())); + registry.get(tag).ifPresent(named -> named.forEach(values::add)); } return values; } - static void updateTag(Map, List>> tags, Registry registry, - ResourceKey> registryKey, ResourceLocation id, + static void updateTag(HolderLookup.RegistryLookup registry, + ResourceKey> registryKey, Identifier id, Set> configured, boolean enabled, String... unconditionalNames) { TagKey key = TagKey.create(registryKey, id); - Set> values = new LinkedHashSet<>(tags.getOrDefault(key, List.of())); + HolderSet.Named tag = registry.get(key).orElse(null); + if (tag == null) { + Mineralogy.LOGGER.warn("Cannot update missing compatibility tag {}", key.location()); + return; + } + Set> unconditional = new LinkedHashSet<>(); + for (String name : unconditionalNames) { + ResourceKey valueKey = ResourceKey.create(registryKey, mineralogyId(name)); + registry.get(valueKey).ifPresent(unconditional::add); + } + List> previous = holders(tag); + List> replacement = rebuildValues(previous, configured, enabled, unconditional); + tag.bind(replacement); + rebindHolderMembership(key, previous, configured, unconditional, replacement); + } + + private static void rebindHolderMembership(TagKey key, + List> previous, Set> configured, + Set> unconditional, List> replacement) { + Set> affected = new LinkedHashSet<>(previous); + affected.addAll(configured); + affected.addAll(unconditional); + Set> included = new LinkedHashSet<>(replacement); + + for (Holder holder : affected) { + if (!(holder instanceof Holder.Reference reference)) { + continue; + } + Set> tags = reference.tags() + .collect(java.util.stream.Collectors.toCollection(LinkedHashSet::new)); + if (included.contains(holder)) { + tags.add(key); + } else { + tags.remove(key); + } + reference.bindTags(tags); + } + } + + static List rebuildValues(List existing, Set configured, + boolean enabled, Set unconditional) { + Set values = new LinkedHashSet<>(existing); values.removeAll(configured); if (enabled) { values.addAll(configured); } - for (String name : unconditionalNames) { - ResourceKey valueKey = ResourceKey.create(registryKey, - ResourceLocation.fromNamespaceAndPath(Mineralogy.MODID, name)); - registry.getHolder(valueKey).ifPresent(values::add); - } - tags.put(key, new ArrayList<>(values)); + values.addAll(unconditional); + return new ArrayList<>(values); + } + + private static int size(HolderLookup.RegistryLookup registry, + ResourceKey> registryKey, Identifier id) { + return registry.get(TagKey.create(registryKey, id)).map(HolderSet.Named::size).orElse(0); + } + + private static Identifier mineralogyId(String path) { + return Identifier.fromNamespaceAndPath(Mineralogy.MODID, path); } - private static int size(Registry registry, ResourceKey> registryKey, - ResourceLocation id) { - return registry.getTag(TagKey.create(registryKey, id)).map(HolderSet.Named::size).orElse(0); + private static Identifier id(String namespace, String path) { + return Identifier.fromNamespaceAndPath(namespace, path); } } diff --git a/src/main/java/zone/moddev/mc/mineralogy/init/Blocks.java b/src/main/java/zone/moddev/mc/mineralogy/init/Blocks.java index e804e9755..17091baeb 100644 --- a/src/main/java/zone/moddev/mc/mineralogy/init/Blocks.java +++ b/src/main/java/zone/moddev/mc/mineralogy/init/Blocks.java @@ -28,14 +28,14 @@ import net.minecraft.world.level.block.Block; import net.minecraft.world.level.block.SoundType; -import net.minecraft.resources.ResourceLocation; +import net.minecraft.resources.Identifier; import net.minecraft.core.registries.Registries; import net.neoforged.bus.api.SubscribeEvent; import net.neoforged.fml.common.EventBusSubscriber; import net.neoforged.neoforge.registries.RegisterEvent; import net.neoforged.neoforge.registries.RegisterEvent.RegisterHelper; -@EventBusSubscriber(modid = Mineralogy.MODID, bus = EventBusSubscriber.Bus.MOD) +@EventBusSubscriber(modid = Mineralogy.MODID) public class Blocks { public static Rock andesite = null; @@ -452,7 +452,7 @@ private static T register(RegisterHelper registry, T bl if (path == null || path.isEmpty()) { throw new IllegalArgumentException("Mineralogy block has an empty registry path: " + block.getClass()); } - registry.register(ResourceLocation.fromNamespaceAndPath(Mineralogy.MODID, path), block); + registry.register(Identifier.fromNamespaceAndPath(Mineralogy.MODID, path), block); bindLegacyBlockField(path, block); return block; } diff --git a/src/main/java/zone/moddev/mc/mineralogy/init/Items.java b/src/main/java/zone/moddev/mc/mineralogy/init/Items.java index 0d01a2a63..1a6253055 100644 --- a/src/main/java/zone/moddev/mc/mineralogy/init/Items.java +++ b/src/main/java/zone/moddev/mc/mineralogy/init/Items.java @@ -19,7 +19,7 @@ import net.minecraft.world.level.block.Block; import net.minecraft.world.item.Item; import net.minecraft.world.item.BlockItem; -import net.minecraft.resources.ResourceLocation; +import net.minecraft.resources.Identifier; import net.minecraft.core.registries.BuiltInRegistries; import net.minecraft.core.registries.Registries; import net.neoforged.bus.api.SubscribeEvent; @@ -27,7 +27,7 @@ import net.neoforged.neoforge.registries.RegisterEvent; import net.neoforged.neoforge.registries.RegisterEvent.RegisterHelper; -@EventBusSubscriber(modid = Mineralogy.MODID, bus = EventBusSubscriber.Bus.MOD) +@EventBusSubscriber(modid = Mineralogy.MODID) public class Items { public static BlockItem basalt; public static Item sulfur_dust; @@ -46,13 +46,13 @@ public static void registerItems(RegisterEvent event) { } event.register(Registries.ITEM, registry -> { - sulfur_dust = register(registry, "sulfur_dust", createItem()); - phosphorous_dust = register(registry, "phosphorous_dust", createItem()); - nitrate_dust = register(registry, "nitrate_dust", createItem()); - gypsum_dust = register(registry, "gypsum_dust", createItem()); - chalk_dust = register(registry, "chalk_dust", createItem()); - rock_salt_dust = register(registry, "rock_salt_dust", createItem()); - salt_dust = register(registry, "salt_dust", createItem()); + sulfur_dust = register(registry, "sulfur_dust", createItem("sulfur_dust")); + phosphorous_dust = register(registry, "phosphorous_dust", createItem("phosphorous_dust")); + nitrate_dust = register(registry, "nitrate_dust", createItem("nitrate_dust")); + gypsum_dust = register(registry, "gypsum_dust", createItem("gypsum_dust")); + chalk_dust = register(registry, "chalk_dust", createItem("chalk_dust")); + rock_salt_dust = register(registry, "rock_salt_dust", createItem("rock_salt_dust")); + salt_dust = register(registry, "salt_dust", createItem("salt_dust")); mineral_fertilizer = register(registry, "mineral_fertilizer", createFertilizer()); List blockItems = new ArrayList(); @@ -64,7 +64,7 @@ public static void registerItems(RegisterEvent event) { } for (Item item : blockItems) { - ResourceLocation name = BuiltInRegistries.BLOCK.getKey(((BlockItem) item).getBlock()); + Identifier name = BuiltInRegistries.BLOCK.getKey(((BlockItem) item).getBlock()); registry.register(name, item); if ("basalt".equals(name.getPath())) { basalt = (BlockItem) item; @@ -74,7 +74,7 @@ public static void registerItems(RegisterEvent event) { } private static boolean isMineralogyBlockItem(Block block) { - ResourceLocation registryName = BuiltInRegistries.BLOCK.getKey(block); + Identifier registryName = BuiltInRegistries.BLOCK.getKey(block); return registryName != null && Mineralogy.MODID.equals(registryName.getNamespace()) @@ -91,7 +91,9 @@ private static boolean isMineralogyBlockItem(Block block) { } private static BlockItem createBlockItem(Block block) { - Item.Properties properties = new Item.Properties(); + Identifier name = BuiltInRegistries.BLOCK.getKey(block); + Item.Properties properties = RegistrationProperties.item(new Item.Properties(), name.getPath()) + .useBlockDescriptionPrefix(); if (block instanceof RockFurnace) { properties.stacksTo(1); } else if (block instanceof RockSaltStreetLamp) { @@ -102,14 +104,14 @@ private static BlockItem createBlockItem(Block block) { } private static boolean isUnlitRockFurnace(Block block) { - ResourceLocation registryName = BuiltInRegistries.BLOCK.getKey(block); + Identifier registryName = BuiltInRegistries.BLOCK.getKey(block); return block instanceof RockFurnace && registryName != null && !registryName.getPath().startsWith("lit_"); } - private static Item createItem() { - return new Item(new Item.Properties()); + private static Item createItem(String path) { + return new Item(RegistrationProperties.item(new Item.Properties(), path)); } private static Item createFertilizer() { @@ -117,7 +119,7 @@ private static Item createFertilizer() { } private static T register(RegisterHelper registry, String path, T item) { - registry.register(ResourceLocation.fromNamespaceAndPath(Mineralogy.MODID, path), item); + registry.register(Identifier.fromNamespaceAndPath(Mineralogy.MODID, path), item); return item; } diff --git a/src/main/java/zone/moddev/mc/mineralogy/init/MineralogyFluids.java b/src/main/java/zone/moddev/mc/mineralogy/init/MineralogyFluids.java index 2af90948c..132d2099c 100644 --- a/src/main/java/zone/moddev/mc/mineralogy/init/MineralogyFluids.java +++ b/src/main/java/zone/moddev/mc/mineralogy/init/MineralogyFluids.java @@ -1,17 +1,14 @@ package zone.moddev.mc.mineralogy.init; -import java.util.function.Consumer; - import zone.moddev.mc.mineralogy.Mineralogy; import zone.moddev.mc.mineralogy.blocks.MineralogyLiquidBlock; import zone.moddev.mc.mineralogy.items.MineralogyBucketItem; -import net.neoforged.neoforge.client.extensions.common.IClientFluidTypeExtensions; import net.neoforged.neoforge.common.SoundActions; import net.minecraft.world.level.material.MapColor; import net.minecraft.world.level.material.PushReaction; import net.minecraft.core.registries.BuiltInRegistries; -import net.minecraft.resources.ResourceLocation; +import net.minecraft.resources.Identifier; import net.minecraft.sounds.SoundEvents; import net.minecraft.world.item.Item; import net.minecraft.world.item.Items; @@ -36,8 +33,8 @@ public final class MineralogyFluids { private static final DeferredRegister ITEMS = DeferredRegister.create(BuiltInRegistries.ITEM, Mineralogy.MODID); - private static final ResourceLocation CRUDE_OIL_STILL = ResourceLocation.fromNamespaceAndPath(Mineralogy.MODID, "blocks/crude_oil_still"); - private static final ResourceLocation CRUDE_OIL_FLOW = ResourceLocation.fromNamespaceAndPath(Mineralogy.MODID, "blocks/crude_oil_flow"); + private static final Identifier CRUDE_OIL_STILL = Identifier.fromNamespaceAndPath(Mineralogy.MODID, "blocks/crude_oil_still"); + private static final Identifier CRUDE_OIL_FLOW = Identifier.fromNamespaceAndPath(Mineralogy.MODID, "blocks/crude_oil_flow"); public static final DeferredHolder CRUDE_OIL_TYPE = FLUID_TYPES.register("crude_oil", () -> new FluidType(FluidType.Properties.create() @@ -45,22 +42,7 @@ public final class MineralogyFluids { .viscosity(6000) .temperature(300) .sound(SoundActions.BUCKET_FILL, SoundEvents.BUCKET_FILL) - .sound(SoundActions.BUCKET_EMPTY, SoundEvents.BUCKET_EMPTY)) { - @Override - public void initializeClient(Consumer consumer) { - consumer.accept(new IClientFluidTypeExtensions() { - @Override - public ResourceLocation getStillTexture() { - return CRUDE_OIL_STILL; - } - - @Override - public ResourceLocation getFlowingTexture() { - return CRUDE_OIL_FLOW; - } - }); - } - }); + .sound(SoundActions.BUCKET_EMPTY, SoundEvents.BUCKET_EMPTY))); private static final BaseFlowingFluid.Properties CRUDE_OIL_PROPERTIES = new BaseFlowingFluid.Properties(MineralogyFluids::crudeOilType, @@ -79,18 +61,27 @@ public ResourceLocation getFlowingTexture() { FLUIDS.register("flowing_crude_oil", () -> new BaseFlowingFluid.Flowing(CRUDE_OIL_PROPERTIES)); public static final DeferredHolder CRUDE_OIL_BLOCK = BLOCKS.register("crude_oil", () -> new MineralogyLiquidBlock(MineralogyFluids::crudeOilFlowing, - BlockBehaviour.Properties.of().mapColor(MapColor.WATER).replaceable() - .noCollission().strength(100.0F).noLootTable().liquid() - .pushReaction(PushReaction.DESTROY))); + RegistrationProperties.block(BlockBehaviour.Properties.of().mapColor(MapColor.WATER).replaceable() + .noCollision().strength(100.0F).noLootTable().liquid() + .pushReaction(PushReaction.DESTROY), "crude_oil"))); public static final DeferredHolder CRUDE_OIL_BUCKET = ITEMS.register("crude_oil_bucket", () -> new MineralogyBucketItem(MineralogyFluids::crudeOil, - new Item.Properties().craftRemainder(Items.BUCKET).stacksTo(1))); + RegistrationProperties.item( + new Item.Properties().craftRemainder(Items.BUCKET).stacksTo(1), "crude_oil_bucket"))); + + public static void register(IEventBus modEventBus) { + FLUID_TYPES.register(modEventBus); + FLUIDS.register(modEventBus); + BLOCKS.register(modEventBus); + ITEMS.register(modEventBus); + } + + public static Identifier crudeOilStillTexture() { + return CRUDE_OIL_STILL; + } - public static void register(IEventBus modBus) { - FLUID_TYPES.register(modBus); - FLUIDS.register(modBus); - BLOCKS.register(modBus); - ITEMS.register(modBus); + public static Identifier crudeOilFlowTexture() { + return CRUDE_OIL_FLOW; } public static Fluid crudeOil() { diff --git a/src/main/java/zone/moddev/mc/mineralogy/init/MineralogyItemGroups.java b/src/main/java/zone/moddev/mc/mineralogy/init/MineralogyItemGroups.java index 34fe11464..e19a87f23 100644 --- a/src/main/java/zone/moddev/mc/mineralogy/init/MineralogyItemGroups.java +++ b/src/main/java/zone/moddev/mc/mineralogy/init/MineralogyItemGroups.java @@ -12,7 +12,7 @@ import net.minecraft.network.chat.Component; import net.minecraft.core.registries.BuiltInRegistries; import net.minecraft.core.registries.Registries; -import net.minecraft.resources.ResourceLocation; +import net.minecraft.resources.Identifier; import net.minecraft.world.item.BlockItem; import net.minecraft.world.item.CreativeModeTab; import net.minecraft.world.item.CreativeModeTabs; @@ -24,7 +24,7 @@ import net.neoforged.fml.common.EventBusSubscriber; import net.neoforged.neoforge.registries.RegisterEvent; -@EventBusSubscriber(modid = Mineralogy.MODID, bus = EventBusSubscriber.Bus.MOD) +@EventBusSubscriber(modid = Mineralogy.MODID) public final class MineralogyItemGroups { private static CreativeModeTab mineralogy; private static CreativeModeTab rocks; @@ -64,7 +64,7 @@ public static void buildTabContents(BuildCreativeModeTabContentsEvent event) { } for (Item item : BuiltInRegistries.ITEM.stream().toList()) { - ResourceLocation id = BuiltInRegistries.ITEM.getKey(item); + Identifier id = BuiltInRegistries.ITEM.getKey(item); if (id == null || !Mineralogy.MODID.equals(id.getNamespace())) { continue; } @@ -111,12 +111,12 @@ private static CreativeModeTab register(RegisterEvent.RegisterHelper icon(iconItemName)) .withSearchBar() .build(); - helper.register(ResourceLocation.fromNamespaceAndPath(Mineralogy.MODID, name), tab); + helper.register(Identifier.fromNamespaceAndPath(Mineralogy.MODID, name), tab); return tab; } private static ItemStack icon(String itemName) { - Item item = BuiltInRegistries.ITEM.get(ResourceLocation.fromNamespaceAndPath(Mineralogy.MODID, itemName)); + Item item = BuiltInRegistries.ITEM.getValue(Identifier.fromNamespaceAndPath(Mineralogy.MODID, itemName)); return new ItemStack(item == null ? net.minecraft.world.item.Items.IRON_PICKAXE : item); } } diff --git a/src/main/java/zone/moddev/mc/mineralogy/init/RegistrationProperties.java b/src/main/java/zone/moddev/mc/mineralogy/init/RegistrationProperties.java new file mode 100644 index 000000000..2806ee821 --- /dev/null +++ b/src/main/java/zone/moddev/mc/mineralogy/init/RegistrationProperties.java @@ -0,0 +1,33 @@ +package zone.moddev.mc.mineralogy.init; + +import zone.moddev.mc.mineralogy.Mineralogy; + +import net.minecraft.core.registries.Registries; +import net.minecraft.resources.Identifier; +import net.minecraft.resources.ResourceKey; +import net.minecraft.world.item.Item; +import net.minecraft.world.level.block.Block; +import net.minecraft.world.level.block.state.BlockBehaviour; + +/** + * Applies the stable registry identity before Minecraft 1.21.11 constructs an + * item or block. The target derives description and loot identities during + * construction, so assigning the registry entry afterward is too late. + */ +public final class RegistrationProperties { + public static BlockBehaviour.Properties block(BlockBehaviour.Properties properties, String path) { + return properties.setId(ResourceKey.create(Registries.BLOCK, id(path))); + } + + public static Item.Properties item(Item.Properties properties, String path) { + return properties.setId(ResourceKey.create(Registries.ITEM, id(path))); + } + + private static Identifier id(String path) { + return Identifier.fromNamespaceAndPath(Mineralogy.MODID, path); + } + + private RegistrationProperties() { + throw new IllegalAccessError("Not an instantiable class"); + } +} diff --git a/src/main/java/zone/moddev/mc/mineralogy/init/TileEntities.java b/src/main/java/zone/moddev/mc/mineralogy/init/TileEntities.java index 32d093f9a..030333b69 100644 --- a/src/main/java/zone/moddev/mc/mineralogy/init/TileEntities.java +++ b/src/main/java/zone/moddev/mc/mineralogy/init/TileEntities.java @@ -2,6 +2,7 @@ import java.util.ArrayList; import java.util.List; +import java.util.Set; import zone.moddev.mc.mineralogy.Mineralogy; import zone.moddev.mc.mineralogy.blocks.RockFurnace; @@ -16,9 +17,9 @@ import net.neoforged.neoforge.registries.RegisterEvent; import net.neoforged.neoforge.capabilities.Capabilities; import net.neoforged.neoforge.capabilities.RegisterCapabilitiesEvent; -import net.minecraft.resources.ResourceLocation; +import net.minecraft.resources.Identifier; -@EventBusSubscriber(modid = Mineralogy.MODID, bus = EventBusSubscriber.Bus.MOD) +@EventBusSubscriber(modid = Mineralogy.MODID) public class TileEntities { public static BlockEntityType rock_furnace; @@ -34,17 +35,15 @@ public static void registerTileEntities(RegisterEvent event) { } } - rock_furnace = BlockEntityType.Builder - .of(TileEntityRockFurnace::new, furnaceBlocks.toArray(new Block[furnaceBlocks.size()])) - .build(null); + rock_furnace = new BlockEntityType<>(TileEntityRockFurnace::new, Set.copyOf(furnaceBlocks)); event.register(Registries.BLOCK_ENTITY_TYPE, - ResourceLocation.fromNamespaceAndPath(Mineralogy.MODID, "rock_furnace"), + Identifier.fromNamespaceAndPath(Mineralogy.MODID, "rock_furnace"), () -> rock_furnace); } @SubscribeEvent public static void registerCapabilities(RegisterCapabilitiesEvent event) { - event.registerBlockEntity(Capabilities.ItemHandler.BLOCK, rock_furnace, + event.registerBlockEntity(Capabilities.Item.BLOCK, rock_furnace, (furnace, side) -> furnace.getItemHandler(side)); } diff --git a/src/main/java/zone/moddev/mc/mineralogy/inventory/SlotRockFurnaceOutput.java b/src/main/java/zone/moddev/mc/mineralogy/inventory/SlotRockFurnaceOutput.java index 4ef384a9e..f7653ec5a 100644 --- a/src/main/java/zone/moddev/mc/mineralogy/inventory/SlotRockFurnaceOutput.java +++ b/src/main/java/zone/moddev/mc/mineralogy/inventory/SlotRockFurnaceOutput.java @@ -12,7 +12,8 @@ import net.minecraft.world.item.crafting.SmeltingRecipe; import net.minecraft.world.item.crafting.Recipe; import net.minecraft.world.item.crafting.RecipeHolder; -import net.minecraft.resources.ResourceLocation; +import net.minecraft.resources.ResourceKey; +import net.minecraft.core.registries.Registries; import net.minecraft.util.Mth; import net.minecraft.world.phys.Vec3; import net.neoforged.neoforge.event.EventHooks; @@ -57,22 +58,24 @@ protected void onQuickCraft(ItemStack stack, int amount) { @Override protected void checkTakeAchievements(ItemStack stack) { - stack.onCraftedBy(player.level(), player, removeCount); + int craftedCount = removeCount; + stack.onCraftedBy(player, craftedCount); - if (!player.level().isClientSide) { + if (!player.level().isClientSide()) { spawnExperience(); furnace.onCrafting(player); } removeCount = 0; - EventHooks.firePlayerSmeltedEvent(player, stack); + EventHooks.firePlayerSmeltedEvent(player, stack, craftedCount); } private void spawnExperience() { - for (Map.Entry entry : furnace.getRecipeUseCounts().entrySet()) { - RecipeHolder recipe = player.level().getRecipeManager().byKey(entry.getKey()).orElse(null); + for (Map.Entry>, Integer> entry : furnace.getRecipeUseCounts().entrySet()) { + RecipeHolder recipe = player.level() instanceof ServerLevel serverLevel + ? serverLevel.recipeAccess().byKey(entry.getKey()).orElse(null) : null; float experience = recipe != null && recipe.value() instanceof SmeltingRecipe - ? ((SmeltingRecipe) recipe.value()).getExperience() : 0.0F; + ? ((SmeltingRecipe) recipe.value()).experience() : 0.0F; int amount = getExperienceAmount(entry.getValue().intValue(), experience); if (amount > 0 && player.level() instanceof ServerLevel) { diff --git a/src/main/java/zone/moddev/mc/mineralogy/items/MineralFertilizer.java b/src/main/java/zone/moddev/mc/mineralogy/items/MineralFertilizer.java index 6c3125483..e4fec5846 100644 --- a/src/main/java/zone/moddev/mc/mineralogy/items/MineralFertilizer.java +++ b/src/main/java/zone/moddev/mc/mineralogy/items/MineralFertilizer.java @@ -1,5 +1,7 @@ package zone.moddev.mc.mineralogy.items; +import zone.moddev.mc.mineralogy.init.RegistrationProperties; + import net.minecraft.world.entity.player.Player; import net.minecraft.world.item.BoneMealItem; import net.minecraft.world.item.Items; @@ -14,7 +16,7 @@ public class MineralFertilizer extends Item { private final ItemStack phantomBonemeal = new ItemStack(Items.BONE_MEAL, 27); public MineralFertilizer() { - super(new Item.Properties()); + super(RegistrationProperties.item(new Item.Properties(), "mineral_fertilizer")); } @Override diff --git a/src/main/java/zone/moddev/mc/mineralogy/mixin/BlockStateDataAccessor.java b/src/main/java/zone/moddev/mc/mineralogy/mixin/BlockStateDataAccessor.java new file mode 100644 index 000000000..1997bf993 --- /dev/null +++ b/src/main/java/zone/moddev/mc/mineralogy/mixin/BlockStateDataAccessor.java @@ -0,0 +1,15 @@ +package zone.moddev.mc.mineralogy.mixin; + +import com.mojang.serialization.Dynamic; +import net.minecraft.util.datafix.fixes.BlockStateData; +import org.spongepowered.asm.mixin.Mixin; +import org.spongepowered.asm.mixin.gen.Accessor; + +/** Typed access to the table expanded by {@link BlockStateDataMixin}. */ +@Mixin(BlockStateData.class) +public interface BlockStateDataAccessor { + @Accessor("MAP") + static Dynamic[] mineralogy$getLegacyStateMap() { + throw new AssertionError("Mixin accessor was not applied"); + } +} diff --git a/src/main/java/zone/moddev/mc/mineralogy/mixin/BlockStateDataMixin.java b/src/main/java/zone/moddev/mc/mineralogy/mixin/BlockStateDataMixin.java new file mode 100644 index 000000000..f8e39b449 --- /dev/null +++ b/src/main/java/zone/moddev/mc/mineralogy/mixin/BlockStateDataMixin.java @@ -0,0 +1,33 @@ +package zone.moddev.mc.mineralogy.mixin; + +import java.util.Arrays; + +import com.mojang.serialization.Dynamic; +import net.minecraft.util.datafix.fixes.BlockStateData; +import org.spongepowered.asm.mixin.Final; +import org.spongepowered.asm.mixin.Mixin; +import org.spongepowered.asm.mixin.Mutable; +import org.spongepowered.asm.mixin.Shadow; +import org.spongepowered.asm.mixin.injection.At; +import org.spongepowered.asm.mixin.injection.Inject; +import org.spongepowered.asm.mixin.injection.callback.CallbackInfo; + +/** Expands vanilla's pre-flattening lookup tables before legacy mod states are installed. */ +@Mixin(BlockStateData.class) +abstract class BlockStateDataMixin { + @Shadow + @Final + @Mutable + private static Dynamic[] MAP; + + @Shadow + @Final + @Mutable + private static Dynamic[] BLOCK_DEFAULTS; + + @Inject(method = "", at = @At("TAIL")) + private static void mineralogy$expandLegacyStateTables(CallbackInfo callback) { + MAP = Arrays.copyOf(MAP, 65_536); + BLOCK_DEFAULTS = Arrays.copyOf(BLOCK_DEFAULTS, 4_096); + } +} diff --git a/src/main/java/zone/moddev/mc/mineralogy/mixin/CommonHooksMixin.java b/src/main/java/zone/moddev/mc/mineralogy/mixin/CommonHooksMixin.java new file mode 100644 index 000000000..3c6b5f780 --- /dev/null +++ b/src/main/java/zone/moddev/mc/mineralogy/mixin/CommonHooksMixin.java @@ -0,0 +1,20 @@ +package zone.moddev.mc.mineralogy.mixin; + +import net.minecraft.world.level.storage.LevelStorageSource; +import net.minecraft.nbt.CompoundTag; +import net.neoforged.neoforge.common.CommonHooks; +import org.spongepowered.asm.mixin.Mixin; +import org.spongepowered.asm.mixin.injection.At; +import org.spongepowered.asm.mixin.injection.Inject; +import org.spongepowered.asm.mixin.injection.callback.CallbackInfo; +import zone.moddev.mc.mineralogy.patching.LegacyWorldDataHook; + +/** Captures NeoForge's legacy registry snapshot before the loader discards it. */ +@Mixin(value = CommonHooks.class, remap = false) +abstract class CommonHooksMixin { + @Inject(method = "readAdditionalLevelSaveData", at = @At("HEAD")) + private static void mineralogy$captureLegacyLevelData(CompoundTag root, + LevelStorageSource.LevelDirectory levelDirectory, CallbackInfo callback) { + LegacyWorldDataHook.captureLegacyLevelData(root, levelDirectory); + } +} diff --git a/src/main/java/zone/moddev/mc/mineralogy/mixin/OreSpawnEarlyTagCompatibilityMixin.java b/src/main/java/zone/moddev/mc/mineralogy/mixin/OreSpawnEarlyTagCompatibilityMixin.java new file mode 100644 index 000000000..cfc471f6a --- /dev/null +++ b/src/main/java/zone/moddev/mc/mineralogy/mixin/OreSpawnEarlyTagCompatibilityMixin.java @@ -0,0 +1,40 @@ +package zone.moddev.mc.mineralogy.mixin; + +import java.util.Collections; +import java.util.IdentityHashMap; +import java.util.Set; + +import net.minecraft.tags.TagKey; +import net.minecraft.world.level.block.Block; +import net.minecraft.core.registries.BuiltInRegistries; +import org.spongepowered.asm.mixin.Mixin; +import org.spongepowered.asm.mixin.injection.At; +import org.spongepowered.asm.mixin.injection.Inject; +import org.spongepowered.asm.mixin.injection.callback.CallbackInfoReturnable; + +/** + * Minecraft 1.21.11 throws when a block tag is queried before the first tag + * load. OreSpawn 4.0.16 can make that query during common setup when an older + * global profile contains tag-backed ore hosts. Defer those hosts as an empty + * early result; OreSpawn rebakes the same unchanged profile after the world's + * tags have loaded. + */ +@Mixin(targets = "zone.moddev.mc.orespawn.worldgen.OreSpawnOreGeneration", remap = false) +public abstract class OreSpawnEarlyTagCompatibilityMixin { + @Inject(method = "resolveTag", at = @At("HEAD"), cancellable = true, remap = false) + private static void mineralogy$deferUnboundOreHostTag(TagKey tag, + CallbackInfoReturnable> callback) { + Set resolved = Collections.newSetFromMap(new IdentityHashMap<>()); + for (Block block : BuiltInRegistries.BLOCK) { + try { + if (block.defaultBlockState().is(tag)) { + resolved.add(block); + } + } catch (IllegalStateException unboundTags) { + callback.setReturnValue(Collections.emptySet()); + return; + } + } + callback.setReturnValue(resolved); + } +} diff --git a/src/main/java/zone/moddev/mc/mineralogy/mixin/ReloadableServerResourcesMixin.java b/src/main/java/zone/moddev/mc/mineralogy/mixin/ReloadableServerResourcesMixin.java new file mode 100644 index 000000000..48369abe5 --- /dev/null +++ b/src/main/java/zone/moddev/mc/mineralogy/mixin/ReloadableServerResourcesMixin.java @@ -0,0 +1,22 @@ +package zone.moddev.mc.mineralogy.mixin; + +import net.minecraft.server.ReloadableServerResources; +import org.spongepowered.asm.mixin.Mixin; +import org.spongepowered.asm.mixin.injection.At; +import org.spongepowered.asm.mixin.injection.Inject; +import org.spongepowered.asm.mixin.injection.callback.CallbackInfo; +import zone.moddev.mc.mineralogy.compat.CobblestoneTagPolicy; + +/** + * NeoForge 21.11 leaves the server-side TagsUpdatedEvent call disabled. Rebind the + * affected named sets immediately after vanilla commits the pending tag load, + * which also covers every later /reload. + */ +@Mixin(ReloadableServerResources.class) +public abstract class ReloadableServerResourcesMixin { + @Inject(method = "updateStaticRegistryTags", at = @At("TAIL")) + private void mineralogy$rebindCobblestoneTags(CallbackInfo callback) { + ReloadableServerResources resources = (ReloadableServerResources) (Object) this; + CobblestoneTagPolicy.apply(resources.fullRegistries().lookup()); + } +} diff --git a/src/main/java/zone/moddev/mc/mineralogy/mixin/SimpleRegionStorageMixin.java b/src/main/java/zone/moddev/mc/mineralogy/mixin/SimpleRegionStorageMixin.java new file mode 100644 index 000000000..a532c1bc6 --- /dev/null +++ b/src/main/java/zone/moddev/mc/mineralogy/mixin/SimpleRegionStorageMixin.java @@ -0,0 +1,30 @@ +package zone.moddev.mc.mineralogy.mixin; + +import net.minecraft.nbt.CompoundTag; +import net.minecraft.world.level.chunk.storage.SimpleRegionStorage; +import org.jspecify.annotations.Nullable; +import org.spongepowered.asm.mixin.Mixin; +import org.spongepowered.asm.mixin.injection.At; +import org.spongepowered.asm.mixin.injection.Inject; +import org.spongepowered.asm.mixin.injection.callback.CallbackInfoReturnable; +import zone.moddev.mc.mineralogy.patching.LegacyWorldDataHook; + +/** Wraps vanilla datafixing so recovered legacy Mineralogy states survive conversion. */ +@Mixin(SimpleRegionStorage.class) +abstract class SimpleRegionStorageMixin { + @Inject( + method = "upgradeChunkTag(Lnet/minecraft/nbt/CompoundTag;ILnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag;", + at = @At("HEAD")) + private void mineralogy$prepareLegacyChunk(CompoundTag chunk, int fallbackDataVersion, + @Nullable CompoundTag context, CallbackInfoReturnable callback) { + LegacyWorldDataHook.prepareLegacyChunk(chunk); + } + + @Inject( + method = "upgradeChunkTag(Lnet/minecraft/nbt/CompoundTag;ILnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag;", + at = @At("RETURN"), cancellable = true) + private void mineralogy$finalizeLegacyChunk(CompoundTag chunk, int fallbackDataVersion, + @Nullable CompoundTag context, CallbackInfoReturnable callback) { + callback.setReturnValue(LegacyWorldDataHook.finalizeLegacyChunk(callback.getReturnValue())); + } +} diff --git a/src/main/java/zone/moddev/mc/mineralogy/mixin/WorldGenRegionMixin.java b/src/main/java/zone/moddev/mc/mineralogy/mixin/WorldGenRegionMixin.java new file mode 100644 index 000000000..371cb5acb --- /dev/null +++ b/src/main/java/zone/moddev/mc/mineralogy/mixin/WorldGenRegionMixin.java @@ -0,0 +1,20 @@ +package zone.moddev.mc.mineralogy.mixin; + +import net.minecraft.core.BlockPos; +import net.minecraft.server.level.WorldGenRegion; +import org.spongepowered.asm.mixin.Mixin; +import org.spongepowered.asm.mixin.injection.At; +import org.spongepowered.asm.mixin.injection.Inject; +import org.spongepowered.asm.mixin.injection.callback.CallbackInfoReturnable; +import zone.moddev.mc.mineralogy.patching.LegacyWorldDataHook; + +/** Prevents generation from rewriting blocks in chunks imported from pre-flattening worlds. */ +@Mixin(WorldGenRegion.class) +abstract class WorldGenRegionMixin { + @Inject(method = "ensureCanWrite", at = @At("HEAD"), cancellable = true) + private void mineralogy$protectLegacyChunk(BlockPos position, CallbackInfoReturnable callback) { + if (LegacyWorldDataHook.shouldBlockWorldgenWrite(position)) { + callback.setReturnValue(false); + } + } +} diff --git a/src/main/java/zone/moddev/mc/mineralogy/patching/LegacyTileEntityIdNormalizer.java b/src/main/java/zone/moddev/mc/mineralogy/patching/LegacyTileEntityIdNormalizer.java index d50450ad8..fd0eafea2 100644 --- a/src/main/java/zone/moddev/mc/mineralogy/patching/LegacyTileEntityIdNormalizer.java +++ b/src/main/java/zone/moddev/mc/mineralogy/patching/LegacyTileEntityIdNormalizer.java @@ -7,7 +7,7 @@ /** * Converts pre-namespaced tile-entity identifiers into values Forge 36 can - * safely parse. Minecraft 1.14 and 1.15 construct a ResourceLocation before looking + * safely parse. Minecraft 1.14 and 1.15 construct a Identifier before looking * up the tile type, so an otherwise harmless missing legacy tile such as * {@code Chest} aborts the complete chunk future because of its uppercase * character. diff --git a/src/main/java/zone/moddev/mc/mineralogy/patching/LegacyWorldDataHook.java b/src/main/java/zone/moddev/mc/mineralogy/patching/LegacyWorldDataHook.java index 274341f2c..1ffd5fb3d 100644 --- a/src/main/java/zone/moddev/mc/mineralogy/patching/LegacyWorldDataHook.java +++ b/src/main/java/zone/moddev/mc/mineralogy/patching/LegacyWorldDataHook.java @@ -5,12 +5,10 @@ import java.io.FileOutputStream; import java.io.IOException; import java.io.InputStream; -import java.lang.reflect.Field; import java.nio.file.AtomicMoveNotSupportedException; import java.nio.file.Files; import java.nio.file.Path; import java.nio.file.StandardCopyOption; -import java.util.Arrays; import java.util.BitSet; import java.util.HashMap; import java.util.Map; @@ -19,23 +17,22 @@ import com.mojang.serialization.Dynamic; -import sun.misc.Unsafe; - import zone.moddev.mc.mineralogy.Mineralogy; import zone.moddev.mc.mineralogy.blocks.RockFurnace; import zone.moddev.mc.mineralogy.blocks.RockSaltLamp; import zone.moddev.mc.mineralogy.blocks.RockSaltStreetLamp; import zone.moddev.mc.mineralogy.blocks.RockSlab; import zone.moddev.mc.mineralogy.migration.LegacyMineralogy6ConfigMigrator; +import zone.moddev.mc.mineralogy.mixin.BlockStateDataAccessor; import net.minecraft.core.BlockPos; import net.minecraft.core.Direction; import net.minecraft.nbt.CompoundTag; import net.minecraft.nbt.ListTag; import net.minecraft.nbt.NbtIo; import net.minecraft.nbt.NbtAccounter; +import net.minecraft.nbt.NbtOps; import net.minecraft.nbt.NbtUtils; -import net.minecraft.resources.ResourceLocation; -import net.minecraft.util.datafix.fixes.BlockStateData; +import net.minecraft.resources.Identifier; import net.minecraft.world.level.block.Block; import net.minecraft.world.level.block.StairBlock; import net.minecraft.world.level.block.state.BlockState; @@ -52,7 +49,7 @@ /** Converts pre-flattening Mineralogy block IDs before vanilla chunk datafixing. */ public final class LegacyWorldDataHook { private static final Logger LOGGER = LogManager.getLogger(); - private static final Map BLOCK_ALIASES = new HashMap<>(); + private static final Map BLOCK_ALIASES = new HashMap<>(); private static final BitSet LEGACY_MINERALOGY_BLOCK_IDS = new BitSet(); private static final BitSet LEGACY_ROCK_FURNACE_BLOCK_IDS = new BitSet(); private static final Set LEGACY_MINERALOGY_CHUNKS = ConcurrentHashMap.newKeySet(); @@ -62,10 +59,10 @@ public final class LegacyWorldDataHook { private static volatile boolean legacyWorldActive; static { - BLOCK_ALIASES.put(ResourceLocation.fromNamespaceAndPath(Mineralogy.MODID, "pummice"), - ResourceLocation.fromNamespaceAndPath(Mineralogy.MODID, "pumice")); - BLOCK_ALIASES.put(ResourceLocation.fromNamespaceAndPath(Mineralogy.MODID, "saprolite"), - ResourceLocation.fromNamespaceAndPath(Mineralogy.MODID, "limestone")); + BLOCK_ALIASES.put(Identifier.fromNamespaceAndPath(Mineralogy.MODID, "pummice"), + Identifier.fromNamespaceAndPath(Mineralogy.MODID, "pumice")); + BLOCK_ALIASES.put(Identifier.fromNamespaceAndPath(Mineralogy.MODID, "saprolite"), + Identifier.fromNamespaceAndPath(Mineralogy.MODID, "limestone")); } private LegacyWorldDataHook() { @@ -78,10 +75,10 @@ public static void captureLegacyLevelData(CompoundTag root, return; } Path levelPath = levelDirectory.path(); - if (root.contains("FML", 10)) { - prepareLegacyWorld(levelPath.toFile(), root.getCompound("FML")); - } else if (root.contains("fml", 10)) { - prepareLegacyWorld(levelPath.toFile(), root.getCompound("fml")); + if (root.contains("FML")) { + prepareLegacyWorld(levelPath.toFile(), root.getCompoundOrEmpty("FML")); + } else if (root.contains("fml")) { + prepareLegacyWorld(levelPath.toFile(), root.getCompoundOrEmpty("fml")); } else { prepareLegacyWorld(levelPath.resolve("level.dat").toFile()); } @@ -103,11 +100,11 @@ private static synchronized void prepareLegacyWorld(File levelDat) { try (FileInputStream input = new FileInputStream(levelDat)) { CompoundTag root = NbtIo.readCompressed(input, NbtAccounter.unlimitedHeap()); - if (root.contains("FML", 10)) { - CompoundTag fml = root.getCompound("FML"); - CompoundTag registries = fml.getCompound("Registries"); - if (registries.contains("minecraft:blocks", 10)) { - CompoundTag blocks = registries.getCompound("minecraft:blocks"); + if (root.contains("FML")) { + CompoundTag fml = root.getCompoundOrEmpty("FML"); + CompoundTag registries = fml.getCompoundOrEmpty("Registries"); + if (registries.contains("minecraft:blocks")) { + CompoundTag blocks = registries.getCompoundOrEmpty("minecraft:blocks"); install(levelDat.getParentFile(), blocks); writeSidecar(levelDat.getParentFile(), blocks); return; @@ -121,7 +118,7 @@ private static synchronized void prepareLegacyWorld(File levelDat) { File sidecar = sidecar(levelDat.getParentFile()); if (sidecar.isFile()) { try (FileInputStream input = new FileInputStream(sidecar)) { - install(levelDat.getParentFile(), NbtIo.readCompressed(input, NbtAccounter.unlimitedHeap()).getCompound("Blocks")); + install(levelDat.getParentFile(), NbtIo.readCompressed(input, NbtAccounter.unlimitedHeap()).getCompoundOrEmpty("Blocks")); } catch (IOException e) { LOGGER.warn("Could not read legacy Mineralogy registry sidecar '{}'", sidecar, e); } @@ -131,10 +128,10 @@ private static synchronized void prepareLegacyWorld(File levelDat) { private static synchronized void prepareLegacyWorld(File worldDirectory, CompoundTag fmlData) { legacyWorldActive = false; LEGACY_MINERALOGY_CHUNKS.clear(); - if (fmlData.contains("Registries", 10)) { - CompoundTag registries = fmlData.getCompound("Registries"); - if (registries.contains("minecraft:blocks", 10)) { - CompoundTag blocks = registries.getCompound("minecraft:blocks"); + if (fmlData.contains("Registries")) { + CompoundTag registries = fmlData.getCompoundOrEmpty("Registries"); + if (registries.contains("minecraft:blocks")) { + CompoundTag blocks = registries.getCompoundOrEmpty("minecraft:blocks"); install(worldDirectory, blocks); writeSidecar(worldDirectory, blocks); return; @@ -144,7 +141,7 @@ private static synchronized void prepareLegacyWorld(File worldDirectory, Compoun File sidecar = sidecar(worldDirectory); if (sidecar.isFile()) { try (FileInputStream input = new FileInputStream(sidecar)) { - install(worldDirectory, NbtIo.readCompressed(input, NbtAccounter.unlimitedHeap()).getCompound("Blocks")); + install(worldDirectory, NbtIo.readCompressed(input, NbtAccounter.unlimitedHeap()).getCompoundOrEmpty("Blocks")); } catch (IOException e) { LOGGER.warn("Could not read legacy Mineralogy registry sidecar '{}'", sidecar, e); } @@ -238,31 +235,31 @@ private static File sidecar(File worldDirectory) { return new File(new File(worldDirectory, "data"), SIDECAR_NAME); } - /** Called by the chunk-loader coremod immediately before vanilla datafixing. */ + /** Called by the chunk-storage mixin immediately before vanilla datafixing. */ public static void prepareLegacyChunk(CompoundTag root) { - if (!legacyWorldActive || root == null || !root.contains("Level", 10)) { + if (!legacyWorldActive || root == null || !root.contains("Level")) { return; } - CompoundTag level = root.getCompound("Level"); + CompoundTag level = root.getCompoundOrEmpty("Level"); if (!containsLegacyMineralogyBlock(level)) { return; } - LEGACY_MINERALOGY_CHUNKS.add(chunkKey(level.getInt("xPos"), level.getInt("zPos"))); + LEGACY_MINERALOGY_CHUNKS.add(chunkKey(level.getIntOr("xPos", 0), level.getIntOr("zPos", 0))); rewriteLegacyRockFurnaceTileEntities(level); level.putBoolean("TerrainPopulated", true); level.putBoolean("LightPopulated", true); level.putBoolean(PRESERVE_CHUNK_MARKER, true); } - /** Called by the chunk-loader coremod after vanilla datafixing. */ + /** Called by the chunk-storage mixin after vanilla datafixing. */ public static CompoundTag finalizeLegacyChunk(CompoundTag root) { if (root == null) { return root; } - CompoundTag level = root.contains("Level", 10) ? root.getCompound("Level") : root; - boolean preserve = level.getBoolean(PRESERVE_CHUNK_MARKER) - || LEGACY_MINERALOGY_CHUNKS.contains(chunkKey(level.getInt("xPos"), level.getInt("zPos"))); + CompoundTag level = root.contains("Level") ? root.getCompoundOrEmpty("Level") : root; + boolean preserve = level.getBooleanOr(PRESERVE_CHUNK_MARKER, false) + || LEGACY_MINERALOGY_CHUNKS.contains(chunkKey(level.getIntOr("xPos", 0), level.getIntOr("zPos", 0))); if (preserve) { level.putString("Status", "full"); level.remove(PRESERVE_CHUNK_MARKER); @@ -273,90 +270,64 @@ public static CompoundTag finalizeLegacyChunk(CompoundTag root) { private static int installLegacyBlockStates(CompoundTag blockSnapshot) { LEGACY_MINERALOGY_BLOCK_IDS.clear(); LEGACY_ROCK_FURNACE_BLOCK_IDS.clear(); - Map mineralogyIds = new HashMap<>(); - ListTag savedIds = blockSnapshot.getList("ids", 10); + Map mineralogyIds = new HashMap<>(); + ListTag savedIds = blockSnapshot.getListOrEmpty("ids"); int highestStateId = 0; for (int index = 0; index < savedIds.size(); ++index) { - CompoundTag savedId = savedIds.getCompound(index); - String key = savedId.getString("K"); + CompoundTag savedId = savedIds.getCompoundOrEmpty(index); + String key = savedId.getStringOr("K", ""); if (!key.startsWith(Mineralogy.MODID + ":")) { continue; } - ResourceLocation id = ResourceLocation.parse(key); - int numericId = savedId.getInt("V"); + Identifier id = Identifier.parse(key); + int numericId = savedId.getIntOr("V", -1); + if (numericId < 0) { + continue; + } mineralogyIds.put(id, numericId); highestStateId = Math.max(highestStateId, (numericId << 4) | 15); } Dynamic[] legacyStates = expandFlatteningTable(highestStateId + 1); int mapped = 0; - for (Map.Entry entry : mineralogyIds.entrySet()) { - ResourceLocation oldId = entry.getKey(); + for (Map.Entry entry : mineralogyIds.entrySet()) { + Identifier oldId = entry.getKey(); LEGACY_MINERALOGY_BLOCK_IDS.set(entry.getValue()); Block block = resolveCurrentBlock(oldId); if (block instanceof RockFurnace) { LEGACY_ROCK_FURNACE_BLOCK_IDS.set(entry.getValue()); } for (int meta = 0; meta < 16; ++meta) { - String stateNbt = NbtUtils.writeBlockState(legacyState(block, meta)).toString(); int stateId = (entry.getValue() << 4) | meta; // The private vanilla register method may retain a JIT-compiled reference to // its original final 4,096-entry array. Write the expanded array directly; // Mineralogy has no legacy aliases that need its auxiliary name maps. - legacyStates[stateId] = BlockStateData.parse(stateNbt); + legacyStates[stateId] = new Dynamic<>(NbtOps.INSTANCE, + NbtUtils.writeBlockState(legacyState(block, meta))); ++mapped; } } return mapped; } - /** - * Minecraft 1.21.1 still fixes the pre-flattening state table at 4,096 entries, - * while Forge 1.12 worlds commonly assign mod blocks higher numeric IDs. - * Replace that exact static-final array before writing any recovered states. - */ + /** Returns the lookup table expanded by the required BlockStateData mixin. */ private static Dynamic[] expandFlatteningTable(int requiredLength) { - try { - Unsafe unsafe = unsafe(); - for (Field field : BlockStateData.class.getDeclaredFields()) { - Class type = field.getType(); - if (!java.lang.reflect.Modifier.isStatic(field.getModifiers()) || !type.isArray() - || type.getComponentType() != Dynamic.class) { - continue; - } - Object base = unsafe.staticFieldBase(field); - long offset = unsafe.staticFieldOffset(field); - Dynamic[] current = (Dynamic[]) unsafe.getObject(base, offset); - if (current == null || current.length < 4096) { - continue; - } - if (current.length >= requiredLength) { - return current; - } - Dynamic[] expanded = Arrays.copyOf(current, requiredLength); - unsafe.putObjectVolatile(base, offset, expanded); - return expanded; - } - } catch (ReflectiveOperationException e) { - throw new IllegalStateException("Could not access Minecraft's legacy block-state flattening table", e); + Dynamic[] states = BlockStateDataAccessor.mineralogy$getLegacyStateMap(); + if (states.length < requiredLength) { + throw new IllegalStateException("Legacy block-state table has length " + states.length + + " but Mineralogy needs at least " + requiredLength); } - throw new IllegalStateException("Could not locate Minecraft's legacy block-state flattening table"); - } - - private static Unsafe unsafe() throws ReflectiveOperationException { - Field field = Unsafe.class.getDeclaredField("theUnsafe"); - field.setAccessible(true); - return (Unsafe) field.get(null); + return states; } private static boolean containsLegacyMineralogyBlock(CompoundTag level) { - ListTag sections = level.getList("Sections", 10); + ListTag sections = level.getListOrEmpty("Sections"); for (int sectionIndex = 0; sectionIndex < sections.size(); ++sectionIndex) { - CompoundTag section = sections.getCompound(sectionIndex); - byte[] blocks = section.getByteArray("Blocks"); + CompoundTag section = sections.getCompoundOrEmpty(sectionIndex); + byte[] blocks = section.getByteArray("Blocks").orElseGet(() -> new byte[0]); if (blocks.length != 4096) { continue; } - byte[] add = section.getByteArray("Add"); + byte[] add = section.getByteArray("Add").orElseGet(() -> new byte[0]); for (int blockIndex = 0; blockIndex < blocks.length; ++blockIndex) { if (LEGACY_MINERALOGY_BLOCK_IDS.get(blockId(blocks, add, blockIndex))) { return true; @@ -367,11 +338,11 @@ private static boolean containsLegacyMineralogyBlock(CompoundTag level) { } private static void rewriteLegacyRockFurnaceTileEntities(CompoundTag level) { - ListTag tileEntities = level.getList("TileEntities", 10); + ListTag tileEntities = level.getListOrEmpty("TileEntities"); for (int index = 0; index < tileEntities.size(); ++index) { - CompoundTag tileEntity = tileEntities.getCompound(index); - int blockId = getLegacyBlockId(level, tileEntity.getInt("x"), tileEntity.getInt("y"), - tileEntity.getInt("z")); + CompoundTag tileEntity = tileEntities.getCompoundOrEmpty(index); + int blockId = getLegacyBlockId(level, tileEntity.getIntOr("x", 0), tileEntity.getIntOr("y", -1), + tileEntity.getIntOr("z", 0)); if (LEGACY_ROCK_FURNACE_BLOCK_IDS.get(blockId)) { tileEntity.putString("id", ROCK_FURNACE_TILE_ENTITY); } @@ -382,18 +353,18 @@ private static int getLegacyBlockId(CompoundTag level, int x, int y, int z) { if (y < 0 || y > 255) { return -1; } - ListTag sections = level.getList("Sections", 10); + ListTag sections = level.getListOrEmpty("Sections"); for (int sectionIndex = 0; sectionIndex < sections.size(); ++sectionIndex) { - CompoundTag section = sections.getCompound(sectionIndex); - if ((section.getByte("Y") & 0xFF) != y >> 4) { + CompoundTag section = sections.getCompoundOrEmpty(sectionIndex); + if ((section.getByteOr("Y", (byte) -1) & 0xFF) != y >> 4) { continue; } - byte[] blocks = section.getByteArray("Blocks"); + byte[] blocks = section.getByteArray("Blocks").orElseGet(() -> new byte[0]); if (blocks.length != 4096) { return -1; } int index = ((y & 15) << 8) | ((z & 15) << 4) | (x & 15); - return blockId(blocks, section.getByteArray("Add"), index); + return blockId(blocks, section.getByteArray("Add").orElseGet(() -> new byte[0]), index); } return -1; } @@ -417,12 +388,12 @@ private static long chunkKey(int chunkX, int chunkZ) { return ((long) chunkX & 0xFFFFFFFFL) << 32 | ((long) chunkZ & 0xFFFFFFFFL); } - private static Block resolveCurrentBlock(ResourceLocation oldId) { - ResourceLocation target = BLOCK_ALIASES.getOrDefault(oldId, oldId); + private static Block resolveCurrentBlock(Identifier oldId) { + Identifier target = BLOCK_ALIASES.getOrDefault(oldId, oldId); if (!BuiltInRegistries.BLOCK.containsKey(target)) { throw new IllegalStateException("Legacy Mineralogy block has no current replacement: " + oldId); } - return BuiltInRegistries.BLOCK.get(target); + return BuiltInRegistries.BLOCK.getValue(target); } private static BlockState legacyState(Block block, int meta) { diff --git a/src/main/java/zone/moddev/mc/mineralogy/patching/PatchHandler.java b/src/main/java/zone/moddev/mc/mineralogy/patching/PatchHandler.java index 7b0895bb3..f93d097df 100644 --- a/src/main/java/zone/moddev/mc/mineralogy/patching/PatchHandler.java +++ b/src/main/java/zone/moddev/mc/mineralogy/patching/PatchHandler.java @@ -4,7 +4,7 @@ import zone.moddev.mc.mineralogy.MineralogyConfig; import net.minecraft.core.registries.BuiltInRegistries; -import net.minecraft.resources.ResourceLocation; +import net.minecraft.resources.Identifier; import net.minecraft.sounds.SoundEvent; import net.minecraft.world.item.Item; import net.minecraft.world.level.block.Block; @@ -13,14 +13,14 @@ /** Registers the exact historical IDs as NeoForge registry aliases. */ public final class PatchHandler { - private static final ResourceLocation SAPROLITE = mineralogyId("saprolite"); - private static final ResourceLocation PUMMICE = mineralogyId("pummice"); - private static final ResourceLocation LIMESTONE = mineralogyId("limestone"); - private static final ResourceLocation PUMICE = mineralogyId("pumice"); - private static final ResourceLocation GRASS_PATH = minecraftId("grass_path"); - private static final ResourceLocation DIRT_PATH = minecraftId("dirt_path"); - private static final ResourceLocation SWEET_BERRIES_PICK = minecraftId("item.sweet_berries.pick_from_bush"); - private static final ResourceLocation SWEET_BERRY_BUSH_PICK = minecraftId("block.sweet_berry_bush.pick_berries"); + private static final Identifier SAPROLITE = mineralogyId("saprolite"); + private static final Identifier PUMMICE = mineralogyId("pummice"); + private static final Identifier LIMESTONE = mineralogyId("limestone"); + private static final Identifier PUMICE = mineralogyId("pumice"); + private static final Identifier GRASS_PATH = minecraftId("grass_path"); + private static final Identifier DIRT_PATH = minecraftId("dirt_path"); + private static final Identifier SWEET_BERRIES_PICK = minecraftId("item.sweet_berries.pick_from_bush"); + private static final Identifier SWEET_BERRY_BUSH_PICK = minecraftId("block.sweet_berry_bush.pick_berries"); private static final DeferredRegister BLOCK_ALIASES = DeferredRegister.create(BuiltInRegistries.BLOCK, Mineralogy.MODID); @@ -48,11 +48,11 @@ public static void registerAliases(IEventBus modBus) { SOUND_ALIASES.register(modBus); } - private static ResourceLocation mineralogyId(String path) { - return ResourceLocation.fromNamespaceAndPath(Mineralogy.MODID, path); + private static Identifier mineralogyId(String path) { + return Identifier.fromNamespaceAndPath(Mineralogy.MODID, path); } - private static ResourceLocation minecraftId(String path) { - return ResourceLocation.fromNamespaceAndPath("minecraft", path); + private static Identifier minecraftId(String path) { + return Identifier.fromNamespaceAndPath("minecraft", path); } } diff --git a/src/main/java/zone/moddev/mc/mineralogy/tileentity/TileEntityRockFurnace.java b/src/main/java/zone/moddev/mc/mineralogy/tileentity/TileEntityRockFurnace.java index 153e7a272..195d7f7ec 100644 --- a/src/main/java/zone/moddev/mc/mineralogy/tileentity/TileEntityRockFurnace.java +++ b/src/main/java/zone/moddev/mc/mineralogy/tileentity/TileEntityRockFurnace.java @@ -15,17 +15,19 @@ import net.minecraft.core.Direction; import net.minecraft.core.HolderLookup; import net.minecraft.core.NonNullList; -import net.minecraft.nbt.CompoundTag; import net.minecraft.network.chat.Component; -import net.minecraft.resources.ResourceLocation; +import net.minecraft.network.chat.ComponentSerialization; +import net.minecraft.resources.Identifier; +import net.minecraft.resources.ResourceKey; import net.minecraft.server.level.ServerPlayer; +import net.minecraft.server.level.ServerLevel; import net.minecraft.util.Mth; import net.minecraft.world.Container; import net.minecraft.world.ContainerHelper; import net.minecraft.world.WorldlyContainer; import net.minecraft.world.entity.player.Inventory; import net.minecraft.world.entity.player.Player; -import net.minecraft.world.entity.player.StackedContents; +import net.minecraft.world.entity.player.StackedItemContents; import net.minecraft.world.inventory.AbstractContainerMenu; import net.minecraft.world.inventory.ContainerData; import net.minecraft.world.inventory.FurnaceFuelSlot; @@ -39,15 +41,17 @@ import net.minecraft.world.item.crafting.RecipeType; import net.minecraft.world.item.crafting.SingleRecipeInput; import net.minecraft.world.item.crafting.SmeltingRecipe; -import net.minecraft.world.level.GameRules; +import net.minecraft.world.level.gamerules.GameRules; import net.minecraft.world.level.Level; +import net.minecraft.world.level.storage.ValueInput; +import net.minecraft.world.level.storage.ValueOutput; import net.minecraft.world.level.block.Block; import net.minecraft.world.level.block.Blocks; import net.minecraft.world.level.block.entity.BaseContainerBlockEntity; import net.minecraft.world.level.block.state.BlockState; -import net.neoforged.neoforge.items.IItemHandler; -import net.neoforged.neoforge.items.IItemHandlerModifiable; -import net.neoforged.neoforge.items.wrapper.SidedInvWrapper; +import net.neoforged.neoforge.transfer.ResourceHandler; +import net.neoforged.neoforge.transfer.item.ItemResource; +import net.neoforged.neoforge.transfer.item.WorldlyContainerWrapper; public class TileEntityRockFurnace extends BaseContainerBlockEntity implements WorldlyContainer, RecipeCraftingHolder, StackedContentsCompatible { @@ -60,7 +64,7 @@ public class TileEntityRockFurnace extends BaseContainerBlockEntity private int currentItemBurnTime; private int cookTime; private int totalCookTime = 200; - private final Map recipeUseCounts = new HashMap(); + private final Map>, Integer> recipeUseCounts = new HashMap<>(); private final ContainerData furnaceData = new ContainerData() { @Override public int get(int index) { @@ -77,7 +81,7 @@ public int getCount() { return 4; } }; - private final IItemHandlerModifiable[] handlers = createHandlers(); + private final ResourceHandler[] handlers = createHandlers(); private final float fallbackBurnModifier; private Component customInventoryName; @@ -163,27 +167,25 @@ protected void setItems(NonNullList items) { } @Override - protected void loadAdditional(CompoundTag compound, HolderLookup.Provider registries) { - super.loadAdditional(compound, registries); - customInventoryName = null; + protected void loadAdditional(ValueInput compound) { + super.loadAdditional(compound); + customInventoryName = compound.read("CustomName", ComponentSerialization.CODEC).orElse(null); furnaceItemStacks = NonNullList.withSize(getContainerSize(), ItemStack.EMPTY); - ContainerHelper.loadAllItems(compound, furnaceItemStacks, registries); - furnaceBurnTime = compound.getInt("BurnTime"); - cookTime = compound.getInt("CookTime"); - totalCookTime = compound.getInt("CookTimeTotal"); + ContainerHelper.loadAllItems(compound, furnaceItemStacks); + furnaceBurnTime = compound.getIntOr("BurnTime", 0); + cookTime = compound.getIntOr("CookTime", 0); + totalCookTime = compound.getIntOr("CookTimeTotal", 200); currentItemBurnTime = getItemBurnTime(furnaceItemStacks.get(1)); } @Override - protected void saveAdditional(CompoundTag compound, HolderLookup.Provider registries) { - super.saveAdditional(compound, registries); + protected void saveAdditional(ValueOutput compound) { + super.saveAdditional(compound); compound.putInt("BurnTime", furnaceBurnTime); compound.putInt("CookTime", cookTime); compound.putInt("CookTimeTotal", totalCookTime); - ContainerHelper.saveAllItems(compound, furnaceItemStacks, registries); - if (customInventoryName != null) { - compound.putString("CustomName", Component.Serializer.toJson(customInventoryName, registries)); - } + ContainerHelper.saveAllItems(compound, furnaceItemStacks); + compound.storeNullable("CustomName", ComponentSerialization.CODEC, customInventoryName); } public boolean isBurning() { @@ -212,7 +214,7 @@ private void tickServer(Level level, BlockPos pos) { if (isBurning()) { dirty = true; - ItemStack container = fuel.getCraftingRemainingItem(); + ItemStack container = fuel.getCraftingRemainder(); if (!container.isEmpty()) { furnaceItemStacks.set(1, container); } else if (!fuel.isEmpty()) { @@ -250,17 +252,18 @@ private void tickServer(Level level, BlockPos pos) { } private int getCookTime(@Nullable RecipeHolder recipe) { - return recipe != null ? recipe.value().getCookingTime() : 200; + return recipe != null ? recipe.value().cookingTime() : 200; } @Nullable private RecipeHolder getSmeltingRecipe() { - return level == null ? null - : level.getRecipeManager().getRecipeFor(RecipeType.SMELTING, - new SingleRecipeInput(furnaceItemStacks.get(0)), level).orElse(null); + return level instanceof ServerLevel serverLevel + ? serverLevel.recipeAccess().getRecipeFor(RecipeType.SMELTING, + new SingleRecipeInput(furnaceItemStacks.get(0)), serverLevel).orElse(null) + : null; } - private boolean canSmelt(@Nullable RecipeHolder> recipe) { + private boolean canSmelt(@Nullable RecipeHolder recipe) { if (furnaceItemStacks.get(0).isEmpty() || recipe == null) { return false; } @@ -268,7 +271,8 @@ private boolean canSmelt(@Nullable RecipeHolder> recipe) { if (level == null) { return false; } - ItemStack result = recipe.value().getResultItem(level.registryAccess()); + ItemStack result = recipe.value().assemble(new SingleRecipeInput(furnaceItemStacks.get(0)), + level.registryAccess()); if (result.isEmpty()) { return false; } @@ -288,13 +292,13 @@ private boolean canSmelt(@Nullable RecipeHolder> recipe) { return output.getCount() + result.getCount() <= result.getMaxStackSize(); } - private void smeltItem(@Nullable RecipeHolder> recipe) { + private void smeltItem(@Nullable RecipeHolder recipe) { if (!canSmelt(recipe)) { return; } ItemStack input = furnaceItemStacks.get(0); - ItemStack result = recipe.value().getResultItem(level.registryAccess()); + ItemStack result = recipe.value().assemble(new SingleRecipeInput(input), level.registryAccess()); ItemStack output = furnaceItemStacks.get(2); if (output.isEmpty()) { @@ -314,11 +318,11 @@ private void smeltItem(@Nullable RecipeHolder> recipe) { input.shrink(1); } - private static int getItemBurnTime(ItemStack stack) { - return stack.isEmpty() ? 0 : stack.getBurnTime(RecipeType.SMELTING); + private int getItemBurnTime(ItemStack stack) { + return stack.isEmpty() || level == null ? 0 : stack.getBurnTime(RecipeType.SMELTING, level.fuelValues()); } - public static boolean isItemFuel(ItemStack stack) { + public boolean isItemFuel(ItemStack stack) { return getItemBurnTime(stack) > 0; } @@ -410,7 +414,7 @@ public void clearContent() { } @Override - public void fillStackedContents(StackedContents helper) { + public void fillStackedContents(StackedItemContents helper) { for (ItemStack stack : furnaceItemStacks) { helper.accountStack(stack); } @@ -421,7 +425,7 @@ public void setRecipeUsed(RecipeHolder recipe) { if (recipe == null) { return; } - ResourceLocation id = recipe.id(); + ResourceKey> id = recipe.id(); Integer count = recipeUseCounts.get(id); recipeUseCounts.put(id, count == null ? 1 : count + 1); } @@ -431,21 +435,22 @@ public RecipeHolder getRecipeUsed() { return null; } - public Map getRecipeUseCounts() { + public Map>, Integer> getRecipeUseCounts() { return recipeUseCounts; } @Override - public boolean setRecipeUsed(Level level, ServerPlayer player, RecipeHolder recipe) { + public boolean setRecipeUsed(ServerPlayer player, RecipeHolder recipe) { setRecipeUsed(recipe); return recipe != null; } public void onCrafting(Player player) { - if (!player.level().getGameRules().getBoolean(GameRules.RULE_LIMITED_CRAFTING)) { + if (player.level() instanceof ServerLevel serverLevel + && !serverLevel.getGameRules().get(GameRules.LIMITED_CRAFTING)) { List> recipes = new ArrayList>(); - for (ResourceLocation id : recipeUseCounts.keySet()) { - RecipeHolder recipe = player.level().getRecipeManager().byKey(id).orElse(null); + for (ResourceKey> id : recipeUseCounts.keySet()) { + RecipeHolder recipe = serverLevel.recipeAccess().byKey(id).orElse(null); if (recipe != null) { recipes.add(recipe); } @@ -456,7 +461,7 @@ public void onCrafting(Player player) { recipeUseCounts.clear(); } - public IItemHandler getItemHandler(@Nullable Direction facing) { + public ResourceHandler getItemHandler(@Nullable Direction facing) { if (facing == Direction.UP) { return handlers[0]; } @@ -466,11 +471,12 @@ public IItemHandler getItemHandler(@Nullable Direction facing) { return handlers[2]; } - private IItemHandlerModifiable[] createHandlers() { - return new IItemHandlerModifiable[] { - new SidedInvWrapper(this, Direction.UP), - new SidedInvWrapper(this, Direction.DOWN), - new SidedInvWrapper(this, Direction.NORTH) + @SuppressWarnings("unchecked") + private ResourceHandler[] createHandlers() { + return new ResourceHandler[] { + new WorldlyContainerWrapper(this, Direction.UP), + new WorldlyContainerWrapper(this, Direction.DOWN), + new WorldlyContainerWrapper(this, Direction.NORTH) }; } diff --git a/src/main/resources/META-INF/accesstransformer.cfg b/src/main/resources/META-INF/accesstransformer.cfg index 4829db3d6..a3162bbde 100644 --- a/src/main/resources/META-INF/accesstransformer.cfg +++ b/src/main/resources/META-INF/accesstransformer.cfg @@ -1,5 +1,5 @@ -# NeoForge 20.6 does not expose Forge's former Ingredient.invalidateAll(). -# Mineralogy clears these two vanilla caches after rebinding its configurable -# cobblestone tags so existing RecipeManager entries see the new memberships. -public net.minecraft.world.item.crafting.Ingredient itemStacks -public net.minecraft.world.item.crafting.Ingredient stackingIds +# Minecraft 1.21.11 ingredients retain live HolderSet references. Expose only +# the two binding operations needed to keep named-set contents and individual +# holder membership synchronized after Mineralogy applies its runtime policy. +public net.minecraft.core.Holder$Reference bindTags(Ljava/util/Collection;)V +public net.minecraft.core.HolderSet$Named bind(Ljava/util/List;)V diff --git a/src/main/resources/META-INF/coremods.json b/src/main/resources/META-INF/coremods.json deleted file mode 100644 index 8f8444dea..000000000 --- a/src/main/resources/META-INF/coremods.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "mineralogy_legacy_world_fix": "coremods/mineralogy_legacy_world_fix.js" -} diff --git a/src/main/resources/META-INF/neoforge.mods.toml b/src/main/resources/META-INF/neoforge.mods.toml index d53a85a22..2b1d5342d 100644 --- a/src/main/resources/META-INF/neoforge.mods.toml +++ b/src/main/resources/META-INF/neoforge.mods.toml @@ -1,5 +1,3 @@ -modLoader="javafml" -loaderVersion="${loader_version_range}" license="${mod_license}" issueTrackerURL="https://github.com/MinecraftModDevelopmentMods/MinecraftMineralogy/issues" @@ -15,6 +13,9 @@ description='''${mod_description}''' [[accessTransformers]] file="META-INF/accesstransformer.cfg" +[[mixins]] +config="mineralogy.mixins.json" + [[dependencies.${mod_id}]] modId="neoforge" type="required" diff --git a/src/main/resources/assets/mineralogy/items/amphibolite.json b/src/main/resources/assets/mineralogy/items/amphibolite.json new file mode 100644 index 000000000..14cf58e78 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/amphibolite.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/amphibolite" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/amphibolite_brick.json b/src/main/resources/assets/mineralogy/items/amphibolite_brick.json new file mode 100644 index 000000000..0fbc1f32c --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/amphibolite_brick.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/amphibolite_brick" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/amphibolite_brick_furnace.json b/src/main/resources/assets/mineralogy/items/amphibolite_brick_furnace.json new file mode 100644 index 000000000..bc6f72abf --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/amphibolite_brick_furnace.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/amphibolite_brick_furnace" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/amphibolite_brick_slab.json b/src/main/resources/assets/mineralogy/items/amphibolite_brick_slab.json new file mode 100644 index 000000000..4c1afd474 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/amphibolite_brick_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/amphibolite_brick_slab" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/amphibolite_brick_stairs.json b/src/main/resources/assets/mineralogy/items/amphibolite_brick_stairs.json new file mode 100644 index 000000000..4590fbeb0 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/amphibolite_brick_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/amphibolite_brick_stairs" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/amphibolite_brick_wall.json b/src/main/resources/assets/mineralogy/items/amphibolite_brick_wall.json new file mode 100644 index 000000000..9967d359f --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/amphibolite_brick_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/amphibolite_brick_wall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/amphibolite_furnace.json b/src/main/resources/assets/mineralogy/items/amphibolite_furnace.json new file mode 100644 index 000000000..a4e7826d6 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/amphibolite_furnace.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/amphibolite_furnace" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/amphibolite_relief_axe.json b/src/main/resources/assets/mineralogy/items/amphibolite_relief_axe.json new file mode 100644 index 000000000..2b1d11ef3 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/amphibolite_relief_axe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/amphibolite_relief_axe" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/amphibolite_relief_blank.json b/src/main/resources/assets/mineralogy/items/amphibolite_relief_blank.json new file mode 100644 index 000000000..9dfeedecb --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/amphibolite_relief_blank.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/amphibolite_relief_blank" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/amphibolite_relief_cross.json b/src/main/resources/assets/mineralogy/items/amphibolite_relief_cross.json new file mode 100644 index 000000000..d239d0766 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/amphibolite_relief_cross.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/amphibolite_relief_cross" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/amphibolite_relief_hammer.json b/src/main/resources/assets/mineralogy/items/amphibolite_relief_hammer.json new file mode 100644 index 000000000..3dce41119 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/amphibolite_relief_hammer.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/amphibolite_relief_hammer" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/amphibolite_relief_hoe.json b/src/main/resources/assets/mineralogy/items/amphibolite_relief_hoe.json new file mode 100644 index 000000000..b56724c85 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/amphibolite_relief_hoe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/amphibolite_relief_hoe" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/amphibolite_relief_horizontal.json b/src/main/resources/assets/mineralogy/items/amphibolite_relief_horizontal.json new file mode 100644 index 000000000..9b0e1382c --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/amphibolite_relief_horizontal.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/amphibolite_relief_horizontal" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/amphibolite_relief_i.json b/src/main/resources/assets/mineralogy/items/amphibolite_relief_i.json new file mode 100644 index 000000000..c15d1bbb3 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/amphibolite_relief_i.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/amphibolite_relief_i" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/amphibolite_relief_left.json b/src/main/resources/assets/mineralogy/items/amphibolite_relief_left.json new file mode 100644 index 000000000..1178d6bd2 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/amphibolite_relief_left.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/amphibolite_relief_left" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/amphibolite_relief_pickaxe.json b/src/main/resources/assets/mineralogy/items/amphibolite_relief_pickaxe.json new file mode 100644 index 000000000..4143dc41d --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/amphibolite_relief_pickaxe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/amphibolite_relief_pickaxe" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/amphibolite_relief_plus.json b/src/main/resources/assets/mineralogy/items/amphibolite_relief_plus.json new file mode 100644 index 000000000..3a63045f5 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/amphibolite_relief_plus.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/amphibolite_relief_plus" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/amphibolite_relief_right.json b/src/main/resources/assets/mineralogy/items/amphibolite_relief_right.json new file mode 100644 index 000000000..abf936912 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/amphibolite_relief_right.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/amphibolite_relief_right" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/amphibolite_relief_sword.json b/src/main/resources/assets/mineralogy/items/amphibolite_relief_sword.json new file mode 100644 index 000000000..08c8b3d45 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/amphibolite_relief_sword.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/amphibolite_relief_sword" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/amphibolite_relief_vertical.json b/src/main/resources/assets/mineralogy/items/amphibolite_relief_vertical.json new file mode 100644 index 000000000..5e311165e --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/amphibolite_relief_vertical.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/amphibolite_relief_vertical" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/amphibolite_slab.json b/src/main/resources/assets/mineralogy/items/amphibolite_slab.json new file mode 100644 index 000000000..ece5c8ee4 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/amphibolite_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/amphibolite_slab" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/amphibolite_smooth.json b/src/main/resources/assets/mineralogy/items/amphibolite_smooth.json new file mode 100644 index 000000000..510074a06 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/amphibolite_smooth.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/amphibolite_smooth" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/amphibolite_smooth_brick.json b/src/main/resources/assets/mineralogy/items/amphibolite_smooth_brick.json new file mode 100644 index 000000000..393452356 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/amphibolite_smooth_brick.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/amphibolite_smooth_brick" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/amphibolite_smooth_brick_furnace.json b/src/main/resources/assets/mineralogy/items/amphibolite_smooth_brick_furnace.json new file mode 100644 index 000000000..ffe71593f --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/amphibolite_smooth_brick_furnace.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/amphibolite_smooth_brick_furnace" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/amphibolite_smooth_brick_slab.json b/src/main/resources/assets/mineralogy/items/amphibolite_smooth_brick_slab.json new file mode 100644 index 000000000..d4000bbb5 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/amphibolite_smooth_brick_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/amphibolite_smooth_brick_slab" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/amphibolite_smooth_brick_stairs.json b/src/main/resources/assets/mineralogy/items/amphibolite_smooth_brick_stairs.json new file mode 100644 index 000000000..e7f15a52a --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/amphibolite_smooth_brick_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/amphibolite_smooth_brick_stairs" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/amphibolite_smooth_brick_wall.json b/src/main/resources/assets/mineralogy/items/amphibolite_smooth_brick_wall.json new file mode 100644 index 000000000..0242819d4 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/amphibolite_smooth_brick_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/amphibolite_smooth_brick_wall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/amphibolite_smooth_furnace.json b/src/main/resources/assets/mineralogy/items/amphibolite_smooth_furnace.json new file mode 100644 index 000000000..275713bfe --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/amphibolite_smooth_furnace.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/amphibolite_smooth_furnace" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/amphibolite_smooth_slab.json b/src/main/resources/assets/mineralogy/items/amphibolite_smooth_slab.json new file mode 100644 index 000000000..f6f903593 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/amphibolite_smooth_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/amphibolite_smooth_slab" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/amphibolite_smooth_stairs.json b/src/main/resources/assets/mineralogy/items/amphibolite_smooth_stairs.json new file mode 100644 index 000000000..f1363b6cb --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/amphibolite_smooth_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/amphibolite_smooth_stairs" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/amphibolite_smooth_wall.json b/src/main/resources/assets/mineralogy/items/amphibolite_smooth_wall.json new file mode 100644 index 000000000..c9058f319 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/amphibolite_smooth_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/amphibolite_smooth_wall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/amphibolite_stairs.json b/src/main/resources/assets/mineralogy/items/amphibolite_stairs.json new file mode 100644 index 000000000..2654fac34 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/amphibolite_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/amphibolite_stairs" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/amphibolite_wall.json b/src/main/resources/assets/mineralogy/items/amphibolite_wall.json new file mode 100644 index 000000000..37f189063 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/amphibolite_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/amphibolite_wall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/andesite.json b/src/main/resources/assets/mineralogy/items/andesite.json new file mode 100644 index 000000000..c8376ef0b --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/andesite.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/andesite" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/andesite_brick.json b/src/main/resources/assets/mineralogy/items/andesite_brick.json new file mode 100644 index 000000000..7a0aad550 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/andesite_brick.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/andesite_brick" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/andesite_brick_furnace.json b/src/main/resources/assets/mineralogy/items/andesite_brick_furnace.json new file mode 100644 index 000000000..469bf0bfa --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/andesite_brick_furnace.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/andesite_brick_furnace" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/andesite_brick_slab.json b/src/main/resources/assets/mineralogy/items/andesite_brick_slab.json new file mode 100644 index 000000000..42f3474e3 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/andesite_brick_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/andesite_brick_slab" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/andesite_brick_stairs.json b/src/main/resources/assets/mineralogy/items/andesite_brick_stairs.json new file mode 100644 index 000000000..5c39b73a6 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/andesite_brick_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/andesite_brick_stairs" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/andesite_brick_wall.json b/src/main/resources/assets/mineralogy/items/andesite_brick_wall.json new file mode 100644 index 000000000..07120741e --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/andesite_brick_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/andesite_brick_wall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/andesite_furnace.json b/src/main/resources/assets/mineralogy/items/andesite_furnace.json new file mode 100644 index 000000000..88d195e55 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/andesite_furnace.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/andesite_furnace" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/andesite_relief_axe.json b/src/main/resources/assets/mineralogy/items/andesite_relief_axe.json new file mode 100644 index 000000000..22e647c64 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/andesite_relief_axe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/andesite_relief_axe" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/andesite_relief_blank.json b/src/main/resources/assets/mineralogy/items/andesite_relief_blank.json new file mode 100644 index 000000000..6d5b343ea --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/andesite_relief_blank.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/andesite_relief_blank" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/andesite_relief_cross.json b/src/main/resources/assets/mineralogy/items/andesite_relief_cross.json new file mode 100644 index 000000000..9a5c97dfb --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/andesite_relief_cross.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/andesite_relief_cross" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/andesite_relief_hammer.json b/src/main/resources/assets/mineralogy/items/andesite_relief_hammer.json new file mode 100644 index 000000000..5beb92db7 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/andesite_relief_hammer.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/andesite_relief_hammer" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/andesite_relief_hoe.json b/src/main/resources/assets/mineralogy/items/andesite_relief_hoe.json new file mode 100644 index 000000000..4e441c6e1 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/andesite_relief_hoe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/andesite_relief_hoe" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/andesite_relief_horizontal.json b/src/main/resources/assets/mineralogy/items/andesite_relief_horizontal.json new file mode 100644 index 000000000..34f425860 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/andesite_relief_horizontal.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/andesite_relief_horizontal" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/andesite_relief_i.json b/src/main/resources/assets/mineralogy/items/andesite_relief_i.json new file mode 100644 index 000000000..b29ed4946 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/andesite_relief_i.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/andesite_relief_i" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/andesite_relief_left.json b/src/main/resources/assets/mineralogy/items/andesite_relief_left.json new file mode 100644 index 000000000..619f21c47 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/andesite_relief_left.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/andesite_relief_left" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/andesite_relief_pickaxe.json b/src/main/resources/assets/mineralogy/items/andesite_relief_pickaxe.json new file mode 100644 index 000000000..b0e537193 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/andesite_relief_pickaxe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/andesite_relief_pickaxe" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/andesite_relief_plus.json b/src/main/resources/assets/mineralogy/items/andesite_relief_plus.json new file mode 100644 index 000000000..efdeb4cee --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/andesite_relief_plus.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/andesite_relief_plus" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/andesite_relief_right.json b/src/main/resources/assets/mineralogy/items/andesite_relief_right.json new file mode 100644 index 000000000..11b33c37f --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/andesite_relief_right.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/andesite_relief_right" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/andesite_relief_sword.json b/src/main/resources/assets/mineralogy/items/andesite_relief_sword.json new file mode 100644 index 000000000..f13031d14 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/andesite_relief_sword.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/andesite_relief_sword" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/andesite_relief_vertical.json b/src/main/resources/assets/mineralogy/items/andesite_relief_vertical.json new file mode 100644 index 000000000..06f2d66c7 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/andesite_relief_vertical.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/andesite_relief_vertical" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/andesite_slab.json b/src/main/resources/assets/mineralogy/items/andesite_slab.json new file mode 100644 index 000000000..77ff34fbc --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/andesite_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/andesite_slab" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/andesite_smooth.json b/src/main/resources/assets/mineralogy/items/andesite_smooth.json new file mode 100644 index 000000000..67e6bfa5b --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/andesite_smooth.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/andesite_smooth" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/andesite_smooth_brick.json b/src/main/resources/assets/mineralogy/items/andesite_smooth_brick.json new file mode 100644 index 000000000..1bcbfdb62 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/andesite_smooth_brick.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/andesite_smooth_brick" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/andesite_smooth_brick_furnace.json b/src/main/resources/assets/mineralogy/items/andesite_smooth_brick_furnace.json new file mode 100644 index 000000000..c1599a61b --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/andesite_smooth_brick_furnace.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/andesite_smooth_brick_furnace" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/andesite_smooth_brick_slab.json b/src/main/resources/assets/mineralogy/items/andesite_smooth_brick_slab.json new file mode 100644 index 000000000..3ecc0fb20 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/andesite_smooth_brick_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/andesite_smooth_brick_slab" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/andesite_smooth_brick_stairs.json b/src/main/resources/assets/mineralogy/items/andesite_smooth_brick_stairs.json new file mode 100644 index 000000000..4934fea35 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/andesite_smooth_brick_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/andesite_smooth_brick_stairs" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/andesite_smooth_brick_wall.json b/src/main/resources/assets/mineralogy/items/andesite_smooth_brick_wall.json new file mode 100644 index 000000000..11b0fff6b --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/andesite_smooth_brick_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/andesite_smooth_brick_wall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/andesite_smooth_furnace.json b/src/main/resources/assets/mineralogy/items/andesite_smooth_furnace.json new file mode 100644 index 000000000..c835c9518 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/andesite_smooth_furnace.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/andesite_smooth_furnace" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/andesite_smooth_slab.json b/src/main/resources/assets/mineralogy/items/andesite_smooth_slab.json new file mode 100644 index 000000000..90380a549 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/andesite_smooth_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/andesite_smooth_slab" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/andesite_smooth_stairs.json b/src/main/resources/assets/mineralogy/items/andesite_smooth_stairs.json new file mode 100644 index 000000000..71da089f8 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/andesite_smooth_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/andesite_smooth_stairs" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/andesite_smooth_wall.json b/src/main/resources/assets/mineralogy/items/andesite_smooth_wall.json new file mode 100644 index 000000000..a2a9bedbf --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/andesite_smooth_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/andesite_smooth_wall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/andesite_stairs.json b/src/main/resources/assets/mineralogy/items/andesite_stairs.json new file mode 100644 index 000000000..a4ffc0e16 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/andesite_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/andesite_stairs" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/andesite_wall.json b/src/main/resources/assets/mineralogy/items/andesite_wall.json new file mode 100644 index 000000000..5a133de97 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/andesite_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/andesite_wall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/basalt.json b/src/main/resources/assets/mineralogy/items/basalt.json new file mode 100644 index 000000000..a8e44524f --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/basalt.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/basalt" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/basalt_brick.json b/src/main/resources/assets/mineralogy/items/basalt_brick.json new file mode 100644 index 000000000..08e35dfb3 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/basalt_brick.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/basalt_brick" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/basalt_brick_furnace.json b/src/main/resources/assets/mineralogy/items/basalt_brick_furnace.json new file mode 100644 index 000000000..d44fbf149 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/basalt_brick_furnace.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/basalt_brick_furnace" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/basalt_brick_slab.json b/src/main/resources/assets/mineralogy/items/basalt_brick_slab.json new file mode 100644 index 000000000..a044667c3 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/basalt_brick_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/basalt_brick_slab" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/basalt_brick_stairs.json b/src/main/resources/assets/mineralogy/items/basalt_brick_stairs.json new file mode 100644 index 000000000..0721d6b90 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/basalt_brick_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/basalt_brick_stairs" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/basalt_brick_wall.json b/src/main/resources/assets/mineralogy/items/basalt_brick_wall.json new file mode 100644 index 000000000..9d533ab74 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/basalt_brick_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/basalt_brick_wall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/basalt_furnace.json b/src/main/resources/assets/mineralogy/items/basalt_furnace.json new file mode 100644 index 000000000..cf4ca2bdd --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/basalt_furnace.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/basalt_furnace" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/basalt_relief_axe.json b/src/main/resources/assets/mineralogy/items/basalt_relief_axe.json new file mode 100644 index 000000000..988900239 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/basalt_relief_axe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/basalt_relief_axe" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/basalt_relief_blank.json b/src/main/resources/assets/mineralogy/items/basalt_relief_blank.json new file mode 100644 index 000000000..6a29cb0ac --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/basalt_relief_blank.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/basalt_relief_blank" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/basalt_relief_cross.json b/src/main/resources/assets/mineralogy/items/basalt_relief_cross.json new file mode 100644 index 000000000..33b6100d4 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/basalt_relief_cross.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/basalt_relief_cross" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/basalt_relief_hammer.json b/src/main/resources/assets/mineralogy/items/basalt_relief_hammer.json new file mode 100644 index 000000000..9023ac1ab --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/basalt_relief_hammer.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/basalt_relief_hammer" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/basalt_relief_hoe.json b/src/main/resources/assets/mineralogy/items/basalt_relief_hoe.json new file mode 100644 index 000000000..2f00d873a --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/basalt_relief_hoe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/basalt_relief_hoe" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/basalt_relief_horizontal.json b/src/main/resources/assets/mineralogy/items/basalt_relief_horizontal.json new file mode 100644 index 000000000..9cb2effc8 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/basalt_relief_horizontal.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/basalt_relief_horizontal" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/basalt_relief_i.json b/src/main/resources/assets/mineralogy/items/basalt_relief_i.json new file mode 100644 index 000000000..95597274a --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/basalt_relief_i.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/basalt_relief_i" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/basalt_relief_left.json b/src/main/resources/assets/mineralogy/items/basalt_relief_left.json new file mode 100644 index 000000000..98c5b0829 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/basalt_relief_left.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/basalt_relief_left" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/basalt_relief_pickaxe.json b/src/main/resources/assets/mineralogy/items/basalt_relief_pickaxe.json new file mode 100644 index 000000000..fd34a6f32 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/basalt_relief_pickaxe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/basalt_relief_pickaxe" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/basalt_relief_plus.json b/src/main/resources/assets/mineralogy/items/basalt_relief_plus.json new file mode 100644 index 000000000..846fdd7cd --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/basalt_relief_plus.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/basalt_relief_plus" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/basalt_relief_right.json b/src/main/resources/assets/mineralogy/items/basalt_relief_right.json new file mode 100644 index 000000000..4e67369dd --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/basalt_relief_right.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/basalt_relief_right" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/basalt_relief_sword.json b/src/main/resources/assets/mineralogy/items/basalt_relief_sword.json new file mode 100644 index 000000000..c6ace96bc --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/basalt_relief_sword.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/basalt_relief_sword" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/basalt_relief_vertical.json b/src/main/resources/assets/mineralogy/items/basalt_relief_vertical.json new file mode 100644 index 000000000..4a38dfd26 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/basalt_relief_vertical.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/basalt_relief_vertical" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/basalt_slab.json b/src/main/resources/assets/mineralogy/items/basalt_slab.json new file mode 100644 index 000000000..aeab51d1f --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/basalt_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/basalt_slab" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/basalt_smooth.json b/src/main/resources/assets/mineralogy/items/basalt_smooth.json new file mode 100644 index 000000000..e30a84b18 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/basalt_smooth.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/basalt_smooth" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/basalt_smooth_brick.json b/src/main/resources/assets/mineralogy/items/basalt_smooth_brick.json new file mode 100644 index 000000000..5d9ac3d7e --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/basalt_smooth_brick.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/basalt_smooth_brick" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/basalt_smooth_brick_furnace.json b/src/main/resources/assets/mineralogy/items/basalt_smooth_brick_furnace.json new file mode 100644 index 000000000..baa85752d --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/basalt_smooth_brick_furnace.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/basalt_smooth_brick_furnace" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/basalt_smooth_brick_slab.json b/src/main/resources/assets/mineralogy/items/basalt_smooth_brick_slab.json new file mode 100644 index 000000000..8ffeeb7b2 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/basalt_smooth_brick_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/basalt_smooth_brick_slab" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/basalt_smooth_brick_stairs.json b/src/main/resources/assets/mineralogy/items/basalt_smooth_brick_stairs.json new file mode 100644 index 000000000..908466851 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/basalt_smooth_brick_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/basalt_smooth_brick_stairs" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/basalt_smooth_brick_wall.json b/src/main/resources/assets/mineralogy/items/basalt_smooth_brick_wall.json new file mode 100644 index 000000000..f2e8e229e --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/basalt_smooth_brick_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/basalt_smooth_brick_wall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/basalt_smooth_furnace.json b/src/main/resources/assets/mineralogy/items/basalt_smooth_furnace.json new file mode 100644 index 000000000..3f93a4e83 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/basalt_smooth_furnace.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/basalt_smooth_furnace" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/basalt_smooth_slab.json b/src/main/resources/assets/mineralogy/items/basalt_smooth_slab.json new file mode 100644 index 000000000..dd8e0607c --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/basalt_smooth_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/basalt_smooth_slab" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/basalt_smooth_stairs.json b/src/main/resources/assets/mineralogy/items/basalt_smooth_stairs.json new file mode 100644 index 000000000..ef69e8e9c --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/basalt_smooth_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/basalt_smooth_stairs" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/basalt_smooth_wall.json b/src/main/resources/assets/mineralogy/items/basalt_smooth_wall.json new file mode 100644 index 000000000..e84184257 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/basalt_smooth_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/basalt_smooth_wall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/basalt_stairs.json b/src/main/resources/assets/mineralogy/items/basalt_stairs.json new file mode 100644 index 000000000..b82114f9f --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/basalt_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/basalt_stairs" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/basalt_wall.json b/src/main/resources/assets/mineralogy/items/basalt_wall.json new file mode 100644 index 000000000..96c863b70 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/basalt_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/basalt_wall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/basaltic_glass.json b/src/main/resources/assets/mineralogy/items/basaltic_glass.json new file mode 100644 index 000000000..b3510605a --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/basaltic_glass.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/basaltic_glass" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/basaltic_glass_brick.json b/src/main/resources/assets/mineralogy/items/basaltic_glass_brick.json new file mode 100644 index 000000000..f0756d890 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/basaltic_glass_brick.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/basaltic_glass_brick" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/basaltic_glass_brick_furnace.json b/src/main/resources/assets/mineralogy/items/basaltic_glass_brick_furnace.json new file mode 100644 index 000000000..2fffa1c1b --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/basaltic_glass_brick_furnace.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/basaltic_glass_brick_furnace" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/basaltic_glass_brick_slab.json b/src/main/resources/assets/mineralogy/items/basaltic_glass_brick_slab.json new file mode 100644 index 000000000..73d0f7800 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/basaltic_glass_brick_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/basaltic_glass_brick_slab" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/basaltic_glass_brick_stairs.json b/src/main/resources/assets/mineralogy/items/basaltic_glass_brick_stairs.json new file mode 100644 index 000000000..989662c48 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/basaltic_glass_brick_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/basaltic_glass_brick_stairs" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/basaltic_glass_brick_wall.json b/src/main/resources/assets/mineralogy/items/basaltic_glass_brick_wall.json new file mode 100644 index 000000000..758c451b2 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/basaltic_glass_brick_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/basaltic_glass_brick_wall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/basaltic_glass_furnace.json b/src/main/resources/assets/mineralogy/items/basaltic_glass_furnace.json new file mode 100644 index 000000000..c88faeaa1 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/basaltic_glass_furnace.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/basaltic_glass_furnace" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/basaltic_glass_relief_axe.json b/src/main/resources/assets/mineralogy/items/basaltic_glass_relief_axe.json new file mode 100644 index 000000000..b6b440d25 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/basaltic_glass_relief_axe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/basaltic_glass_relief_axe" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/basaltic_glass_relief_blank.json b/src/main/resources/assets/mineralogy/items/basaltic_glass_relief_blank.json new file mode 100644 index 000000000..5c9193575 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/basaltic_glass_relief_blank.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/basaltic_glass_relief_blank" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/basaltic_glass_relief_cross.json b/src/main/resources/assets/mineralogy/items/basaltic_glass_relief_cross.json new file mode 100644 index 000000000..6fff64da6 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/basaltic_glass_relief_cross.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/basaltic_glass_relief_cross" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/basaltic_glass_relief_hammer.json b/src/main/resources/assets/mineralogy/items/basaltic_glass_relief_hammer.json new file mode 100644 index 000000000..376e141ec --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/basaltic_glass_relief_hammer.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/basaltic_glass_relief_hammer" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/basaltic_glass_relief_hoe.json b/src/main/resources/assets/mineralogy/items/basaltic_glass_relief_hoe.json new file mode 100644 index 000000000..35d95eebb --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/basaltic_glass_relief_hoe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/basaltic_glass_relief_hoe" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/basaltic_glass_relief_horizontal.json b/src/main/resources/assets/mineralogy/items/basaltic_glass_relief_horizontal.json new file mode 100644 index 000000000..92e2c6ffb --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/basaltic_glass_relief_horizontal.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/basaltic_glass_relief_horizontal" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/basaltic_glass_relief_i.json b/src/main/resources/assets/mineralogy/items/basaltic_glass_relief_i.json new file mode 100644 index 000000000..9da28ebdc --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/basaltic_glass_relief_i.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/basaltic_glass_relief_i" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/basaltic_glass_relief_left.json b/src/main/resources/assets/mineralogy/items/basaltic_glass_relief_left.json new file mode 100644 index 000000000..8983b1b16 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/basaltic_glass_relief_left.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/basaltic_glass_relief_left" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/basaltic_glass_relief_pickaxe.json b/src/main/resources/assets/mineralogy/items/basaltic_glass_relief_pickaxe.json new file mode 100644 index 000000000..bfe064f75 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/basaltic_glass_relief_pickaxe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/basaltic_glass_relief_pickaxe" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/basaltic_glass_relief_plus.json b/src/main/resources/assets/mineralogy/items/basaltic_glass_relief_plus.json new file mode 100644 index 000000000..4dee629ae --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/basaltic_glass_relief_plus.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/basaltic_glass_relief_plus" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/basaltic_glass_relief_right.json b/src/main/resources/assets/mineralogy/items/basaltic_glass_relief_right.json new file mode 100644 index 000000000..66356af17 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/basaltic_glass_relief_right.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/basaltic_glass_relief_right" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/basaltic_glass_relief_sword.json b/src/main/resources/assets/mineralogy/items/basaltic_glass_relief_sword.json new file mode 100644 index 000000000..8401749a6 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/basaltic_glass_relief_sword.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/basaltic_glass_relief_sword" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/basaltic_glass_relief_vertical.json b/src/main/resources/assets/mineralogy/items/basaltic_glass_relief_vertical.json new file mode 100644 index 000000000..e4533a233 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/basaltic_glass_relief_vertical.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/basaltic_glass_relief_vertical" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/basaltic_glass_slab.json b/src/main/resources/assets/mineralogy/items/basaltic_glass_slab.json new file mode 100644 index 000000000..7deab2bc6 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/basaltic_glass_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/basaltic_glass_slab" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/basaltic_glass_smooth.json b/src/main/resources/assets/mineralogy/items/basaltic_glass_smooth.json new file mode 100644 index 000000000..1f5a43d99 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/basaltic_glass_smooth.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/basaltic_glass_smooth" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/basaltic_glass_smooth_brick.json b/src/main/resources/assets/mineralogy/items/basaltic_glass_smooth_brick.json new file mode 100644 index 000000000..60fec2958 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/basaltic_glass_smooth_brick.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/basaltic_glass_smooth_brick" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/basaltic_glass_smooth_brick_furnace.json b/src/main/resources/assets/mineralogy/items/basaltic_glass_smooth_brick_furnace.json new file mode 100644 index 000000000..b087acde3 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/basaltic_glass_smooth_brick_furnace.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/basaltic_glass_smooth_brick_furnace" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/basaltic_glass_smooth_brick_slab.json b/src/main/resources/assets/mineralogy/items/basaltic_glass_smooth_brick_slab.json new file mode 100644 index 000000000..c9c0f14dc --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/basaltic_glass_smooth_brick_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/basaltic_glass_smooth_brick_slab" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/basaltic_glass_smooth_brick_stairs.json b/src/main/resources/assets/mineralogy/items/basaltic_glass_smooth_brick_stairs.json new file mode 100644 index 000000000..9ae203476 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/basaltic_glass_smooth_brick_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/basaltic_glass_smooth_brick_stairs" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/basaltic_glass_smooth_brick_wall.json b/src/main/resources/assets/mineralogy/items/basaltic_glass_smooth_brick_wall.json new file mode 100644 index 000000000..74af2641c --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/basaltic_glass_smooth_brick_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/basaltic_glass_smooth_brick_wall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/basaltic_glass_smooth_furnace.json b/src/main/resources/assets/mineralogy/items/basaltic_glass_smooth_furnace.json new file mode 100644 index 000000000..a90482fd1 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/basaltic_glass_smooth_furnace.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/basaltic_glass_smooth_furnace" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/basaltic_glass_smooth_slab.json b/src/main/resources/assets/mineralogy/items/basaltic_glass_smooth_slab.json new file mode 100644 index 000000000..cd13fe002 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/basaltic_glass_smooth_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/basaltic_glass_smooth_slab" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/basaltic_glass_smooth_stairs.json b/src/main/resources/assets/mineralogy/items/basaltic_glass_smooth_stairs.json new file mode 100644 index 000000000..a7d27591b --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/basaltic_glass_smooth_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/basaltic_glass_smooth_stairs" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/basaltic_glass_smooth_wall.json b/src/main/resources/assets/mineralogy/items/basaltic_glass_smooth_wall.json new file mode 100644 index 000000000..a87af6563 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/basaltic_glass_smooth_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/basaltic_glass_smooth_wall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/basaltic_glass_stairs.json b/src/main/resources/assets/mineralogy/items/basaltic_glass_stairs.json new file mode 100644 index 000000000..47e40ad04 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/basaltic_glass_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/basaltic_glass_stairs" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/basaltic_glass_wall.json b/src/main/resources/assets/mineralogy/items/basaltic_glass_wall.json new file mode 100644 index 000000000..0bb3c8717 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/basaltic_glass_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/basaltic_glass_wall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/chalk.json b/src/main/resources/assets/mineralogy/items/chalk.json new file mode 100644 index 000000000..ccf704163 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/chalk.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/chalk" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/chalk_dust.json b/src/main/resources/assets/mineralogy/items/chalk_dust.json new file mode 100644 index 000000000..763185b17 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/chalk_dust.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/chalk_dust" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/chert.json b/src/main/resources/assets/mineralogy/items/chert.json new file mode 100644 index 000000000..56ba69688 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/chert.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/chert" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/conglomerate.json b/src/main/resources/assets/mineralogy/items/conglomerate.json new file mode 100644 index 000000000..b46b8780a --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/conglomerate.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/conglomerate" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/conglomerate_brick.json b/src/main/resources/assets/mineralogy/items/conglomerate_brick.json new file mode 100644 index 000000000..0858799eb --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/conglomerate_brick.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/conglomerate_brick" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/conglomerate_brick_furnace.json b/src/main/resources/assets/mineralogy/items/conglomerate_brick_furnace.json new file mode 100644 index 000000000..3bb9635fe --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/conglomerate_brick_furnace.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/conglomerate_brick_furnace" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/conglomerate_brick_slab.json b/src/main/resources/assets/mineralogy/items/conglomerate_brick_slab.json new file mode 100644 index 000000000..8ff019221 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/conglomerate_brick_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/conglomerate_brick_slab" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/conglomerate_brick_stairs.json b/src/main/resources/assets/mineralogy/items/conglomerate_brick_stairs.json new file mode 100644 index 000000000..c818dc398 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/conglomerate_brick_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/conglomerate_brick_stairs" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/conglomerate_brick_wall.json b/src/main/resources/assets/mineralogy/items/conglomerate_brick_wall.json new file mode 100644 index 000000000..5afd1f678 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/conglomerate_brick_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/conglomerate_brick_wall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/conglomerate_furnace.json b/src/main/resources/assets/mineralogy/items/conglomerate_furnace.json new file mode 100644 index 000000000..00c75e1f7 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/conglomerate_furnace.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/conglomerate_furnace" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/conglomerate_relief_axe.json b/src/main/resources/assets/mineralogy/items/conglomerate_relief_axe.json new file mode 100644 index 000000000..bafd31514 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/conglomerate_relief_axe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/conglomerate_relief_axe" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/conglomerate_relief_blank.json b/src/main/resources/assets/mineralogy/items/conglomerate_relief_blank.json new file mode 100644 index 000000000..d9d1f9314 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/conglomerate_relief_blank.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/conglomerate_relief_blank" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/conglomerate_relief_cross.json b/src/main/resources/assets/mineralogy/items/conglomerate_relief_cross.json new file mode 100644 index 000000000..47a0c83b3 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/conglomerate_relief_cross.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/conglomerate_relief_cross" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/conglomerate_relief_hammer.json b/src/main/resources/assets/mineralogy/items/conglomerate_relief_hammer.json new file mode 100644 index 000000000..49fb7ac47 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/conglomerate_relief_hammer.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/conglomerate_relief_hammer" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/conglomerate_relief_hoe.json b/src/main/resources/assets/mineralogy/items/conglomerate_relief_hoe.json new file mode 100644 index 000000000..0adb03a19 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/conglomerate_relief_hoe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/conglomerate_relief_hoe" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/conglomerate_relief_horizontal.json b/src/main/resources/assets/mineralogy/items/conglomerate_relief_horizontal.json new file mode 100644 index 000000000..35284de57 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/conglomerate_relief_horizontal.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/conglomerate_relief_horizontal" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/conglomerate_relief_i.json b/src/main/resources/assets/mineralogy/items/conglomerate_relief_i.json new file mode 100644 index 000000000..4fe951faa --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/conglomerate_relief_i.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/conglomerate_relief_i" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/conglomerate_relief_left.json b/src/main/resources/assets/mineralogy/items/conglomerate_relief_left.json new file mode 100644 index 000000000..fe93c862d --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/conglomerate_relief_left.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/conglomerate_relief_left" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/conglomerate_relief_pickaxe.json b/src/main/resources/assets/mineralogy/items/conglomerate_relief_pickaxe.json new file mode 100644 index 000000000..3632d877c --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/conglomerate_relief_pickaxe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/conglomerate_relief_pickaxe" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/conglomerate_relief_plus.json b/src/main/resources/assets/mineralogy/items/conglomerate_relief_plus.json new file mode 100644 index 000000000..bb17f9b2c --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/conglomerate_relief_plus.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/conglomerate_relief_plus" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/conglomerate_relief_right.json b/src/main/resources/assets/mineralogy/items/conglomerate_relief_right.json new file mode 100644 index 000000000..ff056ffa5 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/conglomerate_relief_right.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/conglomerate_relief_right" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/conglomerate_relief_sword.json b/src/main/resources/assets/mineralogy/items/conglomerate_relief_sword.json new file mode 100644 index 000000000..ec44a605a --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/conglomerate_relief_sword.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/conglomerate_relief_sword" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/conglomerate_relief_vertical.json b/src/main/resources/assets/mineralogy/items/conglomerate_relief_vertical.json new file mode 100644 index 000000000..01262f338 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/conglomerate_relief_vertical.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/conglomerate_relief_vertical" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/conglomerate_slab.json b/src/main/resources/assets/mineralogy/items/conglomerate_slab.json new file mode 100644 index 000000000..eb472e2f7 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/conglomerate_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/conglomerate_slab" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/conglomerate_smooth.json b/src/main/resources/assets/mineralogy/items/conglomerate_smooth.json new file mode 100644 index 000000000..d9e5c0cb2 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/conglomerate_smooth.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/conglomerate_smooth" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/conglomerate_smooth_brick.json b/src/main/resources/assets/mineralogy/items/conglomerate_smooth_brick.json new file mode 100644 index 000000000..1f7f303db --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/conglomerate_smooth_brick.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/conglomerate_smooth_brick" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/conglomerate_smooth_brick_furnace.json b/src/main/resources/assets/mineralogy/items/conglomerate_smooth_brick_furnace.json new file mode 100644 index 000000000..bb1a758ce --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/conglomerate_smooth_brick_furnace.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/conglomerate_smooth_brick_furnace" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/conglomerate_smooth_brick_slab.json b/src/main/resources/assets/mineralogy/items/conglomerate_smooth_brick_slab.json new file mode 100644 index 000000000..8827d9a5f --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/conglomerate_smooth_brick_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/conglomerate_smooth_brick_slab" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/conglomerate_smooth_brick_stairs.json b/src/main/resources/assets/mineralogy/items/conglomerate_smooth_brick_stairs.json new file mode 100644 index 000000000..a5ae059b9 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/conglomerate_smooth_brick_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/conglomerate_smooth_brick_stairs" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/conglomerate_smooth_brick_wall.json b/src/main/resources/assets/mineralogy/items/conglomerate_smooth_brick_wall.json new file mode 100644 index 000000000..3ee2b5096 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/conglomerate_smooth_brick_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/conglomerate_smooth_brick_wall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/conglomerate_smooth_furnace.json b/src/main/resources/assets/mineralogy/items/conglomerate_smooth_furnace.json new file mode 100644 index 000000000..1964c4752 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/conglomerate_smooth_furnace.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/conglomerate_smooth_furnace" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/conglomerate_smooth_slab.json b/src/main/resources/assets/mineralogy/items/conglomerate_smooth_slab.json new file mode 100644 index 000000000..3891dc82b --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/conglomerate_smooth_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/conglomerate_smooth_slab" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/conglomerate_smooth_stairs.json b/src/main/resources/assets/mineralogy/items/conglomerate_smooth_stairs.json new file mode 100644 index 000000000..e899a18e4 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/conglomerate_smooth_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/conglomerate_smooth_stairs" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/conglomerate_smooth_wall.json b/src/main/resources/assets/mineralogy/items/conglomerate_smooth_wall.json new file mode 100644 index 000000000..2f77e4e5b --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/conglomerate_smooth_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/conglomerate_smooth_wall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/conglomerate_stairs.json b/src/main/resources/assets/mineralogy/items/conglomerate_stairs.json new file mode 100644 index 000000000..b9501c545 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/conglomerate_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/conglomerate_stairs" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/conglomerate_wall.json b/src/main/resources/assets/mineralogy/items/conglomerate_wall.json new file mode 100644 index 000000000..a252f769f --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/conglomerate_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/conglomerate_wall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/crude_oil_bucket.json b/src/main/resources/assets/mineralogy/items/crude_oil_bucket.json new file mode 100644 index 000000000..0ab86c393 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/crude_oil_bucket.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/crude_oil_bucket" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/diabase.json b/src/main/resources/assets/mineralogy/items/diabase.json new file mode 100644 index 000000000..d409c851e --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/diabase.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/diabase" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/diabase_brick.json b/src/main/resources/assets/mineralogy/items/diabase_brick.json new file mode 100644 index 000000000..073c507ff --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/diabase_brick.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/diabase_brick" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/diabase_brick_furnace.json b/src/main/resources/assets/mineralogy/items/diabase_brick_furnace.json new file mode 100644 index 000000000..c137da8dc --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/diabase_brick_furnace.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/diabase_brick_furnace" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/diabase_brick_slab.json b/src/main/resources/assets/mineralogy/items/diabase_brick_slab.json new file mode 100644 index 000000000..fdb8ee4e7 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/diabase_brick_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/diabase_brick_slab" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/diabase_brick_stairs.json b/src/main/resources/assets/mineralogy/items/diabase_brick_stairs.json new file mode 100644 index 000000000..b952dcba9 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/diabase_brick_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/diabase_brick_stairs" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/diabase_brick_wall.json b/src/main/resources/assets/mineralogy/items/diabase_brick_wall.json new file mode 100644 index 000000000..6ffe75a23 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/diabase_brick_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/diabase_brick_wall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/diabase_furnace.json b/src/main/resources/assets/mineralogy/items/diabase_furnace.json new file mode 100644 index 000000000..8b0395492 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/diabase_furnace.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/diabase_furnace" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/diabase_relief_axe.json b/src/main/resources/assets/mineralogy/items/diabase_relief_axe.json new file mode 100644 index 000000000..2065e24d9 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/diabase_relief_axe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/diabase_relief_axe" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/diabase_relief_blank.json b/src/main/resources/assets/mineralogy/items/diabase_relief_blank.json new file mode 100644 index 000000000..421c17a6c --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/diabase_relief_blank.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/diabase_relief_blank" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/diabase_relief_cross.json b/src/main/resources/assets/mineralogy/items/diabase_relief_cross.json new file mode 100644 index 000000000..2214d4cc4 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/diabase_relief_cross.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/diabase_relief_cross" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/diabase_relief_hammer.json b/src/main/resources/assets/mineralogy/items/diabase_relief_hammer.json new file mode 100644 index 000000000..62884b980 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/diabase_relief_hammer.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/diabase_relief_hammer" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/diabase_relief_hoe.json b/src/main/resources/assets/mineralogy/items/diabase_relief_hoe.json new file mode 100644 index 000000000..f35796ce0 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/diabase_relief_hoe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/diabase_relief_hoe" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/diabase_relief_horizontal.json b/src/main/resources/assets/mineralogy/items/diabase_relief_horizontal.json new file mode 100644 index 000000000..957a2fc65 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/diabase_relief_horizontal.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/diabase_relief_horizontal" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/diabase_relief_i.json b/src/main/resources/assets/mineralogy/items/diabase_relief_i.json new file mode 100644 index 000000000..ab54c59db --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/diabase_relief_i.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/diabase_relief_i" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/diabase_relief_left.json b/src/main/resources/assets/mineralogy/items/diabase_relief_left.json new file mode 100644 index 000000000..a2f97e9b3 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/diabase_relief_left.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/diabase_relief_left" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/diabase_relief_pickaxe.json b/src/main/resources/assets/mineralogy/items/diabase_relief_pickaxe.json new file mode 100644 index 000000000..97677e3ff --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/diabase_relief_pickaxe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/diabase_relief_pickaxe" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/diabase_relief_plus.json b/src/main/resources/assets/mineralogy/items/diabase_relief_plus.json new file mode 100644 index 000000000..48caa963b --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/diabase_relief_plus.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/diabase_relief_plus" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/diabase_relief_right.json b/src/main/resources/assets/mineralogy/items/diabase_relief_right.json new file mode 100644 index 000000000..74f2e42e2 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/diabase_relief_right.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/diabase_relief_right" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/diabase_relief_sword.json b/src/main/resources/assets/mineralogy/items/diabase_relief_sword.json new file mode 100644 index 000000000..8ec7f14a0 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/diabase_relief_sword.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/diabase_relief_sword" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/diabase_relief_vertical.json b/src/main/resources/assets/mineralogy/items/diabase_relief_vertical.json new file mode 100644 index 000000000..9e335962e --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/diabase_relief_vertical.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/diabase_relief_vertical" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/diabase_slab.json b/src/main/resources/assets/mineralogy/items/diabase_slab.json new file mode 100644 index 000000000..9cf046fe6 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/diabase_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/diabase_slab" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/diabase_smooth.json b/src/main/resources/assets/mineralogy/items/diabase_smooth.json new file mode 100644 index 000000000..4f2ae1f60 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/diabase_smooth.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/diabase_smooth" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/diabase_smooth_brick.json b/src/main/resources/assets/mineralogy/items/diabase_smooth_brick.json new file mode 100644 index 000000000..c1b6d5f1d --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/diabase_smooth_brick.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/diabase_smooth_brick" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/diabase_smooth_brick_furnace.json b/src/main/resources/assets/mineralogy/items/diabase_smooth_brick_furnace.json new file mode 100644 index 000000000..5266e1aa1 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/diabase_smooth_brick_furnace.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/diabase_smooth_brick_furnace" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/diabase_smooth_brick_slab.json b/src/main/resources/assets/mineralogy/items/diabase_smooth_brick_slab.json new file mode 100644 index 000000000..9c5df5718 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/diabase_smooth_brick_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/diabase_smooth_brick_slab" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/diabase_smooth_brick_stairs.json b/src/main/resources/assets/mineralogy/items/diabase_smooth_brick_stairs.json new file mode 100644 index 000000000..1b1dc4a71 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/diabase_smooth_brick_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/diabase_smooth_brick_stairs" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/diabase_smooth_brick_wall.json b/src/main/resources/assets/mineralogy/items/diabase_smooth_brick_wall.json new file mode 100644 index 000000000..9c3d94901 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/diabase_smooth_brick_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/diabase_smooth_brick_wall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/diabase_smooth_furnace.json b/src/main/resources/assets/mineralogy/items/diabase_smooth_furnace.json new file mode 100644 index 000000000..f85582197 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/diabase_smooth_furnace.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/diabase_smooth_furnace" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/diabase_smooth_slab.json b/src/main/resources/assets/mineralogy/items/diabase_smooth_slab.json new file mode 100644 index 000000000..c00dcca31 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/diabase_smooth_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/diabase_smooth_slab" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/diabase_smooth_stairs.json b/src/main/resources/assets/mineralogy/items/diabase_smooth_stairs.json new file mode 100644 index 000000000..73e6b23cf --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/diabase_smooth_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/diabase_smooth_stairs" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/diabase_smooth_wall.json b/src/main/resources/assets/mineralogy/items/diabase_smooth_wall.json new file mode 100644 index 000000000..ac120656d --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/diabase_smooth_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/diabase_smooth_wall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/diabase_stairs.json b/src/main/resources/assets/mineralogy/items/diabase_stairs.json new file mode 100644 index 000000000..c024989b8 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/diabase_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/diabase_stairs" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/diabase_wall.json b/src/main/resources/assets/mineralogy/items/diabase_wall.json new file mode 100644 index 000000000..5bfef010d --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/diabase_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/diabase_wall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/diorite.json b/src/main/resources/assets/mineralogy/items/diorite.json new file mode 100644 index 000000000..e13384bc0 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/diorite.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/diorite" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/diorite_brick.json b/src/main/resources/assets/mineralogy/items/diorite_brick.json new file mode 100644 index 000000000..61a73f62e --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/diorite_brick.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/diorite_brick" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/diorite_brick_furnace.json b/src/main/resources/assets/mineralogy/items/diorite_brick_furnace.json new file mode 100644 index 000000000..506537ed0 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/diorite_brick_furnace.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/diorite_brick_furnace" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/diorite_brick_slab.json b/src/main/resources/assets/mineralogy/items/diorite_brick_slab.json new file mode 100644 index 000000000..58e9dc035 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/diorite_brick_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/diorite_brick_slab" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/diorite_brick_stairs.json b/src/main/resources/assets/mineralogy/items/diorite_brick_stairs.json new file mode 100644 index 000000000..d93a3a5f6 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/diorite_brick_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/diorite_brick_stairs" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/diorite_brick_wall.json b/src/main/resources/assets/mineralogy/items/diorite_brick_wall.json new file mode 100644 index 000000000..f483bcdaf --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/diorite_brick_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/diorite_brick_wall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/diorite_furnace.json b/src/main/resources/assets/mineralogy/items/diorite_furnace.json new file mode 100644 index 000000000..255bb82f9 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/diorite_furnace.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/diorite_furnace" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/diorite_relief_axe.json b/src/main/resources/assets/mineralogy/items/diorite_relief_axe.json new file mode 100644 index 000000000..1b84ed205 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/diorite_relief_axe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/diorite_relief_axe" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/diorite_relief_blank.json b/src/main/resources/assets/mineralogy/items/diorite_relief_blank.json new file mode 100644 index 000000000..4c18e6566 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/diorite_relief_blank.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/diorite_relief_blank" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/diorite_relief_cross.json b/src/main/resources/assets/mineralogy/items/diorite_relief_cross.json new file mode 100644 index 000000000..7ab63d8ca --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/diorite_relief_cross.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/diorite_relief_cross" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/diorite_relief_hammer.json b/src/main/resources/assets/mineralogy/items/diorite_relief_hammer.json new file mode 100644 index 000000000..c62035130 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/diorite_relief_hammer.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/diorite_relief_hammer" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/diorite_relief_hoe.json b/src/main/resources/assets/mineralogy/items/diorite_relief_hoe.json new file mode 100644 index 000000000..3a6e46521 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/diorite_relief_hoe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/diorite_relief_hoe" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/diorite_relief_horizontal.json b/src/main/resources/assets/mineralogy/items/diorite_relief_horizontal.json new file mode 100644 index 000000000..21cb254ef --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/diorite_relief_horizontal.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/diorite_relief_horizontal" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/diorite_relief_i.json b/src/main/resources/assets/mineralogy/items/diorite_relief_i.json new file mode 100644 index 000000000..03c78cb33 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/diorite_relief_i.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/diorite_relief_i" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/diorite_relief_left.json b/src/main/resources/assets/mineralogy/items/diorite_relief_left.json new file mode 100644 index 000000000..9e0aa040b --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/diorite_relief_left.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/diorite_relief_left" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/diorite_relief_pickaxe.json b/src/main/resources/assets/mineralogy/items/diorite_relief_pickaxe.json new file mode 100644 index 000000000..8f9ae0ae2 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/diorite_relief_pickaxe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/diorite_relief_pickaxe" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/diorite_relief_plus.json b/src/main/resources/assets/mineralogy/items/diorite_relief_plus.json new file mode 100644 index 000000000..88de96021 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/diorite_relief_plus.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/diorite_relief_plus" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/diorite_relief_right.json b/src/main/resources/assets/mineralogy/items/diorite_relief_right.json new file mode 100644 index 000000000..e1e903a50 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/diorite_relief_right.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/diorite_relief_right" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/diorite_relief_sword.json b/src/main/resources/assets/mineralogy/items/diorite_relief_sword.json new file mode 100644 index 000000000..49c0ab028 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/diorite_relief_sword.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/diorite_relief_sword" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/diorite_relief_vertical.json b/src/main/resources/assets/mineralogy/items/diorite_relief_vertical.json new file mode 100644 index 000000000..2c64d2388 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/diorite_relief_vertical.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/diorite_relief_vertical" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/diorite_slab.json b/src/main/resources/assets/mineralogy/items/diorite_slab.json new file mode 100644 index 000000000..8016c46aa --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/diorite_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/diorite_slab" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/diorite_smooth.json b/src/main/resources/assets/mineralogy/items/diorite_smooth.json new file mode 100644 index 000000000..7237b7ac9 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/diorite_smooth.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/diorite_smooth" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/diorite_smooth_brick.json b/src/main/resources/assets/mineralogy/items/diorite_smooth_brick.json new file mode 100644 index 000000000..3a41a7e3f --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/diorite_smooth_brick.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/diorite_smooth_brick" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/diorite_smooth_brick_furnace.json b/src/main/resources/assets/mineralogy/items/diorite_smooth_brick_furnace.json new file mode 100644 index 000000000..2c1eb4304 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/diorite_smooth_brick_furnace.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/diorite_smooth_brick_furnace" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/diorite_smooth_brick_slab.json b/src/main/resources/assets/mineralogy/items/diorite_smooth_brick_slab.json new file mode 100644 index 000000000..0872338dd --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/diorite_smooth_brick_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/diorite_smooth_brick_slab" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/diorite_smooth_brick_stairs.json b/src/main/resources/assets/mineralogy/items/diorite_smooth_brick_stairs.json new file mode 100644 index 000000000..6e599efc3 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/diorite_smooth_brick_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/diorite_smooth_brick_stairs" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/diorite_smooth_brick_wall.json b/src/main/resources/assets/mineralogy/items/diorite_smooth_brick_wall.json new file mode 100644 index 000000000..f4ca63057 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/diorite_smooth_brick_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/diorite_smooth_brick_wall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/diorite_smooth_furnace.json b/src/main/resources/assets/mineralogy/items/diorite_smooth_furnace.json new file mode 100644 index 000000000..8c81e8fb8 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/diorite_smooth_furnace.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/diorite_smooth_furnace" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/diorite_smooth_slab.json b/src/main/resources/assets/mineralogy/items/diorite_smooth_slab.json new file mode 100644 index 000000000..0454198e1 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/diorite_smooth_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/diorite_smooth_slab" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/diorite_smooth_stairs.json b/src/main/resources/assets/mineralogy/items/diorite_smooth_stairs.json new file mode 100644 index 000000000..f3266f5c6 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/diorite_smooth_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/diorite_smooth_stairs" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/diorite_smooth_wall.json b/src/main/resources/assets/mineralogy/items/diorite_smooth_wall.json new file mode 100644 index 000000000..7022a8cdc --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/diorite_smooth_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/diorite_smooth_wall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/diorite_stairs.json b/src/main/resources/assets/mineralogy/items/diorite_stairs.json new file mode 100644 index 000000000..896cc3668 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/diorite_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/diorite_stairs" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/diorite_wall.json b/src/main/resources/assets/mineralogy/items/diorite_wall.json new file mode 100644 index 000000000..84cdfcfb6 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/diorite_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/diorite_wall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/dolomite.json b/src/main/resources/assets/mineralogy/items/dolomite.json new file mode 100644 index 000000000..61eb77a26 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/dolomite.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/dolomite" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/dolomite_brick.json b/src/main/resources/assets/mineralogy/items/dolomite_brick.json new file mode 100644 index 000000000..8f8efde37 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/dolomite_brick.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/dolomite_brick" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/dolomite_brick_furnace.json b/src/main/resources/assets/mineralogy/items/dolomite_brick_furnace.json new file mode 100644 index 000000000..9376336df --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/dolomite_brick_furnace.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/dolomite_brick_furnace" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/dolomite_brick_slab.json b/src/main/resources/assets/mineralogy/items/dolomite_brick_slab.json new file mode 100644 index 000000000..eedc1da9d --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/dolomite_brick_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/dolomite_brick_slab" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/dolomite_brick_stairs.json b/src/main/resources/assets/mineralogy/items/dolomite_brick_stairs.json new file mode 100644 index 000000000..818d7a2b4 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/dolomite_brick_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/dolomite_brick_stairs" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/dolomite_brick_wall.json b/src/main/resources/assets/mineralogy/items/dolomite_brick_wall.json new file mode 100644 index 000000000..1034f32ee --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/dolomite_brick_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/dolomite_brick_wall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/dolomite_furnace.json b/src/main/resources/assets/mineralogy/items/dolomite_furnace.json new file mode 100644 index 000000000..e5bd490b3 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/dolomite_furnace.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/dolomite_furnace" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/dolomite_relief_axe.json b/src/main/resources/assets/mineralogy/items/dolomite_relief_axe.json new file mode 100644 index 000000000..ee3653f8a --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/dolomite_relief_axe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/dolomite_relief_axe" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/dolomite_relief_blank.json b/src/main/resources/assets/mineralogy/items/dolomite_relief_blank.json new file mode 100644 index 000000000..eea5b7146 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/dolomite_relief_blank.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/dolomite_relief_blank" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/dolomite_relief_cross.json b/src/main/resources/assets/mineralogy/items/dolomite_relief_cross.json new file mode 100644 index 000000000..834affb65 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/dolomite_relief_cross.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/dolomite_relief_cross" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/dolomite_relief_hammer.json b/src/main/resources/assets/mineralogy/items/dolomite_relief_hammer.json new file mode 100644 index 000000000..709bcc7c8 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/dolomite_relief_hammer.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/dolomite_relief_hammer" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/dolomite_relief_hoe.json b/src/main/resources/assets/mineralogy/items/dolomite_relief_hoe.json new file mode 100644 index 000000000..ffaab5d1f --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/dolomite_relief_hoe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/dolomite_relief_hoe" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/dolomite_relief_horizontal.json b/src/main/resources/assets/mineralogy/items/dolomite_relief_horizontal.json new file mode 100644 index 000000000..058636bef --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/dolomite_relief_horizontal.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/dolomite_relief_horizontal" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/dolomite_relief_i.json b/src/main/resources/assets/mineralogy/items/dolomite_relief_i.json new file mode 100644 index 000000000..b2334c6f3 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/dolomite_relief_i.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/dolomite_relief_i" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/dolomite_relief_left.json b/src/main/resources/assets/mineralogy/items/dolomite_relief_left.json new file mode 100644 index 000000000..cbef7d3dc --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/dolomite_relief_left.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/dolomite_relief_left" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/dolomite_relief_pickaxe.json b/src/main/resources/assets/mineralogy/items/dolomite_relief_pickaxe.json new file mode 100644 index 000000000..3cac9baa0 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/dolomite_relief_pickaxe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/dolomite_relief_pickaxe" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/dolomite_relief_plus.json b/src/main/resources/assets/mineralogy/items/dolomite_relief_plus.json new file mode 100644 index 000000000..bb4a2e01c --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/dolomite_relief_plus.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/dolomite_relief_plus" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/dolomite_relief_right.json b/src/main/resources/assets/mineralogy/items/dolomite_relief_right.json new file mode 100644 index 000000000..89bca09fa --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/dolomite_relief_right.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/dolomite_relief_right" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/dolomite_relief_sword.json b/src/main/resources/assets/mineralogy/items/dolomite_relief_sword.json new file mode 100644 index 000000000..f820410d7 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/dolomite_relief_sword.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/dolomite_relief_sword" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/dolomite_relief_vertical.json b/src/main/resources/assets/mineralogy/items/dolomite_relief_vertical.json new file mode 100644 index 000000000..5d0293bc9 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/dolomite_relief_vertical.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/dolomite_relief_vertical" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/dolomite_slab.json b/src/main/resources/assets/mineralogy/items/dolomite_slab.json new file mode 100644 index 000000000..86cf02ef5 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/dolomite_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/dolomite_slab" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/dolomite_smooth.json b/src/main/resources/assets/mineralogy/items/dolomite_smooth.json new file mode 100644 index 000000000..25b750abd --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/dolomite_smooth.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/dolomite_smooth" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/dolomite_smooth_brick.json b/src/main/resources/assets/mineralogy/items/dolomite_smooth_brick.json new file mode 100644 index 000000000..96ad31ef9 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/dolomite_smooth_brick.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/dolomite_smooth_brick" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/dolomite_smooth_brick_furnace.json b/src/main/resources/assets/mineralogy/items/dolomite_smooth_brick_furnace.json new file mode 100644 index 000000000..ba8b27415 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/dolomite_smooth_brick_furnace.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/dolomite_smooth_brick_furnace" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/dolomite_smooth_brick_slab.json b/src/main/resources/assets/mineralogy/items/dolomite_smooth_brick_slab.json new file mode 100644 index 000000000..d8944c577 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/dolomite_smooth_brick_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/dolomite_smooth_brick_slab" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/dolomite_smooth_brick_stairs.json b/src/main/resources/assets/mineralogy/items/dolomite_smooth_brick_stairs.json new file mode 100644 index 000000000..5e7042316 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/dolomite_smooth_brick_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/dolomite_smooth_brick_stairs" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/dolomite_smooth_brick_wall.json b/src/main/resources/assets/mineralogy/items/dolomite_smooth_brick_wall.json new file mode 100644 index 000000000..a03e8b25c --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/dolomite_smooth_brick_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/dolomite_smooth_brick_wall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/dolomite_smooth_furnace.json b/src/main/resources/assets/mineralogy/items/dolomite_smooth_furnace.json new file mode 100644 index 000000000..33e93f295 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/dolomite_smooth_furnace.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/dolomite_smooth_furnace" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/dolomite_smooth_slab.json b/src/main/resources/assets/mineralogy/items/dolomite_smooth_slab.json new file mode 100644 index 000000000..ea4913dbc --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/dolomite_smooth_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/dolomite_smooth_slab" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/dolomite_smooth_stairs.json b/src/main/resources/assets/mineralogy/items/dolomite_smooth_stairs.json new file mode 100644 index 000000000..adfaa9ccf --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/dolomite_smooth_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/dolomite_smooth_stairs" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/dolomite_smooth_wall.json b/src/main/resources/assets/mineralogy/items/dolomite_smooth_wall.json new file mode 100644 index 000000000..503c547f2 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/dolomite_smooth_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/dolomite_smooth_wall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/dolomite_stairs.json b/src/main/resources/assets/mineralogy/items/dolomite_stairs.json new file mode 100644 index 000000000..be65c9e7b --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/dolomite_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/dolomite_stairs" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/dolomite_wall.json b/src/main/resources/assets/mineralogy/items/dolomite_wall.json new file mode 100644 index 000000000..80b4c32b5 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/dolomite_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/dolomite_wall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/drywall_black.json b/src/main/resources/assets/mineralogy/items/drywall_black.json new file mode 100644 index 000000000..700f8d858 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/drywall_black.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/drywall_black" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/drywall_blue.json b/src/main/resources/assets/mineralogy/items/drywall_blue.json new file mode 100644 index 000000000..bcacc739d --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/drywall_blue.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/drywall_blue" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/drywall_brown.json b/src/main/resources/assets/mineralogy/items/drywall_brown.json new file mode 100644 index 000000000..93f2a9701 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/drywall_brown.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/drywall_brown" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/drywall_cyan.json b/src/main/resources/assets/mineralogy/items/drywall_cyan.json new file mode 100644 index 000000000..089cf407d --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/drywall_cyan.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/drywall_cyan" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/drywall_gray.json b/src/main/resources/assets/mineralogy/items/drywall_gray.json new file mode 100644 index 000000000..982267b53 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/drywall_gray.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/drywall_gray" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/drywall_green.json b/src/main/resources/assets/mineralogy/items/drywall_green.json new file mode 100644 index 000000000..619b39013 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/drywall_green.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/drywall_green" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/drywall_light_blue.json b/src/main/resources/assets/mineralogy/items/drywall_light_blue.json new file mode 100644 index 000000000..5de2b842d --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/drywall_light_blue.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/drywall_light_blue" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/drywall_lime.json b/src/main/resources/assets/mineralogy/items/drywall_lime.json new file mode 100644 index 000000000..6be6a9852 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/drywall_lime.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/drywall_lime" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/drywall_magenta.json b/src/main/resources/assets/mineralogy/items/drywall_magenta.json new file mode 100644 index 000000000..eac525b0d --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/drywall_magenta.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/drywall_magenta" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/drywall_orange.json b/src/main/resources/assets/mineralogy/items/drywall_orange.json new file mode 100644 index 000000000..b30eeb91c --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/drywall_orange.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/drywall_orange" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/drywall_pink.json b/src/main/resources/assets/mineralogy/items/drywall_pink.json new file mode 100644 index 000000000..50fedd016 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/drywall_pink.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/drywall_pink" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/drywall_purple.json b/src/main/resources/assets/mineralogy/items/drywall_purple.json new file mode 100644 index 000000000..e23cfffd6 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/drywall_purple.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/drywall_purple" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/drywall_red.json b/src/main/resources/assets/mineralogy/items/drywall_red.json new file mode 100644 index 000000000..e11d9ad6f --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/drywall_red.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/drywall_red" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/drywall_silver.json b/src/main/resources/assets/mineralogy/items/drywall_silver.json new file mode 100644 index 000000000..7ce822540 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/drywall_silver.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/drywall_silver" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/drywall_white.json b/src/main/resources/assets/mineralogy/items/drywall_white.json new file mode 100644 index 000000000..e9068cc78 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/drywall_white.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/drywall_white" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/drywall_yellow.json b/src/main/resources/assets/mineralogy/items/drywall_yellow.json new file mode 100644 index 000000000..b31b850bd --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/drywall_yellow.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/drywall_yellow" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/gabbro.json b/src/main/resources/assets/mineralogy/items/gabbro.json new file mode 100644 index 000000000..4f05dad49 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/gabbro.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/gabbro" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/gabbro_brick.json b/src/main/resources/assets/mineralogy/items/gabbro_brick.json new file mode 100644 index 000000000..baeff1394 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/gabbro_brick.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/gabbro_brick" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/gabbro_brick_furnace.json b/src/main/resources/assets/mineralogy/items/gabbro_brick_furnace.json new file mode 100644 index 000000000..7031a232d --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/gabbro_brick_furnace.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/gabbro_brick_furnace" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/gabbro_brick_slab.json b/src/main/resources/assets/mineralogy/items/gabbro_brick_slab.json new file mode 100644 index 000000000..d15e00fc9 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/gabbro_brick_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/gabbro_brick_slab" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/gabbro_brick_stairs.json b/src/main/resources/assets/mineralogy/items/gabbro_brick_stairs.json new file mode 100644 index 000000000..dd196b528 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/gabbro_brick_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/gabbro_brick_stairs" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/gabbro_brick_wall.json b/src/main/resources/assets/mineralogy/items/gabbro_brick_wall.json new file mode 100644 index 000000000..d1b7967b2 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/gabbro_brick_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/gabbro_brick_wall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/gabbro_furnace.json b/src/main/resources/assets/mineralogy/items/gabbro_furnace.json new file mode 100644 index 000000000..d784a4665 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/gabbro_furnace.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/gabbro_furnace" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/gabbro_relief_axe.json b/src/main/resources/assets/mineralogy/items/gabbro_relief_axe.json new file mode 100644 index 000000000..16677e37c --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/gabbro_relief_axe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/gabbro_relief_axe" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/gabbro_relief_blank.json b/src/main/resources/assets/mineralogy/items/gabbro_relief_blank.json new file mode 100644 index 000000000..4a68e3388 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/gabbro_relief_blank.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/gabbro_relief_blank" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/gabbro_relief_cross.json b/src/main/resources/assets/mineralogy/items/gabbro_relief_cross.json new file mode 100644 index 000000000..a220ed61f --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/gabbro_relief_cross.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/gabbro_relief_cross" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/gabbro_relief_hammer.json b/src/main/resources/assets/mineralogy/items/gabbro_relief_hammer.json new file mode 100644 index 000000000..32fd77ac5 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/gabbro_relief_hammer.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/gabbro_relief_hammer" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/gabbro_relief_hoe.json b/src/main/resources/assets/mineralogy/items/gabbro_relief_hoe.json new file mode 100644 index 000000000..e97c5ace7 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/gabbro_relief_hoe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/gabbro_relief_hoe" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/gabbro_relief_horizontal.json b/src/main/resources/assets/mineralogy/items/gabbro_relief_horizontal.json new file mode 100644 index 000000000..a149f68ae --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/gabbro_relief_horizontal.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/gabbro_relief_horizontal" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/gabbro_relief_i.json b/src/main/resources/assets/mineralogy/items/gabbro_relief_i.json new file mode 100644 index 000000000..9d053dc88 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/gabbro_relief_i.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/gabbro_relief_i" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/gabbro_relief_left.json b/src/main/resources/assets/mineralogy/items/gabbro_relief_left.json new file mode 100644 index 000000000..279194159 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/gabbro_relief_left.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/gabbro_relief_left" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/gabbro_relief_pickaxe.json b/src/main/resources/assets/mineralogy/items/gabbro_relief_pickaxe.json new file mode 100644 index 000000000..1b9ab25e9 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/gabbro_relief_pickaxe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/gabbro_relief_pickaxe" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/gabbro_relief_plus.json b/src/main/resources/assets/mineralogy/items/gabbro_relief_plus.json new file mode 100644 index 000000000..116ae77d3 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/gabbro_relief_plus.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/gabbro_relief_plus" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/gabbro_relief_right.json b/src/main/resources/assets/mineralogy/items/gabbro_relief_right.json new file mode 100644 index 000000000..bd0a39bf8 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/gabbro_relief_right.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/gabbro_relief_right" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/gabbro_relief_sword.json b/src/main/resources/assets/mineralogy/items/gabbro_relief_sword.json new file mode 100644 index 000000000..63a724cea --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/gabbro_relief_sword.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/gabbro_relief_sword" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/gabbro_relief_vertical.json b/src/main/resources/assets/mineralogy/items/gabbro_relief_vertical.json new file mode 100644 index 000000000..59adee88d --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/gabbro_relief_vertical.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/gabbro_relief_vertical" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/gabbro_slab.json b/src/main/resources/assets/mineralogy/items/gabbro_slab.json new file mode 100644 index 000000000..70eb69d18 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/gabbro_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/gabbro_slab" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/gabbro_smooth.json b/src/main/resources/assets/mineralogy/items/gabbro_smooth.json new file mode 100644 index 000000000..6761295c2 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/gabbro_smooth.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/gabbro_smooth" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/gabbro_smooth_brick.json b/src/main/resources/assets/mineralogy/items/gabbro_smooth_brick.json new file mode 100644 index 000000000..f76f2a1ca --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/gabbro_smooth_brick.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/gabbro_smooth_brick" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/gabbro_smooth_brick_furnace.json b/src/main/resources/assets/mineralogy/items/gabbro_smooth_brick_furnace.json new file mode 100644 index 000000000..f03481fd3 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/gabbro_smooth_brick_furnace.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/gabbro_smooth_brick_furnace" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/gabbro_smooth_brick_slab.json b/src/main/resources/assets/mineralogy/items/gabbro_smooth_brick_slab.json new file mode 100644 index 000000000..29c842686 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/gabbro_smooth_brick_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/gabbro_smooth_brick_slab" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/gabbro_smooth_brick_stairs.json b/src/main/resources/assets/mineralogy/items/gabbro_smooth_brick_stairs.json new file mode 100644 index 000000000..8a4ed04cb --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/gabbro_smooth_brick_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/gabbro_smooth_brick_stairs" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/gabbro_smooth_brick_wall.json b/src/main/resources/assets/mineralogy/items/gabbro_smooth_brick_wall.json new file mode 100644 index 000000000..ae7591e25 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/gabbro_smooth_brick_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/gabbro_smooth_brick_wall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/gabbro_smooth_furnace.json b/src/main/resources/assets/mineralogy/items/gabbro_smooth_furnace.json new file mode 100644 index 000000000..6dfbf2aee --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/gabbro_smooth_furnace.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/gabbro_smooth_furnace" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/gabbro_smooth_slab.json b/src/main/resources/assets/mineralogy/items/gabbro_smooth_slab.json new file mode 100644 index 000000000..4de620277 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/gabbro_smooth_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/gabbro_smooth_slab" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/gabbro_smooth_stairs.json b/src/main/resources/assets/mineralogy/items/gabbro_smooth_stairs.json new file mode 100644 index 000000000..b14cadc99 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/gabbro_smooth_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/gabbro_smooth_stairs" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/gabbro_smooth_wall.json b/src/main/resources/assets/mineralogy/items/gabbro_smooth_wall.json new file mode 100644 index 000000000..f68fa1549 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/gabbro_smooth_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/gabbro_smooth_wall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/gabbro_stairs.json b/src/main/resources/assets/mineralogy/items/gabbro_stairs.json new file mode 100644 index 000000000..e547a5d10 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/gabbro_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/gabbro_stairs" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/gabbro_wall.json b/src/main/resources/assets/mineralogy/items/gabbro_wall.json new file mode 100644 index 000000000..b2079a215 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/gabbro_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/gabbro_wall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/gneiss.json b/src/main/resources/assets/mineralogy/items/gneiss.json new file mode 100644 index 000000000..0fcbf7c13 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/gneiss.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/gneiss" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/gneiss_brick.json b/src/main/resources/assets/mineralogy/items/gneiss_brick.json new file mode 100644 index 000000000..249158225 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/gneiss_brick.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/gneiss_brick" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/gneiss_brick_furnace.json b/src/main/resources/assets/mineralogy/items/gneiss_brick_furnace.json new file mode 100644 index 000000000..b1f8ad71f --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/gneiss_brick_furnace.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/gneiss_brick_furnace" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/gneiss_brick_slab.json b/src/main/resources/assets/mineralogy/items/gneiss_brick_slab.json new file mode 100644 index 000000000..5c665423d --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/gneiss_brick_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/gneiss_brick_slab" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/gneiss_brick_stairs.json b/src/main/resources/assets/mineralogy/items/gneiss_brick_stairs.json new file mode 100644 index 000000000..4c204a15f --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/gneiss_brick_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/gneiss_brick_stairs" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/gneiss_brick_wall.json b/src/main/resources/assets/mineralogy/items/gneiss_brick_wall.json new file mode 100644 index 000000000..a7ad72534 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/gneiss_brick_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/gneiss_brick_wall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/gneiss_furnace.json b/src/main/resources/assets/mineralogy/items/gneiss_furnace.json new file mode 100644 index 000000000..1b68426f4 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/gneiss_furnace.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/gneiss_furnace" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/gneiss_relief_axe.json b/src/main/resources/assets/mineralogy/items/gneiss_relief_axe.json new file mode 100644 index 000000000..034b2f53f --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/gneiss_relief_axe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/gneiss_relief_axe" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/gneiss_relief_blank.json b/src/main/resources/assets/mineralogy/items/gneiss_relief_blank.json new file mode 100644 index 000000000..3070a8ee3 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/gneiss_relief_blank.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/gneiss_relief_blank" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/gneiss_relief_cross.json b/src/main/resources/assets/mineralogy/items/gneiss_relief_cross.json new file mode 100644 index 000000000..d385be3eb --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/gneiss_relief_cross.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/gneiss_relief_cross" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/gneiss_relief_hammer.json b/src/main/resources/assets/mineralogy/items/gneiss_relief_hammer.json new file mode 100644 index 000000000..e4cbafbc6 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/gneiss_relief_hammer.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/gneiss_relief_hammer" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/gneiss_relief_hoe.json b/src/main/resources/assets/mineralogy/items/gneiss_relief_hoe.json new file mode 100644 index 000000000..23d864b40 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/gneiss_relief_hoe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/gneiss_relief_hoe" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/gneiss_relief_horizontal.json b/src/main/resources/assets/mineralogy/items/gneiss_relief_horizontal.json new file mode 100644 index 000000000..82b80f51f --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/gneiss_relief_horizontal.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/gneiss_relief_horizontal" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/gneiss_relief_i.json b/src/main/resources/assets/mineralogy/items/gneiss_relief_i.json new file mode 100644 index 000000000..659a71210 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/gneiss_relief_i.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/gneiss_relief_i" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/gneiss_relief_left.json b/src/main/resources/assets/mineralogy/items/gneiss_relief_left.json new file mode 100644 index 000000000..e60863031 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/gneiss_relief_left.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/gneiss_relief_left" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/gneiss_relief_pickaxe.json b/src/main/resources/assets/mineralogy/items/gneiss_relief_pickaxe.json new file mode 100644 index 000000000..827ede163 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/gneiss_relief_pickaxe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/gneiss_relief_pickaxe" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/gneiss_relief_plus.json b/src/main/resources/assets/mineralogy/items/gneiss_relief_plus.json new file mode 100644 index 000000000..6b52e981c --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/gneiss_relief_plus.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/gneiss_relief_plus" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/gneiss_relief_right.json b/src/main/resources/assets/mineralogy/items/gneiss_relief_right.json new file mode 100644 index 000000000..1dc8b8d9a --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/gneiss_relief_right.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/gneiss_relief_right" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/gneiss_relief_sword.json b/src/main/resources/assets/mineralogy/items/gneiss_relief_sword.json new file mode 100644 index 000000000..86f8c23f1 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/gneiss_relief_sword.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/gneiss_relief_sword" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/gneiss_relief_vertical.json b/src/main/resources/assets/mineralogy/items/gneiss_relief_vertical.json new file mode 100644 index 000000000..17e22aedc --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/gneiss_relief_vertical.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/gneiss_relief_vertical" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/gneiss_slab.json b/src/main/resources/assets/mineralogy/items/gneiss_slab.json new file mode 100644 index 000000000..dba7e6a7e --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/gneiss_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/gneiss_slab" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/gneiss_smooth.json b/src/main/resources/assets/mineralogy/items/gneiss_smooth.json new file mode 100644 index 000000000..a866666c6 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/gneiss_smooth.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/gneiss_smooth" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/gneiss_smooth_brick.json b/src/main/resources/assets/mineralogy/items/gneiss_smooth_brick.json new file mode 100644 index 000000000..91a68d5ff --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/gneiss_smooth_brick.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/gneiss_smooth_brick" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/gneiss_smooth_brick_furnace.json b/src/main/resources/assets/mineralogy/items/gneiss_smooth_brick_furnace.json new file mode 100644 index 000000000..b987f38e2 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/gneiss_smooth_brick_furnace.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/gneiss_smooth_brick_furnace" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/gneiss_smooth_brick_slab.json b/src/main/resources/assets/mineralogy/items/gneiss_smooth_brick_slab.json new file mode 100644 index 000000000..d7d9bdd8c --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/gneiss_smooth_brick_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/gneiss_smooth_brick_slab" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/gneiss_smooth_brick_stairs.json b/src/main/resources/assets/mineralogy/items/gneiss_smooth_brick_stairs.json new file mode 100644 index 000000000..8c7b94fc1 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/gneiss_smooth_brick_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/gneiss_smooth_brick_stairs" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/gneiss_smooth_brick_wall.json b/src/main/resources/assets/mineralogy/items/gneiss_smooth_brick_wall.json new file mode 100644 index 000000000..bb377aa34 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/gneiss_smooth_brick_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/gneiss_smooth_brick_wall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/gneiss_smooth_furnace.json b/src/main/resources/assets/mineralogy/items/gneiss_smooth_furnace.json new file mode 100644 index 000000000..fd531ebd0 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/gneiss_smooth_furnace.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/gneiss_smooth_furnace" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/gneiss_smooth_slab.json b/src/main/resources/assets/mineralogy/items/gneiss_smooth_slab.json new file mode 100644 index 000000000..681a6ff63 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/gneiss_smooth_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/gneiss_smooth_slab" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/gneiss_smooth_stairs.json b/src/main/resources/assets/mineralogy/items/gneiss_smooth_stairs.json new file mode 100644 index 000000000..5b28a1c85 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/gneiss_smooth_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/gneiss_smooth_stairs" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/gneiss_smooth_wall.json b/src/main/resources/assets/mineralogy/items/gneiss_smooth_wall.json new file mode 100644 index 000000000..9503f77b0 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/gneiss_smooth_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/gneiss_smooth_wall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/gneiss_stairs.json b/src/main/resources/assets/mineralogy/items/gneiss_stairs.json new file mode 100644 index 000000000..a59231406 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/gneiss_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/gneiss_stairs" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/gneiss_wall.json b/src/main/resources/assets/mineralogy/items/gneiss_wall.json new file mode 100644 index 000000000..f361b25ee --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/gneiss_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/gneiss_wall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/granite.json b/src/main/resources/assets/mineralogy/items/granite.json new file mode 100644 index 000000000..c538c8194 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/granite.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/granite" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/granite_brick.json b/src/main/resources/assets/mineralogy/items/granite_brick.json new file mode 100644 index 000000000..5a08c0cec --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/granite_brick.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/granite_brick" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/granite_brick_furnace.json b/src/main/resources/assets/mineralogy/items/granite_brick_furnace.json new file mode 100644 index 000000000..077795fef --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/granite_brick_furnace.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/granite_brick_furnace" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/granite_brick_slab.json b/src/main/resources/assets/mineralogy/items/granite_brick_slab.json new file mode 100644 index 000000000..4bdc00548 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/granite_brick_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/granite_brick_slab" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/granite_brick_stairs.json b/src/main/resources/assets/mineralogy/items/granite_brick_stairs.json new file mode 100644 index 000000000..61149ec54 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/granite_brick_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/granite_brick_stairs" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/granite_brick_wall.json b/src/main/resources/assets/mineralogy/items/granite_brick_wall.json new file mode 100644 index 000000000..577102028 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/granite_brick_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/granite_brick_wall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/granite_furnace.json b/src/main/resources/assets/mineralogy/items/granite_furnace.json new file mode 100644 index 000000000..49f4dde1f --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/granite_furnace.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/granite_furnace" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/granite_relief_axe.json b/src/main/resources/assets/mineralogy/items/granite_relief_axe.json new file mode 100644 index 000000000..06b961145 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/granite_relief_axe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/granite_relief_axe" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/granite_relief_blank.json b/src/main/resources/assets/mineralogy/items/granite_relief_blank.json new file mode 100644 index 000000000..992729a95 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/granite_relief_blank.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/granite_relief_blank" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/granite_relief_cross.json b/src/main/resources/assets/mineralogy/items/granite_relief_cross.json new file mode 100644 index 000000000..9c42200d2 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/granite_relief_cross.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/granite_relief_cross" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/granite_relief_hammer.json b/src/main/resources/assets/mineralogy/items/granite_relief_hammer.json new file mode 100644 index 000000000..8f88f5b2a --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/granite_relief_hammer.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/granite_relief_hammer" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/granite_relief_hoe.json b/src/main/resources/assets/mineralogy/items/granite_relief_hoe.json new file mode 100644 index 000000000..29fd02216 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/granite_relief_hoe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/granite_relief_hoe" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/granite_relief_horizontal.json b/src/main/resources/assets/mineralogy/items/granite_relief_horizontal.json new file mode 100644 index 000000000..1907d436f --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/granite_relief_horizontal.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/granite_relief_horizontal" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/granite_relief_i.json b/src/main/resources/assets/mineralogy/items/granite_relief_i.json new file mode 100644 index 000000000..2c680b9af --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/granite_relief_i.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/granite_relief_i" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/granite_relief_left.json b/src/main/resources/assets/mineralogy/items/granite_relief_left.json new file mode 100644 index 000000000..3546d758e --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/granite_relief_left.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/granite_relief_left" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/granite_relief_pickaxe.json b/src/main/resources/assets/mineralogy/items/granite_relief_pickaxe.json new file mode 100644 index 000000000..11eb03b08 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/granite_relief_pickaxe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/granite_relief_pickaxe" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/granite_relief_plus.json b/src/main/resources/assets/mineralogy/items/granite_relief_plus.json new file mode 100644 index 000000000..1e0812c21 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/granite_relief_plus.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/granite_relief_plus" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/granite_relief_right.json b/src/main/resources/assets/mineralogy/items/granite_relief_right.json new file mode 100644 index 000000000..11a44f8a0 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/granite_relief_right.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/granite_relief_right" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/granite_relief_sword.json b/src/main/resources/assets/mineralogy/items/granite_relief_sword.json new file mode 100644 index 000000000..088ffc547 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/granite_relief_sword.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/granite_relief_sword" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/granite_relief_vertical.json b/src/main/resources/assets/mineralogy/items/granite_relief_vertical.json new file mode 100644 index 000000000..0d7fe3217 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/granite_relief_vertical.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/granite_relief_vertical" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/granite_slab.json b/src/main/resources/assets/mineralogy/items/granite_slab.json new file mode 100644 index 000000000..523e34d15 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/granite_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/granite_slab" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/granite_smooth.json b/src/main/resources/assets/mineralogy/items/granite_smooth.json new file mode 100644 index 000000000..ad5a3da2e --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/granite_smooth.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/granite_smooth" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/granite_smooth_brick.json b/src/main/resources/assets/mineralogy/items/granite_smooth_brick.json new file mode 100644 index 000000000..8e9263d60 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/granite_smooth_brick.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/granite_smooth_brick" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/granite_smooth_brick_furnace.json b/src/main/resources/assets/mineralogy/items/granite_smooth_brick_furnace.json new file mode 100644 index 000000000..37290c10b --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/granite_smooth_brick_furnace.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/granite_smooth_brick_furnace" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/granite_smooth_brick_slab.json b/src/main/resources/assets/mineralogy/items/granite_smooth_brick_slab.json new file mode 100644 index 000000000..7593887aa --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/granite_smooth_brick_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/granite_smooth_brick_slab" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/granite_smooth_brick_stairs.json b/src/main/resources/assets/mineralogy/items/granite_smooth_brick_stairs.json new file mode 100644 index 000000000..e2b85ffb2 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/granite_smooth_brick_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/granite_smooth_brick_stairs" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/granite_smooth_brick_wall.json b/src/main/resources/assets/mineralogy/items/granite_smooth_brick_wall.json new file mode 100644 index 000000000..fdf0c8594 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/granite_smooth_brick_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/granite_smooth_brick_wall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/granite_smooth_furnace.json b/src/main/resources/assets/mineralogy/items/granite_smooth_furnace.json new file mode 100644 index 000000000..3359d243f --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/granite_smooth_furnace.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/granite_smooth_furnace" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/granite_smooth_slab.json b/src/main/resources/assets/mineralogy/items/granite_smooth_slab.json new file mode 100644 index 000000000..1c975a34a --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/granite_smooth_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/granite_smooth_slab" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/granite_smooth_stairs.json b/src/main/resources/assets/mineralogy/items/granite_smooth_stairs.json new file mode 100644 index 000000000..477c0a276 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/granite_smooth_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/granite_smooth_stairs" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/granite_smooth_wall.json b/src/main/resources/assets/mineralogy/items/granite_smooth_wall.json new file mode 100644 index 000000000..0ebe94234 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/granite_smooth_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/granite_smooth_wall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/granite_stairs.json b/src/main/resources/assets/mineralogy/items/granite_stairs.json new file mode 100644 index 000000000..66d6dfca3 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/granite_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/granite_stairs" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/granite_wall.json b/src/main/resources/assets/mineralogy/items/granite_wall.json new file mode 100644 index 000000000..482bf43da --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/granite_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/granite_wall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/gypsum.json b/src/main/resources/assets/mineralogy/items/gypsum.json new file mode 100644 index 000000000..17a3d9265 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/gypsum.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/gypsum" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/gypsum_dust.json b/src/main/resources/assets/mineralogy/items/gypsum_dust.json new file mode 100644 index 000000000..59784bad4 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/gypsum_dust.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/gypsum_dust" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/hornfels.json b/src/main/resources/assets/mineralogy/items/hornfels.json new file mode 100644 index 000000000..50aac1ac1 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/hornfels.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/hornfels" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/hornfels_brick.json b/src/main/resources/assets/mineralogy/items/hornfels_brick.json new file mode 100644 index 000000000..060005572 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/hornfels_brick.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/hornfels_brick" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/hornfels_brick_furnace.json b/src/main/resources/assets/mineralogy/items/hornfels_brick_furnace.json new file mode 100644 index 000000000..919e253bd --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/hornfels_brick_furnace.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/hornfels_brick_furnace" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/hornfels_brick_slab.json b/src/main/resources/assets/mineralogy/items/hornfels_brick_slab.json new file mode 100644 index 000000000..6e425b0ab --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/hornfels_brick_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/hornfels_brick_slab" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/hornfels_brick_stairs.json b/src/main/resources/assets/mineralogy/items/hornfels_brick_stairs.json new file mode 100644 index 000000000..29a236efe --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/hornfels_brick_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/hornfels_brick_stairs" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/hornfels_brick_wall.json b/src/main/resources/assets/mineralogy/items/hornfels_brick_wall.json new file mode 100644 index 000000000..a33202edc --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/hornfels_brick_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/hornfels_brick_wall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/hornfels_furnace.json b/src/main/resources/assets/mineralogy/items/hornfels_furnace.json new file mode 100644 index 000000000..12a9aebb7 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/hornfels_furnace.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/hornfels_furnace" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/hornfels_relief_axe.json b/src/main/resources/assets/mineralogy/items/hornfels_relief_axe.json new file mode 100644 index 000000000..c03c752ff --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/hornfels_relief_axe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/hornfels_relief_axe" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/hornfels_relief_blank.json b/src/main/resources/assets/mineralogy/items/hornfels_relief_blank.json new file mode 100644 index 000000000..bbaa58e88 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/hornfels_relief_blank.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/hornfels_relief_blank" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/hornfels_relief_cross.json b/src/main/resources/assets/mineralogy/items/hornfels_relief_cross.json new file mode 100644 index 000000000..4139a0ca0 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/hornfels_relief_cross.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/hornfels_relief_cross" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/hornfels_relief_hammer.json b/src/main/resources/assets/mineralogy/items/hornfels_relief_hammer.json new file mode 100644 index 000000000..074905af2 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/hornfels_relief_hammer.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/hornfels_relief_hammer" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/hornfels_relief_hoe.json b/src/main/resources/assets/mineralogy/items/hornfels_relief_hoe.json new file mode 100644 index 000000000..c61049d4d --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/hornfels_relief_hoe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/hornfels_relief_hoe" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/hornfels_relief_horizontal.json b/src/main/resources/assets/mineralogy/items/hornfels_relief_horizontal.json new file mode 100644 index 000000000..12ac924f0 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/hornfels_relief_horizontal.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/hornfels_relief_horizontal" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/hornfels_relief_i.json b/src/main/resources/assets/mineralogy/items/hornfels_relief_i.json new file mode 100644 index 000000000..90ae5667a --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/hornfels_relief_i.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/hornfels_relief_i" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/hornfels_relief_left.json b/src/main/resources/assets/mineralogy/items/hornfels_relief_left.json new file mode 100644 index 000000000..3f19a2765 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/hornfels_relief_left.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/hornfels_relief_left" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/hornfels_relief_pickaxe.json b/src/main/resources/assets/mineralogy/items/hornfels_relief_pickaxe.json new file mode 100644 index 000000000..b0e5efac6 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/hornfels_relief_pickaxe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/hornfels_relief_pickaxe" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/hornfels_relief_plus.json b/src/main/resources/assets/mineralogy/items/hornfels_relief_plus.json new file mode 100644 index 000000000..a905e25be --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/hornfels_relief_plus.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/hornfels_relief_plus" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/hornfels_relief_right.json b/src/main/resources/assets/mineralogy/items/hornfels_relief_right.json new file mode 100644 index 000000000..2c0c98284 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/hornfels_relief_right.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/hornfels_relief_right" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/hornfels_relief_sword.json b/src/main/resources/assets/mineralogy/items/hornfels_relief_sword.json new file mode 100644 index 000000000..020b9dbe1 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/hornfels_relief_sword.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/hornfels_relief_sword" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/hornfels_relief_vertical.json b/src/main/resources/assets/mineralogy/items/hornfels_relief_vertical.json new file mode 100644 index 000000000..4d8caa3fa --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/hornfels_relief_vertical.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/hornfels_relief_vertical" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/hornfels_slab.json b/src/main/resources/assets/mineralogy/items/hornfels_slab.json new file mode 100644 index 000000000..7ea44c489 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/hornfels_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/hornfels_slab" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/hornfels_smooth.json b/src/main/resources/assets/mineralogy/items/hornfels_smooth.json new file mode 100644 index 000000000..f4551a417 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/hornfels_smooth.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/hornfels_smooth" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/hornfels_smooth_brick.json b/src/main/resources/assets/mineralogy/items/hornfels_smooth_brick.json new file mode 100644 index 000000000..95d48209c --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/hornfels_smooth_brick.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/hornfels_smooth_brick" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/hornfels_smooth_brick_furnace.json b/src/main/resources/assets/mineralogy/items/hornfels_smooth_brick_furnace.json new file mode 100644 index 000000000..06cd0ae7d --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/hornfels_smooth_brick_furnace.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/hornfels_smooth_brick_furnace" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/hornfels_smooth_brick_slab.json b/src/main/resources/assets/mineralogy/items/hornfels_smooth_brick_slab.json new file mode 100644 index 000000000..49fd4f141 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/hornfels_smooth_brick_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/hornfels_smooth_brick_slab" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/hornfels_smooth_brick_stairs.json b/src/main/resources/assets/mineralogy/items/hornfels_smooth_brick_stairs.json new file mode 100644 index 000000000..3e944da8c --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/hornfels_smooth_brick_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/hornfels_smooth_brick_stairs" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/hornfels_smooth_brick_wall.json b/src/main/resources/assets/mineralogy/items/hornfels_smooth_brick_wall.json new file mode 100644 index 000000000..55f2f439b --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/hornfels_smooth_brick_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/hornfels_smooth_brick_wall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/hornfels_smooth_furnace.json b/src/main/resources/assets/mineralogy/items/hornfels_smooth_furnace.json new file mode 100644 index 000000000..60649d571 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/hornfels_smooth_furnace.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/hornfels_smooth_furnace" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/hornfels_smooth_slab.json b/src/main/resources/assets/mineralogy/items/hornfels_smooth_slab.json new file mode 100644 index 000000000..9e62a92d7 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/hornfels_smooth_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/hornfels_smooth_slab" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/hornfels_smooth_stairs.json b/src/main/resources/assets/mineralogy/items/hornfels_smooth_stairs.json new file mode 100644 index 000000000..84fc6dbaa --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/hornfels_smooth_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/hornfels_smooth_stairs" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/hornfels_smooth_wall.json b/src/main/resources/assets/mineralogy/items/hornfels_smooth_wall.json new file mode 100644 index 000000000..5d69b2d69 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/hornfels_smooth_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/hornfels_smooth_wall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/hornfels_stairs.json b/src/main/resources/assets/mineralogy/items/hornfels_stairs.json new file mode 100644 index 000000000..de9c2b8d9 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/hornfels_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/hornfels_stairs" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/hornfels_wall.json b/src/main/resources/assets/mineralogy/items/hornfels_wall.json new file mode 100644 index 000000000..f6118cad6 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/hornfels_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/hornfels_wall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/limestone.json b/src/main/resources/assets/mineralogy/items/limestone.json new file mode 100644 index 000000000..d3a6e38c1 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/limestone.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/limestone" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/limestone_brick.json b/src/main/resources/assets/mineralogy/items/limestone_brick.json new file mode 100644 index 000000000..131f79755 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/limestone_brick.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/limestone_brick" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/limestone_brick_furnace.json b/src/main/resources/assets/mineralogy/items/limestone_brick_furnace.json new file mode 100644 index 000000000..398d8930c --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/limestone_brick_furnace.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/limestone_brick_furnace" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/limestone_brick_slab.json b/src/main/resources/assets/mineralogy/items/limestone_brick_slab.json new file mode 100644 index 000000000..f804aa80a --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/limestone_brick_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/limestone_brick_slab" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/limestone_brick_stairs.json b/src/main/resources/assets/mineralogy/items/limestone_brick_stairs.json new file mode 100644 index 000000000..fd2ce17ea --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/limestone_brick_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/limestone_brick_stairs" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/limestone_brick_wall.json b/src/main/resources/assets/mineralogy/items/limestone_brick_wall.json new file mode 100644 index 000000000..e2d8534e4 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/limestone_brick_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/limestone_brick_wall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/limestone_furnace.json b/src/main/resources/assets/mineralogy/items/limestone_furnace.json new file mode 100644 index 000000000..89a014d14 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/limestone_furnace.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/limestone_furnace" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/limestone_relief_axe.json b/src/main/resources/assets/mineralogy/items/limestone_relief_axe.json new file mode 100644 index 000000000..533894bc2 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/limestone_relief_axe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/limestone_relief_axe" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/limestone_relief_blank.json b/src/main/resources/assets/mineralogy/items/limestone_relief_blank.json new file mode 100644 index 000000000..0aede8f62 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/limestone_relief_blank.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/limestone_relief_blank" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/limestone_relief_cross.json b/src/main/resources/assets/mineralogy/items/limestone_relief_cross.json new file mode 100644 index 000000000..c4876a6b0 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/limestone_relief_cross.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/limestone_relief_cross" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/limestone_relief_hammer.json b/src/main/resources/assets/mineralogy/items/limestone_relief_hammer.json new file mode 100644 index 000000000..e6e218c80 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/limestone_relief_hammer.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/limestone_relief_hammer" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/limestone_relief_hoe.json b/src/main/resources/assets/mineralogy/items/limestone_relief_hoe.json new file mode 100644 index 000000000..b649f91a0 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/limestone_relief_hoe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/limestone_relief_hoe" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/limestone_relief_horizontal.json b/src/main/resources/assets/mineralogy/items/limestone_relief_horizontal.json new file mode 100644 index 000000000..852d648b3 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/limestone_relief_horizontal.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/limestone_relief_horizontal" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/limestone_relief_i.json b/src/main/resources/assets/mineralogy/items/limestone_relief_i.json new file mode 100644 index 000000000..6c811bb89 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/limestone_relief_i.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/limestone_relief_i" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/limestone_relief_left.json b/src/main/resources/assets/mineralogy/items/limestone_relief_left.json new file mode 100644 index 000000000..cf1c8ea8a --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/limestone_relief_left.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/limestone_relief_left" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/limestone_relief_pickaxe.json b/src/main/resources/assets/mineralogy/items/limestone_relief_pickaxe.json new file mode 100644 index 000000000..6507ab3cb --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/limestone_relief_pickaxe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/limestone_relief_pickaxe" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/limestone_relief_plus.json b/src/main/resources/assets/mineralogy/items/limestone_relief_plus.json new file mode 100644 index 000000000..bb01103e5 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/limestone_relief_plus.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/limestone_relief_plus" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/limestone_relief_right.json b/src/main/resources/assets/mineralogy/items/limestone_relief_right.json new file mode 100644 index 000000000..f91d248d8 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/limestone_relief_right.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/limestone_relief_right" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/limestone_relief_sword.json b/src/main/resources/assets/mineralogy/items/limestone_relief_sword.json new file mode 100644 index 000000000..f5783be7c --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/limestone_relief_sword.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/limestone_relief_sword" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/limestone_relief_vertical.json b/src/main/resources/assets/mineralogy/items/limestone_relief_vertical.json new file mode 100644 index 000000000..8761e5f31 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/limestone_relief_vertical.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/limestone_relief_vertical" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/limestone_slab.json b/src/main/resources/assets/mineralogy/items/limestone_slab.json new file mode 100644 index 000000000..d6e886c2d --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/limestone_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/limestone_slab" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/limestone_smooth.json b/src/main/resources/assets/mineralogy/items/limestone_smooth.json new file mode 100644 index 000000000..51186de8e --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/limestone_smooth.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/limestone_smooth" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/limestone_smooth_brick.json b/src/main/resources/assets/mineralogy/items/limestone_smooth_brick.json new file mode 100644 index 000000000..9add7461c --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/limestone_smooth_brick.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/limestone_smooth_brick" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/limestone_smooth_brick_furnace.json b/src/main/resources/assets/mineralogy/items/limestone_smooth_brick_furnace.json new file mode 100644 index 000000000..5e2ded1a9 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/limestone_smooth_brick_furnace.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/limestone_smooth_brick_furnace" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/limestone_smooth_brick_slab.json b/src/main/resources/assets/mineralogy/items/limestone_smooth_brick_slab.json new file mode 100644 index 000000000..f7fb24e9c --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/limestone_smooth_brick_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/limestone_smooth_brick_slab" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/limestone_smooth_brick_stairs.json b/src/main/resources/assets/mineralogy/items/limestone_smooth_brick_stairs.json new file mode 100644 index 000000000..4e45745f4 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/limestone_smooth_brick_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/limestone_smooth_brick_stairs" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/limestone_smooth_brick_wall.json b/src/main/resources/assets/mineralogy/items/limestone_smooth_brick_wall.json new file mode 100644 index 000000000..ae3c6c5e1 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/limestone_smooth_brick_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/limestone_smooth_brick_wall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/limestone_smooth_furnace.json b/src/main/resources/assets/mineralogy/items/limestone_smooth_furnace.json new file mode 100644 index 000000000..95d6110c0 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/limestone_smooth_furnace.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/limestone_smooth_furnace" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/limestone_smooth_slab.json b/src/main/resources/assets/mineralogy/items/limestone_smooth_slab.json new file mode 100644 index 000000000..b0238bf3d --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/limestone_smooth_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/limestone_smooth_slab" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/limestone_smooth_stairs.json b/src/main/resources/assets/mineralogy/items/limestone_smooth_stairs.json new file mode 100644 index 000000000..642e23df1 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/limestone_smooth_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/limestone_smooth_stairs" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/limestone_smooth_wall.json b/src/main/resources/assets/mineralogy/items/limestone_smooth_wall.json new file mode 100644 index 000000000..65209e3a0 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/limestone_smooth_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/limestone_smooth_wall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/limestone_stairs.json b/src/main/resources/assets/mineralogy/items/limestone_stairs.json new file mode 100644 index 000000000..d40485829 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/limestone_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/limestone_stairs" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/limestone_wall.json b/src/main/resources/assets/mineralogy/items/limestone_wall.json new file mode 100644 index 000000000..e10668f27 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/limestone_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/limestone_wall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/marble.json b/src/main/resources/assets/mineralogy/items/marble.json new file mode 100644 index 000000000..457b47413 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/marble.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/marble" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/marble_brick.json b/src/main/resources/assets/mineralogy/items/marble_brick.json new file mode 100644 index 000000000..ae82738a0 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/marble_brick.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/marble_brick" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/marble_brick_furnace.json b/src/main/resources/assets/mineralogy/items/marble_brick_furnace.json new file mode 100644 index 000000000..857da4b87 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/marble_brick_furnace.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/marble_brick_furnace" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/marble_brick_slab.json b/src/main/resources/assets/mineralogy/items/marble_brick_slab.json new file mode 100644 index 000000000..a064b4918 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/marble_brick_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/marble_brick_slab" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/marble_brick_stairs.json b/src/main/resources/assets/mineralogy/items/marble_brick_stairs.json new file mode 100644 index 000000000..2bb0eb33e --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/marble_brick_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/marble_brick_stairs" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/marble_brick_wall.json b/src/main/resources/assets/mineralogy/items/marble_brick_wall.json new file mode 100644 index 000000000..03f0f4063 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/marble_brick_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/marble_brick_wall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/marble_furnace.json b/src/main/resources/assets/mineralogy/items/marble_furnace.json new file mode 100644 index 000000000..5a9a3f9c5 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/marble_furnace.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/marble_furnace" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/marble_relief_axe.json b/src/main/resources/assets/mineralogy/items/marble_relief_axe.json new file mode 100644 index 000000000..b94d997b5 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/marble_relief_axe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/marble_relief_axe" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/marble_relief_blank.json b/src/main/resources/assets/mineralogy/items/marble_relief_blank.json new file mode 100644 index 000000000..208045cfb --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/marble_relief_blank.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/marble_relief_blank" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/marble_relief_cross.json b/src/main/resources/assets/mineralogy/items/marble_relief_cross.json new file mode 100644 index 000000000..c96f91748 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/marble_relief_cross.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/marble_relief_cross" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/marble_relief_hammer.json b/src/main/resources/assets/mineralogy/items/marble_relief_hammer.json new file mode 100644 index 000000000..0d42d35dd --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/marble_relief_hammer.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/marble_relief_hammer" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/marble_relief_hoe.json b/src/main/resources/assets/mineralogy/items/marble_relief_hoe.json new file mode 100644 index 000000000..1c4608f07 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/marble_relief_hoe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/marble_relief_hoe" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/marble_relief_horizontal.json b/src/main/resources/assets/mineralogy/items/marble_relief_horizontal.json new file mode 100644 index 000000000..cbce61e7a --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/marble_relief_horizontal.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/marble_relief_horizontal" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/marble_relief_i.json b/src/main/resources/assets/mineralogy/items/marble_relief_i.json new file mode 100644 index 000000000..d53f7c2d4 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/marble_relief_i.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/marble_relief_i" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/marble_relief_left.json b/src/main/resources/assets/mineralogy/items/marble_relief_left.json new file mode 100644 index 000000000..9d76a6f98 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/marble_relief_left.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/marble_relief_left" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/marble_relief_pickaxe.json b/src/main/resources/assets/mineralogy/items/marble_relief_pickaxe.json new file mode 100644 index 000000000..a9257070d --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/marble_relief_pickaxe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/marble_relief_pickaxe" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/marble_relief_plus.json b/src/main/resources/assets/mineralogy/items/marble_relief_plus.json new file mode 100644 index 000000000..380eb4121 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/marble_relief_plus.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/marble_relief_plus" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/marble_relief_right.json b/src/main/resources/assets/mineralogy/items/marble_relief_right.json new file mode 100644 index 000000000..5c077b4f4 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/marble_relief_right.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/marble_relief_right" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/marble_relief_sword.json b/src/main/resources/assets/mineralogy/items/marble_relief_sword.json new file mode 100644 index 000000000..ace5b273e --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/marble_relief_sword.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/marble_relief_sword" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/marble_relief_vertical.json b/src/main/resources/assets/mineralogy/items/marble_relief_vertical.json new file mode 100644 index 000000000..88698dc4c --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/marble_relief_vertical.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/marble_relief_vertical" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/marble_slab.json b/src/main/resources/assets/mineralogy/items/marble_slab.json new file mode 100644 index 000000000..9d08dd8b6 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/marble_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/marble_slab" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/marble_smooth.json b/src/main/resources/assets/mineralogy/items/marble_smooth.json new file mode 100644 index 000000000..de46d1383 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/marble_smooth.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/marble_smooth" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/marble_smooth_brick.json b/src/main/resources/assets/mineralogy/items/marble_smooth_brick.json new file mode 100644 index 000000000..056567017 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/marble_smooth_brick.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/marble_smooth_brick" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/marble_smooth_brick_furnace.json b/src/main/resources/assets/mineralogy/items/marble_smooth_brick_furnace.json new file mode 100644 index 000000000..751828897 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/marble_smooth_brick_furnace.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/marble_smooth_brick_furnace" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/marble_smooth_brick_slab.json b/src/main/resources/assets/mineralogy/items/marble_smooth_brick_slab.json new file mode 100644 index 000000000..981bef203 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/marble_smooth_brick_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/marble_smooth_brick_slab" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/marble_smooth_brick_stairs.json b/src/main/resources/assets/mineralogy/items/marble_smooth_brick_stairs.json new file mode 100644 index 000000000..428ad0e6c --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/marble_smooth_brick_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/marble_smooth_brick_stairs" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/marble_smooth_brick_wall.json b/src/main/resources/assets/mineralogy/items/marble_smooth_brick_wall.json new file mode 100644 index 000000000..8344dbee5 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/marble_smooth_brick_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/marble_smooth_brick_wall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/marble_smooth_furnace.json b/src/main/resources/assets/mineralogy/items/marble_smooth_furnace.json new file mode 100644 index 000000000..b21ff8d14 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/marble_smooth_furnace.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/marble_smooth_furnace" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/marble_smooth_slab.json b/src/main/resources/assets/mineralogy/items/marble_smooth_slab.json new file mode 100644 index 000000000..b49323f45 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/marble_smooth_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/marble_smooth_slab" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/marble_smooth_stairs.json b/src/main/resources/assets/mineralogy/items/marble_smooth_stairs.json new file mode 100644 index 000000000..7dfed2285 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/marble_smooth_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/marble_smooth_stairs" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/marble_smooth_wall.json b/src/main/resources/assets/mineralogy/items/marble_smooth_wall.json new file mode 100644 index 000000000..c0b12ed8c --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/marble_smooth_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/marble_smooth_wall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/marble_stairs.json b/src/main/resources/assets/mineralogy/items/marble_stairs.json new file mode 100644 index 000000000..eff7a1438 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/marble_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/marble_stairs" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/marble_wall.json b/src/main/resources/assets/mineralogy/items/marble_wall.json new file mode 100644 index 000000000..c7ea40076 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/marble_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/marble_wall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/mineral_fertilizer.json b/src/main/resources/assets/mineralogy/items/mineral_fertilizer.json new file mode 100644 index 000000000..53c68a644 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/mineral_fertilizer.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/mineral_fertilizer" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/nitrate_block.json b/src/main/resources/assets/mineralogy/items/nitrate_block.json new file mode 100644 index 000000000..240602473 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/nitrate_block.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/nitrate_block" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/nitrate_dust.json b/src/main/resources/assets/mineralogy/items/nitrate_dust.json new file mode 100644 index 000000000..fa6e269b0 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/nitrate_dust.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/nitrate_dust" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/nitrate_ore.json b/src/main/resources/assets/mineralogy/items/nitrate_ore.json new file mode 100644 index 000000000..6c6ab9c2c --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/nitrate_ore.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/nitrate_ore" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/novaculite.json b/src/main/resources/assets/mineralogy/items/novaculite.json new file mode 100644 index 000000000..06d3ffd5f --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/novaculite.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/novaculite" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/novaculite_brick.json b/src/main/resources/assets/mineralogy/items/novaculite_brick.json new file mode 100644 index 000000000..3f9cbd3ed --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/novaculite_brick.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/novaculite_brick" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/novaculite_brick_furnace.json b/src/main/resources/assets/mineralogy/items/novaculite_brick_furnace.json new file mode 100644 index 000000000..3834aae14 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/novaculite_brick_furnace.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/novaculite_brick_furnace" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/novaculite_brick_slab.json b/src/main/resources/assets/mineralogy/items/novaculite_brick_slab.json new file mode 100644 index 000000000..bca40dd1c --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/novaculite_brick_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/novaculite_brick_slab" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/novaculite_brick_stairs.json b/src/main/resources/assets/mineralogy/items/novaculite_brick_stairs.json new file mode 100644 index 000000000..0461e8887 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/novaculite_brick_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/novaculite_brick_stairs" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/novaculite_brick_wall.json b/src/main/resources/assets/mineralogy/items/novaculite_brick_wall.json new file mode 100644 index 000000000..c1e16c708 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/novaculite_brick_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/novaculite_brick_wall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/novaculite_furnace.json b/src/main/resources/assets/mineralogy/items/novaculite_furnace.json new file mode 100644 index 000000000..dcba8f9c1 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/novaculite_furnace.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/novaculite_furnace" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/novaculite_relief_axe.json b/src/main/resources/assets/mineralogy/items/novaculite_relief_axe.json new file mode 100644 index 000000000..225c2c934 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/novaculite_relief_axe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/novaculite_relief_axe" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/novaculite_relief_blank.json b/src/main/resources/assets/mineralogy/items/novaculite_relief_blank.json new file mode 100644 index 000000000..74105717c --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/novaculite_relief_blank.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/novaculite_relief_blank" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/novaculite_relief_cross.json b/src/main/resources/assets/mineralogy/items/novaculite_relief_cross.json new file mode 100644 index 000000000..cb7e51d5c --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/novaculite_relief_cross.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/novaculite_relief_cross" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/novaculite_relief_hammer.json b/src/main/resources/assets/mineralogy/items/novaculite_relief_hammer.json new file mode 100644 index 000000000..ddd72fdc3 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/novaculite_relief_hammer.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/novaculite_relief_hammer" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/novaculite_relief_hoe.json b/src/main/resources/assets/mineralogy/items/novaculite_relief_hoe.json new file mode 100644 index 000000000..73349ac24 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/novaculite_relief_hoe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/novaculite_relief_hoe" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/novaculite_relief_horizontal.json b/src/main/resources/assets/mineralogy/items/novaculite_relief_horizontal.json new file mode 100644 index 000000000..b0957fb7d --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/novaculite_relief_horizontal.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/novaculite_relief_horizontal" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/novaculite_relief_i.json b/src/main/resources/assets/mineralogy/items/novaculite_relief_i.json new file mode 100644 index 000000000..509f07a4e --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/novaculite_relief_i.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/novaculite_relief_i" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/novaculite_relief_left.json b/src/main/resources/assets/mineralogy/items/novaculite_relief_left.json new file mode 100644 index 000000000..e065860a1 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/novaculite_relief_left.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/novaculite_relief_left" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/novaculite_relief_pickaxe.json b/src/main/resources/assets/mineralogy/items/novaculite_relief_pickaxe.json new file mode 100644 index 000000000..1c937ed6b --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/novaculite_relief_pickaxe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/novaculite_relief_pickaxe" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/novaculite_relief_plus.json b/src/main/resources/assets/mineralogy/items/novaculite_relief_plus.json new file mode 100644 index 000000000..d413bfd48 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/novaculite_relief_plus.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/novaculite_relief_plus" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/novaculite_relief_right.json b/src/main/resources/assets/mineralogy/items/novaculite_relief_right.json new file mode 100644 index 000000000..d2ebd1a0a --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/novaculite_relief_right.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/novaculite_relief_right" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/novaculite_relief_sword.json b/src/main/resources/assets/mineralogy/items/novaculite_relief_sword.json new file mode 100644 index 000000000..7718cde3f --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/novaculite_relief_sword.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/novaculite_relief_sword" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/novaculite_relief_vertical.json b/src/main/resources/assets/mineralogy/items/novaculite_relief_vertical.json new file mode 100644 index 000000000..7cdd58a1c --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/novaculite_relief_vertical.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/novaculite_relief_vertical" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/novaculite_slab.json b/src/main/resources/assets/mineralogy/items/novaculite_slab.json new file mode 100644 index 000000000..1f42f7672 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/novaculite_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/novaculite_slab" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/novaculite_smooth.json b/src/main/resources/assets/mineralogy/items/novaculite_smooth.json new file mode 100644 index 000000000..66a60a378 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/novaculite_smooth.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/novaculite_smooth" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/novaculite_smooth_brick.json b/src/main/resources/assets/mineralogy/items/novaculite_smooth_brick.json new file mode 100644 index 000000000..b8e0bf96f --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/novaculite_smooth_brick.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/novaculite_smooth_brick" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/novaculite_smooth_brick_furnace.json b/src/main/resources/assets/mineralogy/items/novaculite_smooth_brick_furnace.json new file mode 100644 index 000000000..d31b4f56b --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/novaculite_smooth_brick_furnace.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/novaculite_smooth_brick_furnace" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/novaculite_smooth_brick_slab.json b/src/main/resources/assets/mineralogy/items/novaculite_smooth_brick_slab.json new file mode 100644 index 000000000..c2b473f90 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/novaculite_smooth_brick_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/novaculite_smooth_brick_slab" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/novaculite_smooth_brick_stairs.json b/src/main/resources/assets/mineralogy/items/novaculite_smooth_brick_stairs.json new file mode 100644 index 000000000..ae2199681 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/novaculite_smooth_brick_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/novaculite_smooth_brick_stairs" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/novaculite_smooth_brick_wall.json b/src/main/resources/assets/mineralogy/items/novaculite_smooth_brick_wall.json new file mode 100644 index 000000000..5b8b94985 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/novaculite_smooth_brick_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/novaculite_smooth_brick_wall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/novaculite_smooth_furnace.json b/src/main/resources/assets/mineralogy/items/novaculite_smooth_furnace.json new file mode 100644 index 000000000..ac2ca545b --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/novaculite_smooth_furnace.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/novaculite_smooth_furnace" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/novaculite_smooth_slab.json b/src/main/resources/assets/mineralogy/items/novaculite_smooth_slab.json new file mode 100644 index 000000000..e257f1c8a --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/novaculite_smooth_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/novaculite_smooth_slab" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/novaculite_smooth_stairs.json b/src/main/resources/assets/mineralogy/items/novaculite_smooth_stairs.json new file mode 100644 index 000000000..3d7963d37 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/novaculite_smooth_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/novaculite_smooth_stairs" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/novaculite_smooth_wall.json b/src/main/resources/assets/mineralogy/items/novaculite_smooth_wall.json new file mode 100644 index 000000000..1dac3511d --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/novaculite_smooth_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/novaculite_smooth_wall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/novaculite_stairs.json b/src/main/resources/assets/mineralogy/items/novaculite_stairs.json new file mode 100644 index 000000000..ee12c9ed8 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/novaculite_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/novaculite_stairs" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/novaculite_wall.json b/src/main/resources/assets/mineralogy/items/novaculite_wall.json new file mode 100644 index 000000000..0c2c62d78 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/novaculite_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/novaculite_wall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/pegmatite.json b/src/main/resources/assets/mineralogy/items/pegmatite.json new file mode 100644 index 000000000..6d1e29950 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/pegmatite.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/pegmatite" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/pegmatite_brick.json b/src/main/resources/assets/mineralogy/items/pegmatite_brick.json new file mode 100644 index 000000000..c54c317fb --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/pegmatite_brick.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/pegmatite_brick" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/pegmatite_brick_furnace.json b/src/main/resources/assets/mineralogy/items/pegmatite_brick_furnace.json new file mode 100644 index 000000000..0db077c4f --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/pegmatite_brick_furnace.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/pegmatite_brick_furnace" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/pegmatite_brick_slab.json b/src/main/resources/assets/mineralogy/items/pegmatite_brick_slab.json new file mode 100644 index 000000000..b440e2b4f --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/pegmatite_brick_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/pegmatite_brick_slab" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/pegmatite_brick_stairs.json b/src/main/resources/assets/mineralogy/items/pegmatite_brick_stairs.json new file mode 100644 index 000000000..3acb03e97 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/pegmatite_brick_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/pegmatite_brick_stairs" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/pegmatite_brick_wall.json b/src/main/resources/assets/mineralogy/items/pegmatite_brick_wall.json new file mode 100644 index 000000000..dc01a9323 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/pegmatite_brick_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/pegmatite_brick_wall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/pegmatite_furnace.json b/src/main/resources/assets/mineralogy/items/pegmatite_furnace.json new file mode 100644 index 000000000..a911f6e61 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/pegmatite_furnace.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/pegmatite_furnace" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/pegmatite_relief_axe.json b/src/main/resources/assets/mineralogy/items/pegmatite_relief_axe.json new file mode 100644 index 000000000..87f0ed091 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/pegmatite_relief_axe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/pegmatite_relief_axe" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/pegmatite_relief_blank.json b/src/main/resources/assets/mineralogy/items/pegmatite_relief_blank.json new file mode 100644 index 000000000..c6dbd6ede --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/pegmatite_relief_blank.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/pegmatite_relief_blank" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/pegmatite_relief_cross.json b/src/main/resources/assets/mineralogy/items/pegmatite_relief_cross.json new file mode 100644 index 000000000..2fcc82e74 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/pegmatite_relief_cross.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/pegmatite_relief_cross" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/pegmatite_relief_hammer.json b/src/main/resources/assets/mineralogy/items/pegmatite_relief_hammer.json new file mode 100644 index 000000000..3877fe218 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/pegmatite_relief_hammer.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/pegmatite_relief_hammer" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/pegmatite_relief_hoe.json b/src/main/resources/assets/mineralogy/items/pegmatite_relief_hoe.json new file mode 100644 index 000000000..40a29273d --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/pegmatite_relief_hoe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/pegmatite_relief_hoe" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/pegmatite_relief_horizontal.json b/src/main/resources/assets/mineralogy/items/pegmatite_relief_horizontal.json new file mode 100644 index 000000000..30725112a --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/pegmatite_relief_horizontal.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/pegmatite_relief_horizontal" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/pegmatite_relief_i.json b/src/main/resources/assets/mineralogy/items/pegmatite_relief_i.json new file mode 100644 index 000000000..42b6adecf --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/pegmatite_relief_i.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/pegmatite_relief_i" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/pegmatite_relief_left.json b/src/main/resources/assets/mineralogy/items/pegmatite_relief_left.json new file mode 100644 index 000000000..a3b2d9855 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/pegmatite_relief_left.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/pegmatite_relief_left" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/pegmatite_relief_pickaxe.json b/src/main/resources/assets/mineralogy/items/pegmatite_relief_pickaxe.json new file mode 100644 index 000000000..06cef56d4 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/pegmatite_relief_pickaxe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/pegmatite_relief_pickaxe" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/pegmatite_relief_plus.json b/src/main/resources/assets/mineralogy/items/pegmatite_relief_plus.json new file mode 100644 index 000000000..7e0021cf9 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/pegmatite_relief_plus.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/pegmatite_relief_plus" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/pegmatite_relief_right.json b/src/main/resources/assets/mineralogy/items/pegmatite_relief_right.json new file mode 100644 index 000000000..a224a4b1a --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/pegmatite_relief_right.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/pegmatite_relief_right" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/pegmatite_relief_sword.json b/src/main/resources/assets/mineralogy/items/pegmatite_relief_sword.json new file mode 100644 index 000000000..2c30b9586 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/pegmatite_relief_sword.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/pegmatite_relief_sword" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/pegmatite_relief_vertical.json b/src/main/resources/assets/mineralogy/items/pegmatite_relief_vertical.json new file mode 100644 index 000000000..b192e894a --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/pegmatite_relief_vertical.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/pegmatite_relief_vertical" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/pegmatite_slab.json b/src/main/resources/assets/mineralogy/items/pegmatite_slab.json new file mode 100644 index 000000000..1ffd6d58d --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/pegmatite_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/pegmatite_slab" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/pegmatite_smooth.json b/src/main/resources/assets/mineralogy/items/pegmatite_smooth.json new file mode 100644 index 000000000..088782f47 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/pegmatite_smooth.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/pegmatite_smooth" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/pegmatite_smooth_brick.json b/src/main/resources/assets/mineralogy/items/pegmatite_smooth_brick.json new file mode 100644 index 000000000..c034ed0d1 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/pegmatite_smooth_brick.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/pegmatite_smooth_brick" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/pegmatite_smooth_brick_furnace.json b/src/main/resources/assets/mineralogy/items/pegmatite_smooth_brick_furnace.json new file mode 100644 index 000000000..bfaf98b3c --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/pegmatite_smooth_brick_furnace.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/pegmatite_smooth_brick_furnace" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/pegmatite_smooth_brick_slab.json b/src/main/resources/assets/mineralogy/items/pegmatite_smooth_brick_slab.json new file mode 100644 index 000000000..07e962a54 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/pegmatite_smooth_brick_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/pegmatite_smooth_brick_slab" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/pegmatite_smooth_brick_stairs.json b/src/main/resources/assets/mineralogy/items/pegmatite_smooth_brick_stairs.json new file mode 100644 index 000000000..23c01711d --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/pegmatite_smooth_brick_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/pegmatite_smooth_brick_stairs" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/pegmatite_smooth_brick_wall.json b/src/main/resources/assets/mineralogy/items/pegmatite_smooth_brick_wall.json new file mode 100644 index 000000000..7adfeaf7a --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/pegmatite_smooth_brick_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/pegmatite_smooth_brick_wall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/pegmatite_smooth_furnace.json b/src/main/resources/assets/mineralogy/items/pegmatite_smooth_furnace.json new file mode 100644 index 000000000..95c05607c --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/pegmatite_smooth_furnace.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/pegmatite_smooth_furnace" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/pegmatite_smooth_slab.json b/src/main/resources/assets/mineralogy/items/pegmatite_smooth_slab.json new file mode 100644 index 000000000..883f8445f --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/pegmatite_smooth_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/pegmatite_smooth_slab" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/pegmatite_smooth_stairs.json b/src/main/resources/assets/mineralogy/items/pegmatite_smooth_stairs.json new file mode 100644 index 000000000..39f7e408b --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/pegmatite_smooth_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/pegmatite_smooth_stairs" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/pegmatite_smooth_wall.json b/src/main/resources/assets/mineralogy/items/pegmatite_smooth_wall.json new file mode 100644 index 000000000..c5c7f5e90 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/pegmatite_smooth_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/pegmatite_smooth_wall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/pegmatite_stairs.json b/src/main/resources/assets/mineralogy/items/pegmatite_stairs.json new file mode 100644 index 000000000..dcb7e54b7 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/pegmatite_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/pegmatite_stairs" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/pegmatite_wall.json b/src/main/resources/assets/mineralogy/items/pegmatite_wall.json new file mode 100644 index 000000000..0aea4264d --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/pegmatite_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/pegmatite_wall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/peridotite.json b/src/main/resources/assets/mineralogy/items/peridotite.json new file mode 100644 index 000000000..a9efcf359 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/peridotite.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/peridotite" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/peridotite_brick.json b/src/main/resources/assets/mineralogy/items/peridotite_brick.json new file mode 100644 index 000000000..8fc789488 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/peridotite_brick.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/peridotite_brick" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/peridotite_brick_furnace.json b/src/main/resources/assets/mineralogy/items/peridotite_brick_furnace.json new file mode 100644 index 000000000..e0323c887 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/peridotite_brick_furnace.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/peridotite_brick_furnace" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/peridotite_brick_slab.json b/src/main/resources/assets/mineralogy/items/peridotite_brick_slab.json new file mode 100644 index 000000000..433f79d15 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/peridotite_brick_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/peridotite_brick_slab" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/peridotite_brick_stairs.json b/src/main/resources/assets/mineralogy/items/peridotite_brick_stairs.json new file mode 100644 index 000000000..ac331bcc1 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/peridotite_brick_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/peridotite_brick_stairs" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/peridotite_brick_wall.json b/src/main/resources/assets/mineralogy/items/peridotite_brick_wall.json new file mode 100644 index 000000000..38b628a67 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/peridotite_brick_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/peridotite_brick_wall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/peridotite_furnace.json b/src/main/resources/assets/mineralogy/items/peridotite_furnace.json new file mode 100644 index 000000000..52387a1c0 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/peridotite_furnace.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/peridotite_furnace" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/peridotite_relief_axe.json b/src/main/resources/assets/mineralogy/items/peridotite_relief_axe.json new file mode 100644 index 000000000..bcda9ef7e --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/peridotite_relief_axe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/peridotite_relief_axe" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/peridotite_relief_blank.json b/src/main/resources/assets/mineralogy/items/peridotite_relief_blank.json new file mode 100644 index 000000000..82a43b2a8 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/peridotite_relief_blank.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/peridotite_relief_blank" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/peridotite_relief_cross.json b/src/main/resources/assets/mineralogy/items/peridotite_relief_cross.json new file mode 100644 index 000000000..50f981d2c --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/peridotite_relief_cross.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/peridotite_relief_cross" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/peridotite_relief_hammer.json b/src/main/resources/assets/mineralogy/items/peridotite_relief_hammer.json new file mode 100644 index 000000000..db299bc65 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/peridotite_relief_hammer.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/peridotite_relief_hammer" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/peridotite_relief_hoe.json b/src/main/resources/assets/mineralogy/items/peridotite_relief_hoe.json new file mode 100644 index 000000000..97c400742 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/peridotite_relief_hoe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/peridotite_relief_hoe" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/peridotite_relief_horizontal.json b/src/main/resources/assets/mineralogy/items/peridotite_relief_horizontal.json new file mode 100644 index 000000000..213859dd6 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/peridotite_relief_horizontal.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/peridotite_relief_horizontal" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/peridotite_relief_i.json b/src/main/resources/assets/mineralogy/items/peridotite_relief_i.json new file mode 100644 index 000000000..400c4f1c7 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/peridotite_relief_i.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/peridotite_relief_i" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/peridotite_relief_left.json b/src/main/resources/assets/mineralogy/items/peridotite_relief_left.json new file mode 100644 index 000000000..f65797dbc --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/peridotite_relief_left.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/peridotite_relief_left" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/peridotite_relief_pickaxe.json b/src/main/resources/assets/mineralogy/items/peridotite_relief_pickaxe.json new file mode 100644 index 000000000..cd21a0571 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/peridotite_relief_pickaxe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/peridotite_relief_pickaxe" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/peridotite_relief_plus.json b/src/main/resources/assets/mineralogy/items/peridotite_relief_plus.json new file mode 100644 index 000000000..557cedbe6 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/peridotite_relief_plus.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/peridotite_relief_plus" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/peridotite_relief_right.json b/src/main/resources/assets/mineralogy/items/peridotite_relief_right.json new file mode 100644 index 000000000..c9a468173 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/peridotite_relief_right.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/peridotite_relief_right" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/peridotite_relief_sword.json b/src/main/resources/assets/mineralogy/items/peridotite_relief_sword.json new file mode 100644 index 000000000..662241f71 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/peridotite_relief_sword.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/peridotite_relief_sword" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/peridotite_relief_vertical.json b/src/main/resources/assets/mineralogy/items/peridotite_relief_vertical.json new file mode 100644 index 000000000..b57faef05 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/peridotite_relief_vertical.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/peridotite_relief_vertical" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/peridotite_slab.json b/src/main/resources/assets/mineralogy/items/peridotite_slab.json new file mode 100644 index 000000000..6450d5024 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/peridotite_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/peridotite_slab" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/peridotite_smooth.json b/src/main/resources/assets/mineralogy/items/peridotite_smooth.json new file mode 100644 index 000000000..df7a6ef74 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/peridotite_smooth.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/peridotite_smooth" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/peridotite_smooth_brick.json b/src/main/resources/assets/mineralogy/items/peridotite_smooth_brick.json new file mode 100644 index 000000000..6b36537de --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/peridotite_smooth_brick.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/peridotite_smooth_brick" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/peridotite_smooth_brick_furnace.json b/src/main/resources/assets/mineralogy/items/peridotite_smooth_brick_furnace.json new file mode 100644 index 000000000..30b49b85b --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/peridotite_smooth_brick_furnace.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/peridotite_smooth_brick_furnace" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/peridotite_smooth_brick_slab.json b/src/main/resources/assets/mineralogy/items/peridotite_smooth_brick_slab.json new file mode 100644 index 000000000..494ddf475 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/peridotite_smooth_brick_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/peridotite_smooth_brick_slab" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/peridotite_smooth_brick_stairs.json b/src/main/resources/assets/mineralogy/items/peridotite_smooth_brick_stairs.json new file mode 100644 index 000000000..ae8228c85 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/peridotite_smooth_brick_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/peridotite_smooth_brick_stairs" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/peridotite_smooth_brick_wall.json b/src/main/resources/assets/mineralogy/items/peridotite_smooth_brick_wall.json new file mode 100644 index 000000000..ee6813341 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/peridotite_smooth_brick_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/peridotite_smooth_brick_wall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/peridotite_smooth_furnace.json b/src/main/resources/assets/mineralogy/items/peridotite_smooth_furnace.json new file mode 100644 index 000000000..792ad24e1 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/peridotite_smooth_furnace.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/peridotite_smooth_furnace" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/peridotite_smooth_slab.json b/src/main/resources/assets/mineralogy/items/peridotite_smooth_slab.json new file mode 100644 index 000000000..bfc274913 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/peridotite_smooth_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/peridotite_smooth_slab" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/peridotite_smooth_stairs.json b/src/main/resources/assets/mineralogy/items/peridotite_smooth_stairs.json new file mode 100644 index 000000000..62f907463 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/peridotite_smooth_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/peridotite_smooth_stairs" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/peridotite_smooth_wall.json b/src/main/resources/assets/mineralogy/items/peridotite_smooth_wall.json new file mode 100644 index 000000000..f72876947 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/peridotite_smooth_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/peridotite_smooth_wall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/peridotite_stairs.json b/src/main/resources/assets/mineralogy/items/peridotite_stairs.json new file mode 100644 index 000000000..c0d80bf16 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/peridotite_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/peridotite_stairs" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/peridotite_wall.json b/src/main/resources/assets/mineralogy/items/peridotite_wall.json new file mode 100644 index 000000000..5af0cb271 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/peridotite_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/peridotite_wall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/phosphorous_block.json b/src/main/resources/assets/mineralogy/items/phosphorous_block.json new file mode 100644 index 000000000..f50cc34d8 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/phosphorous_block.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/phosphorous_block" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/phosphorous_dust.json b/src/main/resources/assets/mineralogy/items/phosphorous_dust.json new file mode 100644 index 000000000..d28bf0c39 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/phosphorous_dust.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/phosphorous_dust" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/phosphorous_ore.json b/src/main/resources/assets/mineralogy/items/phosphorous_ore.json new file mode 100644 index 000000000..ad8a06e1e --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/phosphorous_ore.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/phosphorous_ore" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/phyllite.json b/src/main/resources/assets/mineralogy/items/phyllite.json new file mode 100644 index 000000000..62b39ccc6 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/phyllite.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/phyllite" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/phyllite_brick.json b/src/main/resources/assets/mineralogy/items/phyllite_brick.json new file mode 100644 index 000000000..b535c2d72 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/phyllite_brick.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/phyllite_brick" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/phyllite_brick_furnace.json b/src/main/resources/assets/mineralogy/items/phyllite_brick_furnace.json new file mode 100644 index 000000000..b37392bd7 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/phyllite_brick_furnace.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/phyllite_brick_furnace" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/phyllite_brick_slab.json b/src/main/resources/assets/mineralogy/items/phyllite_brick_slab.json new file mode 100644 index 000000000..8040f0128 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/phyllite_brick_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/phyllite_brick_slab" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/phyllite_brick_stairs.json b/src/main/resources/assets/mineralogy/items/phyllite_brick_stairs.json new file mode 100644 index 000000000..65b97301c --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/phyllite_brick_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/phyllite_brick_stairs" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/phyllite_brick_wall.json b/src/main/resources/assets/mineralogy/items/phyllite_brick_wall.json new file mode 100644 index 000000000..ab523fec3 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/phyllite_brick_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/phyllite_brick_wall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/phyllite_furnace.json b/src/main/resources/assets/mineralogy/items/phyllite_furnace.json new file mode 100644 index 000000000..0557901e7 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/phyllite_furnace.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/phyllite_furnace" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/phyllite_relief_axe.json b/src/main/resources/assets/mineralogy/items/phyllite_relief_axe.json new file mode 100644 index 000000000..c598e1d0e --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/phyllite_relief_axe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/phyllite_relief_axe" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/phyllite_relief_blank.json b/src/main/resources/assets/mineralogy/items/phyllite_relief_blank.json new file mode 100644 index 000000000..46b8d986f --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/phyllite_relief_blank.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/phyllite_relief_blank" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/phyllite_relief_cross.json b/src/main/resources/assets/mineralogy/items/phyllite_relief_cross.json new file mode 100644 index 000000000..a1fcb0492 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/phyllite_relief_cross.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/phyllite_relief_cross" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/phyllite_relief_hammer.json b/src/main/resources/assets/mineralogy/items/phyllite_relief_hammer.json new file mode 100644 index 000000000..58d8a8cf7 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/phyllite_relief_hammer.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/phyllite_relief_hammer" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/phyllite_relief_hoe.json b/src/main/resources/assets/mineralogy/items/phyllite_relief_hoe.json new file mode 100644 index 000000000..fde178451 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/phyllite_relief_hoe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/phyllite_relief_hoe" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/phyllite_relief_horizontal.json b/src/main/resources/assets/mineralogy/items/phyllite_relief_horizontal.json new file mode 100644 index 000000000..cfa1db08c --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/phyllite_relief_horizontal.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/phyllite_relief_horizontal" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/phyllite_relief_i.json b/src/main/resources/assets/mineralogy/items/phyllite_relief_i.json new file mode 100644 index 000000000..4a3d26c82 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/phyllite_relief_i.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/phyllite_relief_i" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/phyllite_relief_left.json b/src/main/resources/assets/mineralogy/items/phyllite_relief_left.json new file mode 100644 index 000000000..773e41632 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/phyllite_relief_left.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/phyllite_relief_left" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/phyllite_relief_pickaxe.json b/src/main/resources/assets/mineralogy/items/phyllite_relief_pickaxe.json new file mode 100644 index 000000000..1c51c9887 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/phyllite_relief_pickaxe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/phyllite_relief_pickaxe" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/phyllite_relief_plus.json b/src/main/resources/assets/mineralogy/items/phyllite_relief_plus.json new file mode 100644 index 000000000..2b7a74879 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/phyllite_relief_plus.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/phyllite_relief_plus" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/phyllite_relief_right.json b/src/main/resources/assets/mineralogy/items/phyllite_relief_right.json new file mode 100644 index 000000000..a49691d5c --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/phyllite_relief_right.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/phyllite_relief_right" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/phyllite_relief_sword.json b/src/main/resources/assets/mineralogy/items/phyllite_relief_sword.json new file mode 100644 index 000000000..58ad0854a --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/phyllite_relief_sword.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/phyllite_relief_sword" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/phyllite_relief_vertical.json b/src/main/resources/assets/mineralogy/items/phyllite_relief_vertical.json new file mode 100644 index 000000000..757e1baef --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/phyllite_relief_vertical.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/phyllite_relief_vertical" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/phyllite_slab.json b/src/main/resources/assets/mineralogy/items/phyllite_slab.json new file mode 100644 index 000000000..4896ae9d2 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/phyllite_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/phyllite_slab" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/phyllite_smooth.json b/src/main/resources/assets/mineralogy/items/phyllite_smooth.json new file mode 100644 index 000000000..062d37356 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/phyllite_smooth.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/phyllite_smooth" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/phyllite_smooth_brick.json b/src/main/resources/assets/mineralogy/items/phyllite_smooth_brick.json new file mode 100644 index 000000000..09eb07e3b --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/phyllite_smooth_brick.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/phyllite_smooth_brick" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/phyllite_smooth_brick_furnace.json b/src/main/resources/assets/mineralogy/items/phyllite_smooth_brick_furnace.json new file mode 100644 index 000000000..1257e7640 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/phyllite_smooth_brick_furnace.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/phyllite_smooth_brick_furnace" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/phyllite_smooth_brick_slab.json b/src/main/resources/assets/mineralogy/items/phyllite_smooth_brick_slab.json new file mode 100644 index 000000000..7be2cade9 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/phyllite_smooth_brick_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/phyllite_smooth_brick_slab" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/phyllite_smooth_brick_stairs.json b/src/main/resources/assets/mineralogy/items/phyllite_smooth_brick_stairs.json new file mode 100644 index 000000000..e9f72b572 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/phyllite_smooth_brick_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/phyllite_smooth_brick_stairs" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/phyllite_smooth_brick_wall.json b/src/main/resources/assets/mineralogy/items/phyllite_smooth_brick_wall.json new file mode 100644 index 000000000..d39f014b4 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/phyllite_smooth_brick_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/phyllite_smooth_brick_wall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/phyllite_smooth_furnace.json b/src/main/resources/assets/mineralogy/items/phyllite_smooth_furnace.json new file mode 100644 index 000000000..f740020ef --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/phyllite_smooth_furnace.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/phyllite_smooth_furnace" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/phyllite_smooth_slab.json b/src/main/resources/assets/mineralogy/items/phyllite_smooth_slab.json new file mode 100644 index 000000000..7288a53e6 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/phyllite_smooth_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/phyllite_smooth_slab" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/phyllite_smooth_stairs.json b/src/main/resources/assets/mineralogy/items/phyllite_smooth_stairs.json new file mode 100644 index 000000000..38ace154f --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/phyllite_smooth_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/phyllite_smooth_stairs" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/phyllite_smooth_wall.json b/src/main/resources/assets/mineralogy/items/phyllite_smooth_wall.json new file mode 100644 index 000000000..487967798 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/phyllite_smooth_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/phyllite_smooth_wall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/phyllite_stairs.json b/src/main/resources/assets/mineralogy/items/phyllite_stairs.json new file mode 100644 index 000000000..b2bd37840 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/phyllite_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/phyllite_stairs" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/phyllite_wall.json b/src/main/resources/assets/mineralogy/items/phyllite_wall.json new file mode 100644 index 000000000..d8e7cc7b2 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/phyllite_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/phyllite_wall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/pumice.json b/src/main/resources/assets/mineralogy/items/pumice.json new file mode 100644 index 000000000..77ecb40f3 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/pumice.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/pumice" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/quartzite.json b/src/main/resources/assets/mineralogy/items/quartzite.json new file mode 100644 index 000000000..f92c015a5 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/quartzite.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/quartzite" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/quartzite_brick.json b/src/main/resources/assets/mineralogy/items/quartzite_brick.json new file mode 100644 index 000000000..c8cee8e5c --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/quartzite_brick.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/quartzite_brick" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/quartzite_brick_furnace.json b/src/main/resources/assets/mineralogy/items/quartzite_brick_furnace.json new file mode 100644 index 000000000..fb88ccf24 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/quartzite_brick_furnace.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/quartzite_brick_furnace" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/quartzite_brick_slab.json b/src/main/resources/assets/mineralogy/items/quartzite_brick_slab.json new file mode 100644 index 000000000..9c53c0af5 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/quartzite_brick_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/quartzite_brick_slab" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/quartzite_brick_stairs.json b/src/main/resources/assets/mineralogy/items/quartzite_brick_stairs.json new file mode 100644 index 000000000..d96198bba --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/quartzite_brick_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/quartzite_brick_stairs" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/quartzite_brick_wall.json b/src/main/resources/assets/mineralogy/items/quartzite_brick_wall.json new file mode 100644 index 000000000..317530cf2 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/quartzite_brick_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/quartzite_brick_wall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/quartzite_furnace.json b/src/main/resources/assets/mineralogy/items/quartzite_furnace.json new file mode 100644 index 000000000..cc28a8f9d --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/quartzite_furnace.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/quartzite_furnace" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/quartzite_relief_axe.json b/src/main/resources/assets/mineralogy/items/quartzite_relief_axe.json new file mode 100644 index 000000000..1d8c81c48 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/quartzite_relief_axe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/quartzite_relief_axe" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/quartzite_relief_blank.json b/src/main/resources/assets/mineralogy/items/quartzite_relief_blank.json new file mode 100644 index 000000000..d2f6a3dc1 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/quartzite_relief_blank.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/quartzite_relief_blank" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/quartzite_relief_cross.json b/src/main/resources/assets/mineralogy/items/quartzite_relief_cross.json new file mode 100644 index 000000000..962b81e12 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/quartzite_relief_cross.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/quartzite_relief_cross" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/quartzite_relief_hammer.json b/src/main/resources/assets/mineralogy/items/quartzite_relief_hammer.json new file mode 100644 index 000000000..56275cb82 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/quartzite_relief_hammer.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/quartzite_relief_hammer" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/quartzite_relief_hoe.json b/src/main/resources/assets/mineralogy/items/quartzite_relief_hoe.json new file mode 100644 index 000000000..8c0354715 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/quartzite_relief_hoe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/quartzite_relief_hoe" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/quartzite_relief_horizontal.json b/src/main/resources/assets/mineralogy/items/quartzite_relief_horizontal.json new file mode 100644 index 000000000..33216b1bf --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/quartzite_relief_horizontal.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/quartzite_relief_horizontal" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/quartzite_relief_i.json b/src/main/resources/assets/mineralogy/items/quartzite_relief_i.json new file mode 100644 index 000000000..4936969cb --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/quartzite_relief_i.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/quartzite_relief_i" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/quartzite_relief_left.json b/src/main/resources/assets/mineralogy/items/quartzite_relief_left.json new file mode 100644 index 000000000..1c12d5958 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/quartzite_relief_left.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/quartzite_relief_left" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/quartzite_relief_pickaxe.json b/src/main/resources/assets/mineralogy/items/quartzite_relief_pickaxe.json new file mode 100644 index 000000000..a96982203 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/quartzite_relief_pickaxe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/quartzite_relief_pickaxe" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/quartzite_relief_plus.json b/src/main/resources/assets/mineralogy/items/quartzite_relief_plus.json new file mode 100644 index 000000000..6b8380135 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/quartzite_relief_plus.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/quartzite_relief_plus" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/quartzite_relief_right.json b/src/main/resources/assets/mineralogy/items/quartzite_relief_right.json new file mode 100644 index 000000000..7204f58f0 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/quartzite_relief_right.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/quartzite_relief_right" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/quartzite_relief_sword.json b/src/main/resources/assets/mineralogy/items/quartzite_relief_sword.json new file mode 100644 index 000000000..f72b3ef2b --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/quartzite_relief_sword.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/quartzite_relief_sword" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/quartzite_relief_vertical.json b/src/main/resources/assets/mineralogy/items/quartzite_relief_vertical.json new file mode 100644 index 000000000..22f8e0e36 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/quartzite_relief_vertical.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/quartzite_relief_vertical" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/quartzite_slab.json b/src/main/resources/assets/mineralogy/items/quartzite_slab.json new file mode 100644 index 000000000..0dfffd714 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/quartzite_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/quartzite_slab" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/quartzite_smooth.json b/src/main/resources/assets/mineralogy/items/quartzite_smooth.json new file mode 100644 index 000000000..b0d801ee1 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/quartzite_smooth.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/quartzite_smooth" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/quartzite_smooth_brick.json b/src/main/resources/assets/mineralogy/items/quartzite_smooth_brick.json new file mode 100644 index 000000000..a0d71f277 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/quartzite_smooth_brick.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/quartzite_smooth_brick" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/quartzite_smooth_brick_furnace.json b/src/main/resources/assets/mineralogy/items/quartzite_smooth_brick_furnace.json new file mode 100644 index 000000000..55be4b9da --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/quartzite_smooth_brick_furnace.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/quartzite_smooth_brick_furnace" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/quartzite_smooth_brick_slab.json b/src/main/resources/assets/mineralogy/items/quartzite_smooth_brick_slab.json new file mode 100644 index 000000000..610f675f1 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/quartzite_smooth_brick_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/quartzite_smooth_brick_slab" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/quartzite_smooth_brick_stairs.json b/src/main/resources/assets/mineralogy/items/quartzite_smooth_brick_stairs.json new file mode 100644 index 000000000..781289f19 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/quartzite_smooth_brick_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/quartzite_smooth_brick_stairs" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/quartzite_smooth_brick_wall.json b/src/main/resources/assets/mineralogy/items/quartzite_smooth_brick_wall.json new file mode 100644 index 000000000..d55e34824 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/quartzite_smooth_brick_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/quartzite_smooth_brick_wall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/quartzite_smooth_furnace.json b/src/main/resources/assets/mineralogy/items/quartzite_smooth_furnace.json new file mode 100644 index 000000000..33f457688 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/quartzite_smooth_furnace.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/quartzite_smooth_furnace" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/quartzite_smooth_slab.json b/src/main/resources/assets/mineralogy/items/quartzite_smooth_slab.json new file mode 100644 index 000000000..bd05e9c2a --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/quartzite_smooth_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/quartzite_smooth_slab" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/quartzite_smooth_stairs.json b/src/main/resources/assets/mineralogy/items/quartzite_smooth_stairs.json new file mode 100644 index 000000000..0a283b9a4 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/quartzite_smooth_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/quartzite_smooth_stairs" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/quartzite_smooth_wall.json b/src/main/resources/assets/mineralogy/items/quartzite_smooth_wall.json new file mode 100644 index 000000000..b8dfef08a --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/quartzite_smooth_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/quartzite_smooth_wall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/quartzite_stairs.json b/src/main/resources/assets/mineralogy/items/quartzite_stairs.json new file mode 100644 index 000000000..1d347a0ce --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/quartzite_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/quartzite_stairs" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/quartzite_wall.json b/src/main/resources/assets/mineralogy/items/quartzite_wall.json new file mode 100644 index 000000000..560cf3fc4 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/quartzite_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/quartzite_wall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/rhyolite.json b/src/main/resources/assets/mineralogy/items/rhyolite.json new file mode 100644 index 000000000..bff4861b2 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/rhyolite.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/rhyolite" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/rhyolite_brick.json b/src/main/resources/assets/mineralogy/items/rhyolite_brick.json new file mode 100644 index 000000000..b1e323fb1 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/rhyolite_brick.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/rhyolite_brick" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/rhyolite_brick_furnace.json b/src/main/resources/assets/mineralogy/items/rhyolite_brick_furnace.json new file mode 100644 index 000000000..cc8435fd6 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/rhyolite_brick_furnace.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/rhyolite_brick_furnace" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/rhyolite_brick_slab.json b/src/main/resources/assets/mineralogy/items/rhyolite_brick_slab.json new file mode 100644 index 000000000..17283e239 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/rhyolite_brick_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/rhyolite_brick_slab" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/rhyolite_brick_stairs.json b/src/main/resources/assets/mineralogy/items/rhyolite_brick_stairs.json new file mode 100644 index 000000000..3865fa14c --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/rhyolite_brick_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/rhyolite_brick_stairs" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/rhyolite_brick_wall.json b/src/main/resources/assets/mineralogy/items/rhyolite_brick_wall.json new file mode 100644 index 000000000..5b30dbb18 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/rhyolite_brick_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/rhyolite_brick_wall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/rhyolite_furnace.json b/src/main/resources/assets/mineralogy/items/rhyolite_furnace.json new file mode 100644 index 000000000..78b0d9184 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/rhyolite_furnace.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/rhyolite_furnace" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/rhyolite_relief_axe.json b/src/main/resources/assets/mineralogy/items/rhyolite_relief_axe.json new file mode 100644 index 000000000..a4e9da046 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/rhyolite_relief_axe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/rhyolite_relief_axe" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/rhyolite_relief_blank.json b/src/main/resources/assets/mineralogy/items/rhyolite_relief_blank.json new file mode 100644 index 000000000..7984dd76c --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/rhyolite_relief_blank.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/rhyolite_relief_blank" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/rhyolite_relief_cross.json b/src/main/resources/assets/mineralogy/items/rhyolite_relief_cross.json new file mode 100644 index 000000000..f9747b8ce --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/rhyolite_relief_cross.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/rhyolite_relief_cross" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/rhyolite_relief_hammer.json b/src/main/resources/assets/mineralogy/items/rhyolite_relief_hammer.json new file mode 100644 index 000000000..4b3d62b4c --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/rhyolite_relief_hammer.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/rhyolite_relief_hammer" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/rhyolite_relief_hoe.json b/src/main/resources/assets/mineralogy/items/rhyolite_relief_hoe.json new file mode 100644 index 000000000..8f99f2947 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/rhyolite_relief_hoe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/rhyolite_relief_hoe" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/rhyolite_relief_horizontal.json b/src/main/resources/assets/mineralogy/items/rhyolite_relief_horizontal.json new file mode 100644 index 000000000..947e644c7 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/rhyolite_relief_horizontal.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/rhyolite_relief_horizontal" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/rhyolite_relief_i.json b/src/main/resources/assets/mineralogy/items/rhyolite_relief_i.json new file mode 100644 index 000000000..94be49362 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/rhyolite_relief_i.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/rhyolite_relief_i" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/rhyolite_relief_left.json b/src/main/resources/assets/mineralogy/items/rhyolite_relief_left.json new file mode 100644 index 000000000..ce9483abc --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/rhyolite_relief_left.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/rhyolite_relief_left" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/rhyolite_relief_pickaxe.json b/src/main/resources/assets/mineralogy/items/rhyolite_relief_pickaxe.json new file mode 100644 index 000000000..fefaa7efe --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/rhyolite_relief_pickaxe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/rhyolite_relief_pickaxe" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/rhyolite_relief_plus.json b/src/main/resources/assets/mineralogy/items/rhyolite_relief_plus.json new file mode 100644 index 000000000..999206c7d --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/rhyolite_relief_plus.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/rhyolite_relief_plus" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/rhyolite_relief_right.json b/src/main/resources/assets/mineralogy/items/rhyolite_relief_right.json new file mode 100644 index 000000000..0f2879cab --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/rhyolite_relief_right.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/rhyolite_relief_right" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/rhyolite_relief_sword.json b/src/main/resources/assets/mineralogy/items/rhyolite_relief_sword.json new file mode 100644 index 000000000..4f2827440 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/rhyolite_relief_sword.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/rhyolite_relief_sword" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/rhyolite_relief_vertical.json b/src/main/resources/assets/mineralogy/items/rhyolite_relief_vertical.json new file mode 100644 index 000000000..06c2287c8 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/rhyolite_relief_vertical.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/rhyolite_relief_vertical" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/rhyolite_slab.json b/src/main/resources/assets/mineralogy/items/rhyolite_slab.json new file mode 100644 index 000000000..fbe40101f --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/rhyolite_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/rhyolite_slab" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/rhyolite_smooth.json b/src/main/resources/assets/mineralogy/items/rhyolite_smooth.json new file mode 100644 index 000000000..d7e1e7d22 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/rhyolite_smooth.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/rhyolite_smooth" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/rhyolite_smooth_brick.json b/src/main/resources/assets/mineralogy/items/rhyolite_smooth_brick.json new file mode 100644 index 000000000..5f7be039c --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/rhyolite_smooth_brick.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/rhyolite_smooth_brick" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/rhyolite_smooth_brick_furnace.json b/src/main/resources/assets/mineralogy/items/rhyolite_smooth_brick_furnace.json new file mode 100644 index 000000000..4b2115cf1 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/rhyolite_smooth_brick_furnace.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/rhyolite_smooth_brick_furnace" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/rhyolite_smooth_brick_slab.json b/src/main/resources/assets/mineralogy/items/rhyolite_smooth_brick_slab.json new file mode 100644 index 000000000..c909c5c09 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/rhyolite_smooth_brick_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/rhyolite_smooth_brick_slab" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/rhyolite_smooth_brick_stairs.json b/src/main/resources/assets/mineralogy/items/rhyolite_smooth_brick_stairs.json new file mode 100644 index 000000000..16ab28668 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/rhyolite_smooth_brick_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/rhyolite_smooth_brick_stairs" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/rhyolite_smooth_brick_wall.json b/src/main/resources/assets/mineralogy/items/rhyolite_smooth_brick_wall.json new file mode 100644 index 000000000..d62457a06 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/rhyolite_smooth_brick_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/rhyolite_smooth_brick_wall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/rhyolite_smooth_furnace.json b/src/main/resources/assets/mineralogy/items/rhyolite_smooth_furnace.json new file mode 100644 index 000000000..c8cbc7094 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/rhyolite_smooth_furnace.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/rhyolite_smooth_furnace" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/rhyolite_smooth_slab.json b/src/main/resources/assets/mineralogy/items/rhyolite_smooth_slab.json new file mode 100644 index 000000000..b75d3cd15 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/rhyolite_smooth_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/rhyolite_smooth_slab" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/rhyolite_smooth_stairs.json b/src/main/resources/assets/mineralogy/items/rhyolite_smooth_stairs.json new file mode 100644 index 000000000..e53e83c36 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/rhyolite_smooth_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/rhyolite_smooth_stairs" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/rhyolite_smooth_wall.json b/src/main/resources/assets/mineralogy/items/rhyolite_smooth_wall.json new file mode 100644 index 000000000..110749381 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/rhyolite_smooth_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/rhyolite_smooth_wall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/rhyolite_stairs.json b/src/main/resources/assets/mineralogy/items/rhyolite_stairs.json new file mode 100644 index 000000000..db596e1fb --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/rhyolite_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/rhyolite_stairs" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/rhyolite_wall.json b/src/main/resources/assets/mineralogy/items/rhyolite_wall.json new file mode 100644 index 000000000..2fedb3418 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/rhyolite_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/rhyolite_wall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/rock_salt.json b/src/main/resources/assets/mineralogy/items/rock_salt.json new file mode 100644 index 000000000..5e1863b82 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/rock_salt.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/rock_salt" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/rock_salt_brick.json b/src/main/resources/assets/mineralogy/items/rock_salt_brick.json new file mode 100644 index 000000000..f78ce6803 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/rock_salt_brick.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/rock_salt_brick" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/rock_salt_brick_furnace.json b/src/main/resources/assets/mineralogy/items/rock_salt_brick_furnace.json new file mode 100644 index 000000000..4cd86bd98 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/rock_salt_brick_furnace.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/rock_salt_brick_furnace" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/rock_salt_brick_slab.json b/src/main/resources/assets/mineralogy/items/rock_salt_brick_slab.json new file mode 100644 index 000000000..322e0d5b0 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/rock_salt_brick_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/rock_salt_brick_slab" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/rock_salt_brick_stairs.json b/src/main/resources/assets/mineralogy/items/rock_salt_brick_stairs.json new file mode 100644 index 000000000..377ad522e --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/rock_salt_brick_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/rock_salt_brick_stairs" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/rock_salt_brick_wall.json b/src/main/resources/assets/mineralogy/items/rock_salt_brick_wall.json new file mode 100644 index 000000000..311b31246 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/rock_salt_brick_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/rock_salt_brick_wall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/rock_salt_dust.json b/src/main/resources/assets/mineralogy/items/rock_salt_dust.json new file mode 100644 index 000000000..a562ecf4c --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/rock_salt_dust.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/rock_salt_dust" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/rock_salt_furnace.json b/src/main/resources/assets/mineralogy/items/rock_salt_furnace.json new file mode 100644 index 000000000..394eba30c --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/rock_salt_furnace.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/rock_salt_furnace" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/rock_salt_relief_axe.json b/src/main/resources/assets/mineralogy/items/rock_salt_relief_axe.json new file mode 100644 index 000000000..207cb875d --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/rock_salt_relief_axe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/rock_salt_relief_axe" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/rock_salt_relief_blank.json b/src/main/resources/assets/mineralogy/items/rock_salt_relief_blank.json new file mode 100644 index 000000000..9b1c10993 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/rock_salt_relief_blank.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/rock_salt_relief_blank" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/rock_salt_relief_cross.json b/src/main/resources/assets/mineralogy/items/rock_salt_relief_cross.json new file mode 100644 index 000000000..eae40443c --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/rock_salt_relief_cross.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/rock_salt_relief_cross" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/rock_salt_relief_hammer.json b/src/main/resources/assets/mineralogy/items/rock_salt_relief_hammer.json new file mode 100644 index 000000000..3317e1a17 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/rock_salt_relief_hammer.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/rock_salt_relief_hammer" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/rock_salt_relief_hoe.json b/src/main/resources/assets/mineralogy/items/rock_salt_relief_hoe.json new file mode 100644 index 000000000..29ccc9187 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/rock_salt_relief_hoe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/rock_salt_relief_hoe" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/rock_salt_relief_horizontal.json b/src/main/resources/assets/mineralogy/items/rock_salt_relief_horizontal.json new file mode 100644 index 000000000..3bface868 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/rock_salt_relief_horizontal.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/rock_salt_relief_horizontal" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/rock_salt_relief_i.json b/src/main/resources/assets/mineralogy/items/rock_salt_relief_i.json new file mode 100644 index 000000000..4175f1286 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/rock_salt_relief_i.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/rock_salt_relief_i" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/rock_salt_relief_left.json b/src/main/resources/assets/mineralogy/items/rock_salt_relief_left.json new file mode 100644 index 000000000..625277f7a --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/rock_salt_relief_left.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/rock_salt_relief_left" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/rock_salt_relief_pickaxe.json b/src/main/resources/assets/mineralogy/items/rock_salt_relief_pickaxe.json new file mode 100644 index 000000000..2a8d56e7a --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/rock_salt_relief_pickaxe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/rock_salt_relief_pickaxe" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/rock_salt_relief_plus.json b/src/main/resources/assets/mineralogy/items/rock_salt_relief_plus.json new file mode 100644 index 000000000..1109b9c3a --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/rock_salt_relief_plus.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/rock_salt_relief_plus" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/rock_salt_relief_right.json b/src/main/resources/assets/mineralogy/items/rock_salt_relief_right.json new file mode 100644 index 000000000..9f6aca30e --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/rock_salt_relief_right.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/rock_salt_relief_right" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/rock_salt_relief_sword.json b/src/main/resources/assets/mineralogy/items/rock_salt_relief_sword.json new file mode 100644 index 000000000..f39fd481d --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/rock_salt_relief_sword.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/rock_salt_relief_sword" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/rock_salt_relief_vertical.json b/src/main/resources/assets/mineralogy/items/rock_salt_relief_vertical.json new file mode 100644 index 000000000..4385444da --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/rock_salt_relief_vertical.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/rock_salt_relief_vertical" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/rock_salt_slab.json b/src/main/resources/assets/mineralogy/items/rock_salt_slab.json new file mode 100644 index 000000000..2b8da003f --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/rock_salt_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/rock_salt_slab" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/rock_salt_smooth.json b/src/main/resources/assets/mineralogy/items/rock_salt_smooth.json new file mode 100644 index 000000000..0f1d9c3bb --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/rock_salt_smooth.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/rock_salt_smooth" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/rock_salt_smooth_brick.json b/src/main/resources/assets/mineralogy/items/rock_salt_smooth_brick.json new file mode 100644 index 000000000..7f227f099 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/rock_salt_smooth_brick.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/rock_salt_smooth_brick" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/rock_salt_smooth_brick_furnace.json b/src/main/resources/assets/mineralogy/items/rock_salt_smooth_brick_furnace.json new file mode 100644 index 000000000..fc9aa8e5d --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/rock_salt_smooth_brick_furnace.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/rock_salt_smooth_brick_furnace" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/rock_salt_smooth_brick_slab.json b/src/main/resources/assets/mineralogy/items/rock_salt_smooth_brick_slab.json new file mode 100644 index 000000000..82e32cb95 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/rock_salt_smooth_brick_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/rock_salt_smooth_brick_slab" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/rock_salt_smooth_brick_stairs.json b/src/main/resources/assets/mineralogy/items/rock_salt_smooth_brick_stairs.json new file mode 100644 index 000000000..1263d8203 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/rock_salt_smooth_brick_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/rock_salt_smooth_brick_stairs" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/rock_salt_smooth_brick_wall.json b/src/main/resources/assets/mineralogy/items/rock_salt_smooth_brick_wall.json new file mode 100644 index 000000000..69b8ba33e --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/rock_salt_smooth_brick_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/rock_salt_smooth_brick_wall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/rock_salt_smooth_furnace.json b/src/main/resources/assets/mineralogy/items/rock_salt_smooth_furnace.json new file mode 100644 index 000000000..087405931 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/rock_salt_smooth_furnace.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/rock_salt_smooth_furnace" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/rock_salt_smooth_slab.json b/src/main/resources/assets/mineralogy/items/rock_salt_smooth_slab.json new file mode 100644 index 000000000..f2572a2c5 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/rock_salt_smooth_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/rock_salt_smooth_slab" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/rock_salt_smooth_stairs.json b/src/main/resources/assets/mineralogy/items/rock_salt_smooth_stairs.json new file mode 100644 index 000000000..7b0494b73 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/rock_salt_smooth_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/rock_salt_smooth_stairs" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/rock_salt_smooth_wall.json b/src/main/resources/assets/mineralogy/items/rock_salt_smooth_wall.json new file mode 100644 index 000000000..3126fed6e --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/rock_salt_smooth_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/rock_salt_smooth_wall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/rock_salt_stairs.json b/src/main/resources/assets/mineralogy/items/rock_salt_stairs.json new file mode 100644 index 000000000..79d3487dd --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/rock_salt_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/rock_salt_stairs" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/rock_salt_wall.json b/src/main/resources/assets/mineralogy/items/rock_salt_wall.json new file mode 100644 index 000000000..e300284d2 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/rock_salt_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/rock_salt_wall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/rocksaltlamp.json b/src/main/resources/assets/mineralogy/items/rocksaltlamp.json new file mode 100644 index 000000000..1fab91255 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/rocksaltlamp.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/rocksaltlamp" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/rocksaltstreetlamp.json b/src/main/resources/assets/mineralogy/items/rocksaltstreetlamp.json new file mode 100644 index 000000000..b847898aa --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/rocksaltstreetlamp.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/rocksaltstreetlamp" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/salt_dust.json b/src/main/resources/assets/mineralogy/items/salt_dust.json new file mode 100644 index 000000000..885cc2ff3 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/salt_dust.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/salt_dust" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/schist.json b/src/main/resources/assets/mineralogy/items/schist.json new file mode 100644 index 000000000..fee6dfa16 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/schist.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/schist" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/schist_brick.json b/src/main/resources/assets/mineralogy/items/schist_brick.json new file mode 100644 index 000000000..d0da83680 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/schist_brick.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/schist_brick" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/schist_brick_furnace.json b/src/main/resources/assets/mineralogy/items/schist_brick_furnace.json new file mode 100644 index 000000000..832f3fbd7 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/schist_brick_furnace.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/schist_brick_furnace" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/schist_brick_slab.json b/src/main/resources/assets/mineralogy/items/schist_brick_slab.json new file mode 100644 index 000000000..cfebded06 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/schist_brick_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/schist_brick_slab" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/schist_brick_stairs.json b/src/main/resources/assets/mineralogy/items/schist_brick_stairs.json new file mode 100644 index 000000000..9cc5b73db --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/schist_brick_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/schist_brick_stairs" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/schist_brick_wall.json b/src/main/resources/assets/mineralogy/items/schist_brick_wall.json new file mode 100644 index 000000000..04e84a7d3 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/schist_brick_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/schist_brick_wall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/schist_furnace.json b/src/main/resources/assets/mineralogy/items/schist_furnace.json new file mode 100644 index 000000000..0a237f3c9 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/schist_furnace.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/schist_furnace" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/schist_relief_axe.json b/src/main/resources/assets/mineralogy/items/schist_relief_axe.json new file mode 100644 index 000000000..1ae81fe62 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/schist_relief_axe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/schist_relief_axe" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/schist_relief_blank.json b/src/main/resources/assets/mineralogy/items/schist_relief_blank.json new file mode 100644 index 000000000..f70391117 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/schist_relief_blank.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/schist_relief_blank" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/schist_relief_cross.json b/src/main/resources/assets/mineralogy/items/schist_relief_cross.json new file mode 100644 index 000000000..9f50fde6d --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/schist_relief_cross.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/schist_relief_cross" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/schist_relief_hammer.json b/src/main/resources/assets/mineralogy/items/schist_relief_hammer.json new file mode 100644 index 000000000..2c58b4efb --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/schist_relief_hammer.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/schist_relief_hammer" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/schist_relief_hoe.json b/src/main/resources/assets/mineralogy/items/schist_relief_hoe.json new file mode 100644 index 000000000..7acce77ab --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/schist_relief_hoe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/schist_relief_hoe" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/schist_relief_horizontal.json b/src/main/resources/assets/mineralogy/items/schist_relief_horizontal.json new file mode 100644 index 000000000..b79c50081 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/schist_relief_horizontal.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/schist_relief_horizontal" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/schist_relief_i.json b/src/main/resources/assets/mineralogy/items/schist_relief_i.json new file mode 100644 index 000000000..ed40754fd --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/schist_relief_i.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/schist_relief_i" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/schist_relief_left.json b/src/main/resources/assets/mineralogy/items/schist_relief_left.json new file mode 100644 index 000000000..04c18619a --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/schist_relief_left.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/schist_relief_left" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/schist_relief_pickaxe.json b/src/main/resources/assets/mineralogy/items/schist_relief_pickaxe.json new file mode 100644 index 000000000..446cd8d50 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/schist_relief_pickaxe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/schist_relief_pickaxe" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/schist_relief_plus.json b/src/main/resources/assets/mineralogy/items/schist_relief_plus.json new file mode 100644 index 000000000..9130778bd --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/schist_relief_plus.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/schist_relief_plus" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/schist_relief_right.json b/src/main/resources/assets/mineralogy/items/schist_relief_right.json new file mode 100644 index 000000000..5d3479ff8 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/schist_relief_right.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/schist_relief_right" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/schist_relief_sword.json b/src/main/resources/assets/mineralogy/items/schist_relief_sword.json new file mode 100644 index 000000000..e2b7eed58 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/schist_relief_sword.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/schist_relief_sword" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/schist_relief_vertical.json b/src/main/resources/assets/mineralogy/items/schist_relief_vertical.json new file mode 100644 index 000000000..0f1a50ed8 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/schist_relief_vertical.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/schist_relief_vertical" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/schist_slab.json b/src/main/resources/assets/mineralogy/items/schist_slab.json new file mode 100644 index 000000000..b291782e4 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/schist_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/schist_slab" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/schist_smooth.json b/src/main/resources/assets/mineralogy/items/schist_smooth.json new file mode 100644 index 000000000..16d423ef0 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/schist_smooth.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/schist_smooth" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/schist_smooth_brick.json b/src/main/resources/assets/mineralogy/items/schist_smooth_brick.json new file mode 100644 index 000000000..483505331 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/schist_smooth_brick.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/schist_smooth_brick" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/schist_smooth_brick_furnace.json b/src/main/resources/assets/mineralogy/items/schist_smooth_brick_furnace.json new file mode 100644 index 000000000..370b1ce7b --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/schist_smooth_brick_furnace.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/schist_smooth_brick_furnace" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/schist_smooth_brick_slab.json b/src/main/resources/assets/mineralogy/items/schist_smooth_brick_slab.json new file mode 100644 index 000000000..1a586d555 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/schist_smooth_brick_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/schist_smooth_brick_slab" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/schist_smooth_brick_stairs.json b/src/main/resources/assets/mineralogy/items/schist_smooth_brick_stairs.json new file mode 100644 index 000000000..3902d22ea --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/schist_smooth_brick_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/schist_smooth_brick_stairs" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/schist_smooth_brick_wall.json b/src/main/resources/assets/mineralogy/items/schist_smooth_brick_wall.json new file mode 100644 index 000000000..e00de9514 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/schist_smooth_brick_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/schist_smooth_brick_wall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/schist_smooth_furnace.json b/src/main/resources/assets/mineralogy/items/schist_smooth_furnace.json new file mode 100644 index 000000000..0d4e3dc60 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/schist_smooth_furnace.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/schist_smooth_furnace" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/schist_smooth_slab.json b/src/main/resources/assets/mineralogy/items/schist_smooth_slab.json new file mode 100644 index 000000000..6e5f51520 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/schist_smooth_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/schist_smooth_slab" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/schist_smooth_stairs.json b/src/main/resources/assets/mineralogy/items/schist_smooth_stairs.json new file mode 100644 index 000000000..3c455bbaa --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/schist_smooth_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/schist_smooth_stairs" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/schist_smooth_wall.json b/src/main/resources/assets/mineralogy/items/schist_smooth_wall.json new file mode 100644 index 000000000..cfcc54f54 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/schist_smooth_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/schist_smooth_wall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/schist_stairs.json b/src/main/resources/assets/mineralogy/items/schist_stairs.json new file mode 100644 index 000000000..4605ef25d --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/schist_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/schist_stairs" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/schist_wall.json b/src/main/resources/assets/mineralogy/items/schist_wall.json new file mode 100644 index 000000000..a2ecf8038 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/schist_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/schist_wall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/scoria.json b/src/main/resources/assets/mineralogy/items/scoria.json new file mode 100644 index 000000000..4501a970c --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/scoria.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/scoria" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/scoria_brick.json b/src/main/resources/assets/mineralogy/items/scoria_brick.json new file mode 100644 index 000000000..860d70445 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/scoria_brick.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/scoria_brick" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/scoria_brick_furnace.json b/src/main/resources/assets/mineralogy/items/scoria_brick_furnace.json new file mode 100644 index 000000000..c26029be2 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/scoria_brick_furnace.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/scoria_brick_furnace" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/scoria_brick_slab.json b/src/main/resources/assets/mineralogy/items/scoria_brick_slab.json new file mode 100644 index 000000000..9056731b5 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/scoria_brick_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/scoria_brick_slab" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/scoria_brick_stairs.json b/src/main/resources/assets/mineralogy/items/scoria_brick_stairs.json new file mode 100644 index 000000000..4248e38ff --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/scoria_brick_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/scoria_brick_stairs" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/scoria_brick_wall.json b/src/main/resources/assets/mineralogy/items/scoria_brick_wall.json new file mode 100644 index 000000000..f34e94222 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/scoria_brick_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/scoria_brick_wall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/scoria_furnace.json b/src/main/resources/assets/mineralogy/items/scoria_furnace.json new file mode 100644 index 000000000..c548cc94a --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/scoria_furnace.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/scoria_furnace" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/scoria_relief_axe.json b/src/main/resources/assets/mineralogy/items/scoria_relief_axe.json new file mode 100644 index 000000000..302df232a --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/scoria_relief_axe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/scoria_relief_axe" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/scoria_relief_blank.json b/src/main/resources/assets/mineralogy/items/scoria_relief_blank.json new file mode 100644 index 000000000..7a118446f --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/scoria_relief_blank.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/scoria_relief_blank" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/scoria_relief_cross.json b/src/main/resources/assets/mineralogy/items/scoria_relief_cross.json new file mode 100644 index 000000000..6c5456c36 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/scoria_relief_cross.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/scoria_relief_cross" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/scoria_relief_hammer.json b/src/main/resources/assets/mineralogy/items/scoria_relief_hammer.json new file mode 100644 index 000000000..55e5607d5 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/scoria_relief_hammer.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/scoria_relief_hammer" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/scoria_relief_hoe.json b/src/main/resources/assets/mineralogy/items/scoria_relief_hoe.json new file mode 100644 index 000000000..2a6dd1031 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/scoria_relief_hoe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/scoria_relief_hoe" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/scoria_relief_horizontal.json b/src/main/resources/assets/mineralogy/items/scoria_relief_horizontal.json new file mode 100644 index 000000000..c345f968e --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/scoria_relief_horizontal.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/scoria_relief_horizontal" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/scoria_relief_i.json b/src/main/resources/assets/mineralogy/items/scoria_relief_i.json new file mode 100644 index 000000000..a45d6b6a4 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/scoria_relief_i.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/scoria_relief_i" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/scoria_relief_left.json b/src/main/resources/assets/mineralogy/items/scoria_relief_left.json new file mode 100644 index 000000000..c22298dcd --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/scoria_relief_left.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/scoria_relief_left" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/scoria_relief_pickaxe.json b/src/main/resources/assets/mineralogy/items/scoria_relief_pickaxe.json new file mode 100644 index 000000000..e325daefd --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/scoria_relief_pickaxe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/scoria_relief_pickaxe" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/scoria_relief_plus.json b/src/main/resources/assets/mineralogy/items/scoria_relief_plus.json new file mode 100644 index 000000000..c69bf2091 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/scoria_relief_plus.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/scoria_relief_plus" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/scoria_relief_right.json b/src/main/resources/assets/mineralogy/items/scoria_relief_right.json new file mode 100644 index 000000000..4d70fe21b --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/scoria_relief_right.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/scoria_relief_right" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/scoria_relief_sword.json b/src/main/resources/assets/mineralogy/items/scoria_relief_sword.json new file mode 100644 index 000000000..a6dd823b0 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/scoria_relief_sword.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/scoria_relief_sword" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/scoria_relief_vertical.json b/src/main/resources/assets/mineralogy/items/scoria_relief_vertical.json new file mode 100644 index 000000000..b21a001e4 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/scoria_relief_vertical.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/scoria_relief_vertical" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/scoria_slab.json b/src/main/resources/assets/mineralogy/items/scoria_slab.json new file mode 100644 index 000000000..9cb1695c0 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/scoria_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/scoria_slab" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/scoria_smooth.json b/src/main/resources/assets/mineralogy/items/scoria_smooth.json new file mode 100644 index 000000000..36ed9f2c8 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/scoria_smooth.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/scoria_smooth" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/scoria_smooth_brick.json b/src/main/resources/assets/mineralogy/items/scoria_smooth_brick.json new file mode 100644 index 000000000..3feac4d87 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/scoria_smooth_brick.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/scoria_smooth_brick" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/scoria_smooth_brick_furnace.json b/src/main/resources/assets/mineralogy/items/scoria_smooth_brick_furnace.json new file mode 100644 index 000000000..57709e9ca --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/scoria_smooth_brick_furnace.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/scoria_smooth_brick_furnace" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/scoria_smooth_brick_slab.json b/src/main/resources/assets/mineralogy/items/scoria_smooth_brick_slab.json new file mode 100644 index 000000000..a4a2cca47 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/scoria_smooth_brick_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/scoria_smooth_brick_slab" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/scoria_smooth_brick_stairs.json b/src/main/resources/assets/mineralogy/items/scoria_smooth_brick_stairs.json new file mode 100644 index 000000000..e2d221604 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/scoria_smooth_brick_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/scoria_smooth_brick_stairs" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/scoria_smooth_brick_wall.json b/src/main/resources/assets/mineralogy/items/scoria_smooth_brick_wall.json new file mode 100644 index 000000000..df3127ea9 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/scoria_smooth_brick_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/scoria_smooth_brick_wall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/scoria_smooth_furnace.json b/src/main/resources/assets/mineralogy/items/scoria_smooth_furnace.json new file mode 100644 index 000000000..5c0552d82 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/scoria_smooth_furnace.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/scoria_smooth_furnace" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/scoria_smooth_slab.json b/src/main/resources/assets/mineralogy/items/scoria_smooth_slab.json new file mode 100644 index 000000000..cbabcbc7d --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/scoria_smooth_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/scoria_smooth_slab" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/scoria_smooth_stairs.json b/src/main/resources/assets/mineralogy/items/scoria_smooth_stairs.json new file mode 100644 index 000000000..f06cd748c --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/scoria_smooth_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/scoria_smooth_stairs" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/scoria_smooth_wall.json b/src/main/resources/assets/mineralogy/items/scoria_smooth_wall.json new file mode 100644 index 000000000..a262f0afe --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/scoria_smooth_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/scoria_smooth_wall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/scoria_stairs.json b/src/main/resources/assets/mineralogy/items/scoria_stairs.json new file mode 100644 index 000000000..642e9b7a6 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/scoria_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/scoria_stairs" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/scoria_wall.json b/src/main/resources/assets/mineralogy/items/scoria_wall.json new file mode 100644 index 000000000..041993d2c --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/scoria_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/scoria_wall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/shale.json b/src/main/resources/assets/mineralogy/items/shale.json new file mode 100644 index 000000000..2e9172c4a --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/shale.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/shale" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/shale_brick.json b/src/main/resources/assets/mineralogy/items/shale_brick.json new file mode 100644 index 000000000..a36164fe9 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/shale_brick.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/shale_brick" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/shale_brick_furnace.json b/src/main/resources/assets/mineralogy/items/shale_brick_furnace.json new file mode 100644 index 000000000..18195939d --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/shale_brick_furnace.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/shale_brick_furnace" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/shale_brick_slab.json b/src/main/resources/assets/mineralogy/items/shale_brick_slab.json new file mode 100644 index 000000000..2c86c520d --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/shale_brick_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/shale_brick_slab" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/shale_brick_stairs.json b/src/main/resources/assets/mineralogy/items/shale_brick_stairs.json new file mode 100644 index 000000000..49fc97d2d --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/shale_brick_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/shale_brick_stairs" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/shale_brick_wall.json b/src/main/resources/assets/mineralogy/items/shale_brick_wall.json new file mode 100644 index 000000000..3be39e1e3 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/shale_brick_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/shale_brick_wall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/shale_furnace.json b/src/main/resources/assets/mineralogy/items/shale_furnace.json new file mode 100644 index 000000000..335c1acf9 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/shale_furnace.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/shale_furnace" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/shale_relief_axe.json b/src/main/resources/assets/mineralogy/items/shale_relief_axe.json new file mode 100644 index 000000000..adda86f0f --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/shale_relief_axe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/shale_relief_axe" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/shale_relief_blank.json b/src/main/resources/assets/mineralogy/items/shale_relief_blank.json new file mode 100644 index 000000000..b915359b4 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/shale_relief_blank.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/shale_relief_blank" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/shale_relief_cross.json b/src/main/resources/assets/mineralogy/items/shale_relief_cross.json new file mode 100644 index 000000000..28bf64176 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/shale_relief_cross.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/shale_relief_cross" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/shale_relief_hammer.json b/src/main/resources/assets/mineralogy/items/shale_relief_hammer.json new file mode 100644 index 000000000..44a85d432 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/shale_relief_hammer.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/shale_relief_hammer" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/shale_relief_hoe.json b/src/main/resources/assets/mineralogy/items/shale_relief_hoe.json new file mode 100644 index 000000000..fc456eaf7 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/shale_relief_hoe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/shale_relief_hoe" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/shale_relief_horizontal.json b/src/main/resources/assets/mineralogy/items/shale_relief_horizontal.json new file mode 100644 index 000000000..e6d90a3fa --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/shale_relief_horizontal.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/shale_relief_horizontal" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/shale_relief_i.json b/src/main/resources/assets/mineralogy/items/shale_relief_i.json new file mode 100644 index 000000000..0044005ac --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/shale_relief_i.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/shale_relief_i" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/shale_relief_left.json b/src/main/resources/assets/mineralogy/items/shale_relief_left.json new file mode 100644 index 000000000..a5e7be6c2 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/shale_relief_left.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/shale_relief_left" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/shale_relief_pickaxe.json b/src/main/resources/assets/mineralogy/items/shale_relief_pickaxe.json new file mode 100644 index 000000000..88fc02979 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/shale_relief_pickaxe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/shale_relief_pickaxe" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/shale_relief_plus.json b/src/main/resources/assets/mineralogy/items/shale_relief_plus.json new file mode 100644 index 000000000..bf17fc024 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/shale_relief_plus.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/shale_relief_plus" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/shale_relief_right.json b/src/main/resources/assets/mineralogy/items/shale_relief_right.json new file mode 100644 index 000000000..575d53bcf --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/shale_relief_right.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/shale_relief_right" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/shale_relief_sword.json b/src/main/resources/assets/mineralogy/items/shale_relief_sword.json new file mode 100644 index 000000000..680de8b21 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/shale_relief_sword.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/shale_relief_sword" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/shale_relief_vertical.json b/src/main/resources/assets/mineralogy/items/shale_relief_vertical.json new file mode 100644 index 000000000..7b7f851d1 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/shale_relief_vertical.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/shale_relief_vertical" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/shale_slab.json b/src/main/resources/assets/mineralogy/items/shale_slab.json new file mode 100644 index 000000000..a4ded04c9 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/shale_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/shale_slab" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/shale_smooth.json b/src/main/resources/assets/mineralogy/items/shale_smooth.json new file mode 100644 index 000000000..e062aa8e8 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/shale_smooth.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/shale_smooth" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/shale_smooth_brick.json b/src/main/resources/assets/mineralogy/items/shale_smooth_brick.json new file mode 100644 index 000000000..09aea793e --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/shale_smooth_brick.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/shale_smooth_brick" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/shale_smooth_brick_furnace.json b/src/main/resources/assets/mineralogy/items/shale_smooth_brick_furnace.json new file mode 100644 index 000000000..e96d21336 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/shale_smooth_brick_furnace.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/shale_smooth_brick_furnace" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/shale_smooth_brick_slab.json b/src/main/resources/assets/mineralogy/items/shale_smooth_brick_slab.json new file mode 100644 index 000000000..5d0d11389 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/shale_smooth_brick_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/shale_smooth_brick_slab" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/shale_smooth_brick_stairs.json b/src/main/resources/assets/mineralogy/items/shale_smooth_brick_stairs.json new file mode 100644 index 000000000..73e8f79b4 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/shale_smooth_brick_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/shale_smooth_brick_stairs" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/shale_smooth_brick_wall.json b/src/main/resources/assets/mineralogy/items/shale_smooth_brick_wall.json new file mode 100644 index 000000000..e8d82dbd0 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/shale_smooth_brick_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/shale_smooth_brick_wall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/shale_smooth_furnace.json b/src/main/resources/assets/mineralogy/items/shale_smooth_furnace.json new file mode 100644 index 000000000..76a8921ce --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/shale_smooth_furnace.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/shale_smooth_furnace" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/shale_smooth_slab.json b/src/main/resources/assets/mineralogy/items/shale_smooth_slab.json new file mode 100644 index 000000000..a8f3b0b39 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/shale_smooth_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/shale_smooth_slab" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/shale_smooth_stairs.json b/src/main/resources/assets/mineralogy/items/shale_smooth_stairs.json new file mode 100644 index 000000000..e50e2fc58 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/shale_smooth_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/shale_smooth_stairs" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/shale_smooth_wall.json b/src/main/resources/assets/mineralogy/items/shale_smooth_wall.json new file mode 100644 index 000000000..0d0fd2d7a --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/shale_smooth_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/shale_smooth_wall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/shale_stairs.json b/src/main/resources/assets/mineralogy/items/shale_stairs.json new file mode 100644 index 000000000..1d7a14943 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/shale_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/shale_stairs" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/shale_wall.json b/src/main/resources/assets/mineralogy/items/shale_wall.json new file mode 100644 index 000000000..dc2b215e2 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/shale_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/shale_wall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/siltstone.json b/src/main/resources/assets/mineralogy/items/siltstone.json new file mode 100644 index 000000000..51d9ff70a --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/siltstone.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/siltstone" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/siltstone_brick.json b/src/main/resources/assets/mineralogy/items/siltstone_brick.json new file mode 100644 index 000000000..77c565b88 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/siltstone_brick.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/siltstone_brick" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/siltstone_brick_furnace.json b/src/main/resources/assets/mineralogy/items/siltstone_brick_furnace.json new file mode 100644 index 000000000..dc5c2a450 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/siltstone_brick_furnace.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/siltstone_brick_furnace" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/siltstone_brick_slab.json b/src/main/resources/assets/mineralogy/items/siltstone_brick_slab.json new file mode 100644 index 000000000..d8e87b186 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/siltstone_brick_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/siltstone_brick_slab" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/siltstone_brick_stairs.json b/src/main/resources/assets/mineralogy/items/siltstone_brick_stairs.json new file mode 100644 index 000000000..5ccb6f8bb --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/siltstone_brick_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/siltstone_brick_stairs" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/siltstone_brick_wall.json b/src/main/resources/assets/mineralogy/items/siltstone_brick_wall.json new file mode 100644 index 000000000..bcd5ef76b --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/siltstone_brick_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/siltstone_brick_wall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/siltstone_furnace.json b/src/main/resources/assets/mineralogy/items/siltstone_furnace.json new file mode 100644 index 000000000..550ee3e28 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/siltstone_furnace.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/siltstone_furnace" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/siltstone_relief_axe.json b/src/main/resources/assets/mineralogy/items/siltstone_relief_axe.json new file mode 100644 index 000000000..9528e212b --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/siltstone_relief_axe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/siltstone_relief_axe" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/siltstone_relief_blank.json b/src/main/resources/assets/mineralogy/items/siltstone_relief_blank.json new file mode 100644 index 000000000..730e5649f --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/siltstone_relief_blank.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/siltstone_relief_blank" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/siltstone_relief_cross.json b/src/main/resources/assets/mineralogy/items/siltstone_relief_cross.json new file mode 100644 index 000000000..555add491 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/siltstone_relief_cross.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/siltstone_relief_cross" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/siltstone_relief_hammer.json b/src/main/resources/assets/mineralogy/items/siltstone_relief_hammer.json new file mode 100644 index 000000000..4d43061fe --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/siltstone_relief_hammer.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/siltstone_relief_hammer" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/siltstone_relief_hoe.json b/src/main/resources/assets/mineralogy/items/siltstone_relief_hoe.json new file mode 100644 index 000000000..98ad534b5 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/siltstone_relief_hoe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/siltstone_relief_hoe" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/siltstone_relief_horizontal.json b/src/main/resources/assets/mineralogy/items/siltstone_relief_horizontal.json new file mode 100644 index 000000000..193183f85 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/siltstone_relief_horizontal.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/siltstone_relief_horizontal" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/siltstone_relief_i.json b/src/main/resources/assets/mineralogy/items/siltstone_relief_i.json new file mode 100644 index 000000000..84095ba01 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/siltstone_relief_i.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/siltstone_relief_i" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/siltstone_relief_left.json b/src/main/resources/assets/mineralogy/items/siltstone_relief_left.json new file mode 100644 index 000000000..fe3546d17 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/siltstone_relief_left.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/siltstone_relief_left" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/siltstone_relief_pickaxe.json b/src/main/resources/assets/mineralogy/items/siltstone_relief_pickaxe.json new file mode 100644 index 000000000..96c64db5a --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/siltstone_relief_pickaxe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/siltstone_relief_pickaxe" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/siltstone_relief_plus.json b/src/main/resources/assets/mineralogy/items/siltstone_relief_plus.json new file mode 100644 index 000000000..67e53a65f --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/siltstone_relief_plus.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/siltstone_relief_plus" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/siltstone_relief_right.json b/src/main/resources/assets/mineralogy/items/siltstone_relief_right.json new file mode 100644 index 000000000..bcfd23aad --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/siltstone_relief_right.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/siltstone_relief_right" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/siltstone_relief_sword.json b/src/main/resources/assets/mineralogy/items/siltstone_relief_sword.json new file mode 100644 index 000000000..8dcd55e3c --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/siltstone_relief_sword.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/siltstone_relief_sword" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/siltstone_relief_vertical.json b/src/main/resources/assets/mineralogy/items/siltstone_relief_vertical.json new file mode 100644 index 000000000..03856ef96 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/siltstone_relief_vertical.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/siltstone_relief_vertical" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/siltstone_slab.json b/src/main/resources/assets/mineralogy/items/siltstone_slab.json new file mode 100644 index 000000000..f9249a74f --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/siltstone_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/siltstone_slab" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/siltstone_smooth.json b/src/main/resources/assets/mineralogy/items/siltstone_smooth.json new file mode 100644 index 000000000..a051727d4 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/siltstone_smooth.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/siltstone_smooth" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/siltstone_smooth_brick.json b/src/main/resources/assets/mineralogy/items/siltstone_smooth_brick.json new file mode 100644 index 000000000..99c5525cb --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/siltstone_smooth_brick.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/siltstone_smooth_brick" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/siltstone_smooth_brick_furnace.json b/src/main/resources/assets/mineralogy/items/siltstone_smooth_brick_furnace.json new file mode 100644 index 000000000..d0e141f96 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/siltstone_smooth_brick_furnace.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/siltstone_smooth_brick_furnace" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/siltstone_smooth_brick_slab.json b/src/main/resources/assets/mineralogy/items/siltstone_smooth_brick_slab.json new file mode 100644 index 000000000..421a2101f --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/siltstone_smooth_brick_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/siltstone_smooth_brick_slab" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/siltstone_smooth_brick_stairs.json b/src/main/resources/assets/mineralogy/items/siltstone_smooth_brick_stairs.json new file mode 100644 index 000000000..ed3a1ba18 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/siltstone_smooth_brick_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/siltstone_smooth_brick_stairs" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/siltstone_smooth_brick_wall.json b/src/main/resources/assets/mineralogy/items/siltstone_smooth_brick_wall.json new file mode 100644 index 000000000..0fbf357e1 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/siltstone_smooth_brick_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/siltstone_smooth_brick_wall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/siltstone_smooth_furnace.json b/src/main/resources/assets/mineralogy/items/siltstone_smooth_furnace.json new file mode 100644 index 000000000..d72a20067 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/siltstone_smooth_furnace.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/siltstone_smooth_furnace" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/siltstone_smooth_slab.json b/src/main/resources/assets/mineralogy/items/siltstone_smooth_slab.json new file mode 100644 index 000000000..8e755d67e --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/siltstone_smooth_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/siltstone_smooth_slab" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/siltstone_smooth_stairs.json b/src/main/resources/assets/mineralogy/items/siltstone_smooth_stairs.json new file mode 100644 index 000000000..e718ca09f --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/siltstone_smooth_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/siltstone_smooth_stairs" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/siltstone_smooth_wall.json b/src/main/resources/assets/mineralogy/items/siltstone_smooth_wall.json new file mode 100644 index 000000000..7ea908e03 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/siltstone_smooth_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/siltstone_smooth_wall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/siltstone_stairs.json b/src/main/resources/assets/mineralogy/items/siltstone_stairs.json new file mode 100644 index 000000000..b07ce317e --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/siltstone_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/siltstone_stairs" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/siltstone_wall.json b/src/main/resources/assets/mineralogy/items/siltstone_wall.json new file mode 100644 index 000000000..93d9c9e9d --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/siltstone_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/siltstone_wall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/slate.json b/src/main/resources/assets/mineralogy/items/slate.json new file mode 100644 index 000000000..ce3bc6c63 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/slate.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/slate" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/slate_brick.json b/src/main/resources/assets/mineralogy/items/slate_brick.json new file mode 100644 index 000000000..d0d7546d6 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/slate_brick.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/slate_brick" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/slate_brick_furnace.json b/src/main/resources/assets/mineralogy/items/slate_brick_furnace.json new file mode 100644 index 000000000..c0234ee51 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/slate_brick_furnace.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/slate_brick_furnace" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/slate_brick_slab.json b/src/main/resources/assets/mineralogy/items/slate_brick_slab.json new file mode 100644 index 000000000..2a104c67c --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/slate_brick_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/slate_brick_slab" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/slate_brick_stairs.json b/src/main/resources/assets/mineralogy/items/slate_brick_stairs.json new file mode 100644 index 000000000..41b5d6ccb --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/slate_brick_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/slate_brick_stairs" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/slate_brick_wall.json b/src/main/resources/assets/mineralogy/items/slate_brick_wall.json new file mode 100644 index 000000000..02b0abad8 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/slate_brick_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/slate_brick_wall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/slate_furnace.json b/src/main/resources/assets/mineralogy/items/slate_furnace.json new file mode 100644 index 000000000..8d02bf85c --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/slate_furnace.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/slate_furnace" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/slate_relief_axe.json b/src/main/resources/assets/mineralogy/items/slate_relief_axe.json new file mode 100644 index 000000000..f4ef17417 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/slate_relief_axe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/slate_relief_axe" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/slate_relief_blank.json b/src/main/resources/assets/mineralogy/items/slate_relief_blank.json new file mode 100644 index 000000000..9847737b4 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/slate_relief_blank.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/slate_relief_blank" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/slate_relief_cross.json b/src/main/resources/assets/mineralogy/items/slate_relief_cross.json new file mode 100644 index 000000000..195888e89 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/slate_relief_cross.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/slate_relief_cross" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/slate_relief_hammer.json b/src/main/resources/assets/mineralogy/items/slate_relief_hammer.json new file mode 100644 index 000000000..c362be407 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/slate_relief_hammer.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/slate_relief_hammer" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/slate_relief_hoe.json b/src/main/resources/assets/mineralogy/items/slate_relief_hoe.json new file mode 100644 index 000000000..5777147a5 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/slate_relief_hoe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/slate_relief_hoe" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/slate_relief_horizontal.json b/src/main/resources/assets/mineralogy/items/slate_relief_horizontal.json new file mode 100644 index 000000000..8833d3eeb --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/slate_relief_horizontal.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/slate_relief_horizontal" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/slate_relief_i.json b/src/main/resources/assets/mineralogy/items/slate_relief_i.json new file mode 100644 index 000000000..2ee526787 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/slate_relief_i.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/slate_relief_i" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/slate_relief_left.json b/src/main/resources/assets/mineralogy/items/slate_relief_left.json new file mode 100644 index 000000000..68d6907c5 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/slate_relief_left.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/slate_relief_left" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/slate_relief_pickaxe.json b/src/main/resources/assets/mineralogy/items/slate_relief_pickaxe.json new file mode 100644 index 000000000..96b58ab8c --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/slate_relief_pickaxe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/slate_relief_pickaxe" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/slate_relief_plus.json b/src/main/resources/assets/mineralogy/items/slate_relief_plus.json new file mode 100644 index 000000000..8040a1de3 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/slate_relief_plus.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/slate_relief_plus" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/slate_relief_right.json b/src/main/resources/assets/mineralogy/items/slate_relief_right.json new file mode 100644 index 000000000..3753daecd --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/slate_relief_right.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/slate_relief_right" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/slate_relief_sword.json b/src/main/resources/assets/mineralogy/items/slate_relief_sword.json new file mode 100644 index 000000000..de31e3175 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/slate_relief_sword.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/slate_relief_sword" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/slate_relief_vertical.json b/src/main/resources/assets/mineralogy/items/slate_relief_vertical.json new file mode 100644 index 000000000..d1e70bacd --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/slate_relief_vertical.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/slate_relief_vertical" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/slate_slab.json b/src/main/resources/assets/mineralogy/items/slate_slab.json new file mode 100644 index 000000000..13df093a6 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/slate_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/slate_slab" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/slate_smooth.json b/src/main/resources/assets/mineralogy/items/slate_smooth.json new file mode 100644 index 000000000..9ae6d7832 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/slate_smooth.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/slate_smooth" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/slate_smooth_brick.json b/src/main/resources/assets/mineralogy/items/slate_smooth_brick.json new file mode 100644 index 000000000..c53fd3b58 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/slate_smooth_brick.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/slate_smooth_brick" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/slate_smooth_brick_furnace.json b/src/main/resources/assets/mineralogy/items/slate_smooth_brick_furnace.json new file mode 100644 index 000000000..bce5f577c --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/slate_smooth_brick_furnace.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/slate_smooth_brick_furnace" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/slate_smooth_brick_slab.json b/src/main/resources/assets/mineralogy/items/slate_smooth_brick_slab.json new file mode 100644 index 000000000..f536d13a9 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/slate_smooth_brick_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/slate_smooth_brick_slab" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/slate_smooth_brick_stairs.json b/src/main/resources/assets/mineralogy/items/slate_smooth_brick_stairs.json new file mode 100644 index 000000000..76af22017 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/slate_smooth_brick_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/slate_smooth_brick_stairs" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/slate_smooth_brick_wall.json b/src/main/resources/assets/mineralogy/items/slate_smooth_brick_wall.json new file mode 100644 index 000000000..1d9a6cb44 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/slate_smooth_brick_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/slate_smooth_brick_wall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/slate_smooth_furnace.json b/src/main/resources/assets/mineralogy/items/slate_smooth_furnace.json new file mode 100644 index 000000000..e79782659 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/slate_smooth_furnace.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/slate_smooth_furnace" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/slate_smooth_slab.json b/src/main/resources/assets/mineralogy/items/slate_smooth_slab.json new file mode 100644 index 000000000..02a1a0363 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/slate_smooth_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/slate_smooth_slab" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/slate_smooth_stairs.json b/src/main/resources/assets/mineralogy/items/slate_smooth_stairs.json new file mode 100644 index 000000000..f74a9b7f8 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/slate_smooth_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/slate_smooth_stairs" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/slate_smooth_wall.json b/src/main/resources/assets/mineralogy/items/slate_smooth_wall.json new file mode 100644 index 000000000..c85c4d25d --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/slate_smooth_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/slate_smooth_wall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/slate_stairs.json b/src/main/resources/assets/mineralogy/items/slate_stairs.json new file mode 100644 index 000000000..a82fb7379 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/slate_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/slate_stairs" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/slate_wall.json b/src/main/resources/assets/mineralogy/items/slate_wall.json new file mode 100644 index 000000000..89b279483 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/slate_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/slate_wall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/sulfur_block.json b/src/main/resources/assets/mineralogy/items/sulfur_block.json new file mode 100644 index 000000000..c170fe046 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/sulfur_block.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/sulfur_block" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/sulfur_dust.json b/src/main/resources/assets/mineralogy/items/sulfur_dust.json new file mode 100644 index 000000000..949d3423e --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/sulfur_dust.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/sulfur_dust" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/sulfur_ore.json b/src/main/resources/assets/mineralogy/items/sulfur_ore.json new file mode 100644 index 000000000..390438c50 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/sulfur_ore.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/sulfur_ore" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/tuff.json b/src/main/resources/assets/mineralogy/items/tuff.json new file mode 100644 index 000000000..d04ba3ce7 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/tuff.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/tuff" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/tuff_brick.json b/src/main/resources/assets/mineralogy/items/tuff_brick.json new file mode 100644 index 000000000..d682afd9a --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/tuff_brick.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/tuff_brick" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/tuff_brick_furnace.json b/src/main/resources/assets/mineralogy/items/tuff_brick_furnace.json new file mode 100644 index 000000000..e7f5945d1 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/tuff_brick_furnace.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/tuff_brick_furnace" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/tuff_brick_slab.json b/src/main/resources/assets/mineralogy/items/tuff_brick_slab.json new file mode 100644 index 000000000..2a3083681 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/tuff_brick_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/tuff_brick_slab" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/tuff_brick_stairs.json b/src/main/resources/assets/mineralogy/items/tuff_brick_stairs.json new file mode 100644 index 000000000..8b4089a65 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/tuff_brick_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/tuff_brick_stairs" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/tuff_brick_wall.json b/src/main/resources/assets/mineralogy/items/tuff_brick_wall.json new file mode 100644 index 000000000..d685ee603 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/tuff_brick_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/tuff_brick_wall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/tuff_furnace.json b/src/main/resources/assets/mineralogy/items/tuff_furnace.json new file mode 100644 index 000000000..6220e2fda --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/tuff_furnace.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/tuff_furnace" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/tuff_relief_axe.json b/src/main/resources/assets/mineralogy/items/tuff_relief_axe.json new file mode 100644 index 000000000..5c1f9b5e6 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/tuff_relief_axe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/tuff_relief_axe" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/tuff_relief_blank.json b/src/main/resources/assets/mineralogy/items/tuff_relief_blank.json new file mode 100644 index 000000000..761a457cc --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/tuff_relief_blank.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/tuff_relief_blank" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/tuff_relief_cross.json b/src/main/resources/assets/mineralogy/items/tuff_relief_cross.json new file mode 100644 index 000000000..fdffdba56 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/tuff_relief_cross.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/tuff_relief_cross" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/tuff_relief_hammer.json b/src/main/resources/assets/mineralogy/items/tuff_relief_hammer.json new file mode 100644 index 000000000..7e4f2fcce --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/tuff_relief_hammer.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/tuff_relief_hammer" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/tuff_relief_hoe.json b/src/main/resources/assets/mineralogy/items/tuff_relief_hoe.json new file mode 100644 index 000000000..9a1162619 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/tuff_relief_hoe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/tuff_relief_hoe" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/tuff_relief_horizontal.json b/src/main/resources/assets/mineralogy/items/tuff_relief_horizontal.json new file mode 100644 index 000000000..778c492b4 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/tuff_relief_horizontal.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/tuff_relief_horizontal" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/tuff_relief_i.json b/src/main/resources/assets/mineralogy/items/tuff_relief_i.json new file mode 100644 index 000000000..90d4c5c27 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/tuff_relief_i.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/tuff_relief_i" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/tuff_relief_left.json b/src/main/resources/assets/mineralogy/items/tuff_relief_left.json new file mode 100644 index 000000000..fa3cc25b9 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/tuff_relief_left.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/tuff_relief_left" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/tuff_relief_pickaxe.json b/src/main/resources/assets/mineralogy/items/tuff_relief_pickaxe.json new file mode 100644 index 000000000..23f080e9c --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/tuff_relief_pickaxe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/tuff_relief_pickaxe" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/tuff_relief_plus.json b/src/main/resources/assets/mineralogy/items/tuff_relief_plus.json new file mode 100644 index 000000000..f65dd9828 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/tuff_relief_plus.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/tuff_relief_plus" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/tuff_relief_right.json b/src/main/resources/assets/mineralogy/items/tuff_relief_right.json new file mode 100644 index 000000000..130265471 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/tuff_relief_right.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/tuff_relief_right" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/tuff_relief_sword.json b/src/main/resources/assets/mineralogy/items/tuff_relief_sword.json new file mode 100644 index 000000000..d4a0e04d0 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/tuff_relief_sword.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/tuff_relief_sword" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/tuff_relief_vertical.json b/src/main/resources/assets/mineralogy/items/tuff_relief_vertical.json new file mode 100644 index 000000000..ae39ad812 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/tuff_relief_vertical.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/tuff_relief_vertical" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/tuff_slab.json b/src/main/resources/assets/mineralogy/items/tuff_slab.json new file mode 100644 index 000000000..cced7d005 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/tuff_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/tuff_slab" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/tuff_smooth.json b/src/main/resources/assets/mineralogy/items/tuff_smooth.json new file mode 100644 index 000000000..72081408c --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/tuff_smooth.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/tuff_smooth" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/tuff_smooth_brick.json b/src/main/resources/assets/mineralogy/items/tuff_smooth_brick.json new file mode 100644 index 000000000..43ca3ec7d --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/tuff_smooth_brick.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/tuff_smooth_brick" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/tuff_smooth_brick_furnace.json b/src/main/resources/assets/mineralogy/items/tuff_smooth_brick_furnace.json new file mode 100644 index 000000000..32d684526 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/tuff_smooth_brick_furnace.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/tuff_smooth_brick_furnace" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/tuff_smooth_brick_slab.json b/src/main/resources/assets/mineralogy/items/tuff_smooth_brick_slab.json new file mode 100644 index 000000000..085e962ac --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/tuff_smooth_brick_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/tuff_smooth_brick_slab" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/tuff_smooth_brick_stairs.json b/src/main/resources/assets/mineralogy/items/tuff_smooth_brick_stairs.json new file mode 100644 index 000000000..e0adf50d1 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/tuff_smooth_brick_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/tuff_smooth_brick_stairs" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/tuff_smooth_brick_wall.json b/src/main/resources/assets/mineralogy/items/tuff_smooth_brick_wall.json new file mode 100644 index 000000000..649d438c3 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/tuff_smooth_brick_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/tuff_smooth_brick_wall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/tuff_smooth_furnace.json b/src/main/resources/assets/mineralogy/items/tuff_smooth_furnace.json new file mode 100644 index 000000000..bf7c0e6f5 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/tuff_smooth_furnace.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/tuff_smooth_furnace" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/tuff_smooth_slab.json b/src/main/resources/assets/mineralogy/items/tuff_smooth_slab.json new file mode 100644 index 000000000..2e34dcde5 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/tuff_smooth_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/tuff_smooth_slab" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/tuff_smooth_stairs.json b/src/main/resources/assets/mineralogy/items/tuff_smooth_stairs.json new file mode 100644 index 000000000..209af52ae --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/tuff_smooth_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/tuff_smooth_stairs" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/tuff_smooth_wall.json b/src/main/resources/assets/mineralogy/items/tuff_smooth_wall.json new file mode 100644 index 000000000..237de7c20 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/tuff_smooth_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/tuff_smooth_wall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/tuff_stairs.json b/src/main/resources/assets/mineralogy/items/tuff_stairs.json new file mode 100644 index 000000000..19f4c45c2 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/tuff_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/tuff_stairs" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/items/tuff_wall.json b/src/main/resources/assets/mineralogy/items/tuff_wall.json new file mode 100644 index 000000000..6ed6dcb50 --- /dev/null +++ b/src/main/resources/assets/mineralogy/items/tuff_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "mineralogy:item/tuff_wall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/andesite.json b/src/main/resources/assets/mineralogy/models/block/andesite.json index 145a9f95e..ffaadef71 100644 --- a/src/main/resources/assets/mineralogy/models/block/andesite.json +++ b/src/main/resources/assets/mineralogy/models/block/andesite.json @@ -1,6 +1,6 @@ { "parent": "mineralogy:block/block", "textures": { - "face": "mineralogy:blocks/andesite" + "face": "minecraft:block/andesite" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/andesite_double_slab.json b/src/main/resources/assets/mineralogy/models/block/andesite_double_slab.json index 5091f836b..d0b42f787 100644 --- a/src/main/resources/assets/mineralogy/models/block/andesite_double_slab.json +++ b/src/main/resources/assets/mineralogy/models/block/andesite_double_slab.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/brick", "textures": { - "top": "mineralogy:blocks/andesite", - "bottom": "mineralogy:blocks/andesite", - "side": "mineralogy:blocks/andesite" + "top": "minecraft:block/andesite", + "bottom": "minecraft:block/andesite", + "side": "minecraft:block/andesite" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/andesite_furnace.json b/src/main/resources/assets/mineralogy/models/block/andesite_furnace.json index af50910dd..5fdd6aeaa 100644 --- a/src/main/resources/assets/mineralogy/models/block/andesite_furnace.json +++ b/src/main/resources/assets/mineralogy/models/block/andesite_furnace.json @@ -1,8 +1,8 @@ { "parent": "block/orientable", "textures": { - "top": "mineralogy:blocks/andesite", + "top": "minecraft:block/andesite", "front": "mineralogy:blocks/andesite_furnace_front_off", - "side": "mineralogy:blocks/andesite" + "side": "minecraft:block/andesite" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/andesite_relief_axe.json b/src/main/resources/assets/mineralogy/models/block/andesite_relief_axe.json index 21007ed44..723a8022a 100644 --- a/src/main/resources/assets/mineralogy/models/block/andesite_relief_axe.json +++ b/src/main/resources/assets/mineralogy/models/block/andesite_relief_axe.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_axe", "textures": { - "0": "mineralogy:blocks/andesite_smooth", - "2": "mineralogy:blocks/andesite_smooth", - "particle": "mineralogy:blocks/andesite_smooth" + "0": "minecraft:block/polished_andesite", + "2": "minecraft:block/polished_andesite", + "particle": "minecraft:block/polished_andesite" } } diff --git a/src/main/resources/assets/mineralogy/models/block/andesite_relief_axe_inventory.json b/src/main/resources/assets/mineralogy/models/block/andesite_relief_axe_inventory.json index 71207d651..9bdcb8d47 100644 --- a/src/main/resources/assets/mineralogy/models/block/andesite_relief_axe_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/andesite_relief_axe_inventory.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_axe_inventory", "textures": { - "0": "mineralogy:blocks/basalt_smooth", - "2": "mineralogy:blocks/andesite_smooth", - "particle": "mineralogy:blocks/basalt_smooth" + "0": "minecraft:block/polished_basalt_side", + "2": "minecraft:block/polished_andesite", + "particle": "minecraft:block/polished_basalt_side" } } diff --git a/src/main/resources/assets/mineralogy/models/block/andesite_relief_blank.json b/src/main/resources/assets/mineralogy/models/block/andesite_relief_blank.json index 6880da635..25950595a 100644 --- a/src/main/resources/assets/mineralogy/models/block/andesite_relief_blank.json +++ b/src/main/resources/assets/mineralogy/models/block/andesite_relief_blank.json @@ -1,7 +1,7 @@ { "parent": "mineralogy:block/relief_blank", "textures": { - "0": "mineralogy:blocks/andesite_smooth", - "particle": "mineralogy:blocks/andesite_smooth" + "0": "minecraft:block/polished_andesite", + "particle": "minecraft:block/polished_andesite" } } diff --git a/src/main/resources/assets/mineralogy/models/block/andesite_relief_blank_inventory.json b/src/main/resources/assets/mineralogy/models/block/andesite_relief_blank_inventory.json index f56fff3a9..71dbbfbac 100644 --- a/src/main/resources/assets/mineralogy/models/block/andesite_relief_blank_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/andesite_relief_blank_inventory.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_blank_inventory", "textures": { - "0": "mineralogy:blocks/andesite_smooth", - "1": "mineralogy:blocks/basalt_smooth", - "particle": "mineralogy:blocks/andesite_smooth" + "0": "minecraft:block/polished_andesite", + "1": "minecraft:block/polished_basalt_side", + "particle": "minecraft:block/polished_andesite" } } diff --git a/src/main/resources/assets/mineralogy/models/block/andesite_relief_cross.json b/src/main/resources/assets/mineralogy/models/block/andesite_relief_cross.json index 15c0850e7..c9fbe0ab2 100644 --- a/src/main/resources/assets/mineralogy/models/block/andesite_relief_cross.json +++ b/src/main/resources/assets/mineralogy/models/block/andesite_relief_cross.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_cross", "textures": { - "0": "mineralogy:blocks/andesite_smooth", - "2": "mineralogy:blocks/andesite_smooth", - "particle": "mineralogy:blocks/andesite_smooth" + "0": "minecraft:block/polished_andesite", + "2": "minecraft:block/polished_andesite", + "particle": "minecraft:block/polished_andesite" } } diff --git a/src/main/resources/assets/mineralogy/models/block/andesite_relief_cross_inventory.json b/src/main/resources/assets/mineralogy/models/block/andesite_relief_cross_inventory.json index 2ef18df3f..3ca051bb1 100644 --- a/src/main/resources/assets/mineralogy/models/block/andesite_relief_cross_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/andesite_relief_cross_inventory.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_cross_inventory", "textures": { - "0": "mineralogy:blocks/basalt_smooth", - "2": "mineralogy:blocks/andesite_smooth", - "particle": "mineralogy:blocks/basalt_smooth" + "0": "minecraft:block/polished_basalt_side", + "2": "minecraft:block/polished_andesite", + "particle": "minecraft:block/polished_basalt_side" } } diff --git a/src/main/resources/assets/mineralogy/models/block/andesite_relief_hammer.json b/src/main/resources/assets/mineralogy/models/block/andesite_relief_hammer.json index 9fdfa5b82..cfa2f910e 100644 --- a/src/main/resources/assets/mineralogy/models/block/andesite_relief_hammer.json +++ b/src/main/resources/assets/mineralogy/models/block/andesite_relief_hammer.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_hammer", "textures": { - "0": "mineralogy:blocks/andesite_smooth", - "2": "mineralogy:blocks/andesite_smooth", - "particle": "mineralogy:blocks/andesite_smooth" + "0": "minecraft:block/polished_andesite", + "2": "minecraft:block/polished_andesite", + "particle": "minecraft:block/polished_andesite" } } diff --git a/src/main/resources/assets/mineralogy/models/block/andesite_relief_hammer_inventory.json b/src/main/resources/assets/mineralogy/models/block/andesite_relief_hammer_inventory.json index 3c5bc76cc..d8ccdbcfe 100644 --- a/src/main/resources/assets/mineralogy/models/block/andesite_relief_hammer_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/andesite_relief_hammer_inventory.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_hammer_inventory", "textures": { - "0": "mineralogy:blocks/andesite_smooth", - "1": "mineralogy:blocks/basalt_smooth", - "particle": "mineralogy:blocks/andesite_smooth" + "0": "minecraft:block/polished_andesite", + "1": "minecraft:block/polished_basalt_side", + "particle": "minecraft:block/polished_andesite" } } diff --git a/src/main/resources/assets/mineralogy/models/block/andesite_relief_hoe.json b/src/main/resources/assets/mineralogy/models/block/andesite_relief_hoe.json index 8b92cec4e..71d27077f 100644 --- a/src/main/resources/assets/mineralogy/models/block/andesite_relief_hoe.json +++ b/src/main/resources/assets/mineralogy/models/block/andesite_relief_hoe.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_hoe", "textures": { - "0": "mineralogy:blocks/andesite_smooth", - "2": "mineralogy:blocks/andesite_smooth", - "particle": "mineralogy:blocks/andesite_smooth" + "0": "minecraft:block/polished_andesite", + "2": "minecraft:block/polished_andesite", + "particle": "minecraft:block/polished_andesite" } } diff --git a/src/main/resources/assets/mineralogy/models/block/andesite_relief_hoe_inventory.json b/src/main/resources/assets/mineralogy/models/block/andesite_relief_hoe_inventory.json index 3f7d5e7f8..8b54b6e63 100644 --- a/src/main/resources/assets/mineralogy/models/block/andesite_relief_hoe_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/andesite_relief_hoe_inventory.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_hoe_inventory", "textures": { - "0": "mineralogy:blocks/basalt_smooth", - "2": "mineralogy:blocks/andesite_smooth", - "particle": "mineralogy:blocks/basalt_smooth" + "0": "minecraft:block/polished_basalt_side", + "2": "minecraft:block/polished_andesite", + "particle": "minecraft:block/polished_basalt_side" } } diff --git a/src/main/resources/assets/mineralogy/models/block/andesite_relief_horizontal.json b/src/main/resources/assets/mineralogy/models/block/andesite_relief_horizontal.json index 685f5959d..664d5d37b 100644 --- a/src/main/resources/assets/mineralogy/models/block/andesite_relief_horizontal.json +++ b/src/main/resources/assets/mineralogy/models/block/andesite_relief_horizontal.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_horizontal", "textures": { - "0": "mineralogy:blocks/andesite_smooth", - "2": "mineralogy:blocks/andesite_smooth", - "particle": "mineralogy:blocks/andesite_smooth" + "0": "minecraft:block/polished_andesite", + "2": "minecraft:block/polished_andesite", + "particle": "minecraft:block/polished_andesite" } } diff --git a/src/main/resources/assets/mineralogy/models/block/andesite_relief_horizontal_inventory.json b/src/main/resources/assets/mineralogy/models/block/andesite_relief_horizontal_inventory.json index e4d3b6e08..d219e3d32 100644 --- a/src/main/resources/assets/mineralogy/models/block/andesite_relief_horizontal_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/andesite_relief_horizontal_inventory.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_horizontal_inventory", "textures": { - "0": "mineralogy:blocks/basalt_smooth", - "2": "mineralogy:blocks/andesite_smooth", - "particle": "mineralogy:blocks/basalt_smooth" + "0": "minecraft:block/polished_basalt_side", + "2": "minecraft:block/polished_andesite", + "particle": "minecraft:block/polished_basalt_side" } } diff --git a/src/main/resources/assets/mineralogy/models/block/andesite_relief_i.json b/src/main/resources/assets/mineralogy/models/block/andesite_relief_i.json index bcf09aae7..2efd53796 100644 --- a/src/main/resources/assets/mineralogy/models/block/andesite_relief_i.json +++ b/src/main/resources/assets/mineralogy/models/block/andesite_relief_i.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_i", "textures": { - "0": "mineralogy:blocks/andesite_smooth", - "2": "mineralogy:blocks/andesite_smooth", - "particle": "mineralogy:blocks/andesite_smooth" + "0": "minecraft:block/polished_andesite", + "2": "minecraft:block/polished_andesite", + "particle": "minecraft:block/polished_andesite" } } diff --git a/src/main/resources/assets/mineralogy/models/block/andesite_relief_i_inventory.json b/src/main/resources/assets/mineralogy/models/block/andesite_relief_i_inventory.json index e1e56aa08..e4e08ba7c 100644 --- a/src/main/resources/assets/mineralogy/models/block/andesite_relief_i_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/andesite_relief_i_inventory.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_i_inventory", "textures": { - "3": "mineralogy:blocks/basalt_smooth", - "4": "mineralogy:blocks/andesite_smooth", - "particle": "mineralogy:blocks/andesite_smooth" + "3": "minecraft:block/polished_basalt_side", + "4": "minecraft:block/polished_andesite", + "particle": "minecraft:block/polished_andesite" } } diff --git a/src/main/resources/assets/mineralogy/models/block/andesite_relief_left.json b/src/main/resources/assets/mineralogy/models/block/andesite_relief_left.json index 0bc03b383..d458c4537 100644 --- a/src/main/resources/assets/mineralogy/models/block/andesite_relief_left.json +++ b/src/main/resources/assets/mineralogy/models/block/andesite_relief_left.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_left", "textures": { - "0": "mineralogy:blocks/andesite_smooth", - "2": "mineralogy:blocks/andesite_smooth", - "particle": "mineralogy:blocks/andesite_smooth" + "0": "minecraft:block/polished_andesite", + "2": "minecraft:block/polished_andesite", + "particle": "minecraft:block/polished_andesite" } } diff --git a/src/main/resources/assets/mineralogy/models/block/andesite_relief_left_inventory.json b/src/main/resources/assets/mineralogy/models/block/andesite_relief_left_inventory.json index 3707b0350..2865b94a8 100644 --- a/src/main/resources/assets/mineralogy/models/block/andesite_relief_left_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/andesite_relief_left_inventory.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_left_inventory", "textures": { - "0": "mineralogy:blocks/andesite_smooth", - "1": "mineralogy:blocks/basalt_smooth", - "particle": "mineralogy:blocks/andesite_smooth" + "0": "minecraft:block/polished_andesite", + "1": "minecraft:block/polished_basalt_side", + "particle": "minecraft:block/polished_andesite" } } diff --git a/src/main/resources/assets/mineralogy/models/block/andesite_relief_pickaxe.json b/src/main/resources/assets/mineralogy/models/block/andesite_relief_pickaxe.json index 3caab4520..0a09522c1 100644 --- a/src/main/resources/assets/mineralogy/models/block/andesite_relief_pickaxe.json +++ b/src/main/resources/assets/mineralogy/models/block/andesite_relief_pickaxe.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_pickaxe", "textures": { - "0": "mineralogy:blocks/andesite_smooth", - "2": "mineralogy:blocks/andesite_smooth", - "particle": "mineralogy:blocks/andesite_smooth" + "0": "minecraft:block/polished_andesite", + "2": "minecraft:block/polished_andesite", + "particle": "minecraft:block/polished_andesite" } } diff --git a/src/main/resources/assets/mineralogy/models/block/andesite_relief_pickaxe_inventory.json b/src/main/resources/assets/mineralogy/models/block/andesite_relief_pickaxe_inventory.json index 9ae8bd099..391e3db51 100644 --- a/src/main/resources/assets/mineralogy/models/block/andesite_relief_pickaxe_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/andesite_relief_pickaxe_inventory.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_pickaxe_inventory", "textures": { - "0": "mineralogy:blocks/basalt_smooth", - "2": "mineralogy:blocks/andesite_smooth", - "particle": "mineralogy:blocks/basalt_smooth" + "0": "minecraft:block/polished_basalt_side", + "2": "minecraft:block/polished_andesite", + "particle": "minecraft:block/polished_basalt_side" } } diff --git a/src/main/resources/assets/mineralogy/models/block/andesite_relief_plus.json b/src/main/resources/assets/mineralogy/models/block/andesite_relief_plus.json index a4ae27703..1d356566e 100644 --- a/src/main/resources/assets/mineralogy/models/block/andesite_relief_plus.json +++ b/src/main/resources/assets/mineralogy/models/block/andesite_relief_plus.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_plus", "textures": { - "0": "mineralogy:blocks/andesite_smooth", - "2": "mineralogy:blocks/andesite_smooth", - "particle": "mineralogy:blocks/andesite_smooth" + "0": "minecraft:block/polished_andesite", + "2": "minecraft:block/polished_andesite", + "particle": "minecraft:block/polished_andesite" } } diff --git a/src/main/resources/assets/mineralogy/models/block/andesite_relief_plus_inventory.json b/src/main/resources/assets/mineralogy/models/block/andesite_relief_plus_inventory.json index 78731eb24..e9120a84e 100644 --- a/src/main/resources/assets/mineralogy/models/block/andesite_relief_plus_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/andesite_relief_plus_inventory.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_plus_inventory", "textures": { - "0": "mineralogy:blocks/basalt_smooth", - "2": "mineralogy:blocks/andesite_smooth", - "particle": "mineralogy:blocks/basalt_smooth" + "0": "minecraft:block/polished_basalt_side", + "2": "minecraft:block/polished_andesite", + "particle": "minecraft:block/polished_basalt_side" } } diff --git a/src/main/resources/assets/mineralogy/models/block/andesite_relief_right.json b/src/main/resources/assets/mineralogy/models/block/andesite_relief_right.json index 531c56319..eb76793b9 100644 --- a/src/main/resources/assets/mineralogy/models/block/andesite_relief_right.json +++ b/src/main/resources/assets/mineralogy/models/block/andesite_relief_right.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_right", "textures": { - "0": "mineralogy:blocks/andesite_smooth", - "2": "mineralogy:blocks/andesite_smooth", - "particle": "mineralogy:blocks/andesite_smooth" + "0": "minecraft:block/polished_andesite", + "2": "minecraft:block/polished_andesite", + "particle": "minecraft:block/polished_andesite" } } diff --git a/src/main/resources/assets/mineralogy/models/block/andesite_relief_right_inventory.json b/src/main/resources/assets/mineralogy/models/block/andesite_relief_right_inventory.json index b739c1ee3..8df5ff3a4 100644 --- a/src/main/resources/assets/mineralogy/models/block/andesite_relief_right_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/andesite_relief_right_inventory.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_right_inventory", "textures": { - "0": "mineralogy:blocks/andesite_smooth", - "1": "mineralogy:blocks/basalt_smooth", - "particle": "mineralogy:blocks/andesite_smooth" + "0": "minecraft:block/polished_andesite", + "1": "minecraft:block/polished_basalt_side", + "particle": "minecraft:block/polished_andesite" } } diff --git a/src/main/resources/assets/mineralogy/models/block/andesite_relief_sword.json b/src/main/resources/assets/mineralogy/models/block/andesite_relief_sword.json index 5cda1415d..18ebb9701 100644 --- a/src/main/resources/assets/mineralogy/models/block/andesite_relief_sword.json +++ b/src/main/resources/assets/mineralogy/models/block/andesite_relief_sword.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_sword", "textures": { - "0": "mineralogy:blocks/andesite_smooth", - "2": "mineralogy:blocks/andesite_smooth", - "particle": "mineralogy:blocks/andesite_smooth" + "0": "minecraft:block/polished_andesite", + "2": "minecraft:block/polished_andesite", + "particle": "minecraft:block/polished_andesite" } } diff --git a/src/main/resources/assets/mineralogy/models/block/andesite_relief_sword_inventory.json b/src/main/resources/assets/mineralogy/models/block/andesite_relief_sword_inventory.json index 5daeb56df..4f833e05a 100644 --- a/src/main/resources/assets/mineralogy/models/block/andesite_relief_sword_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/andesite_relief_sword_inventory.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_sword_inventory", "textures": { - "0": "mineralogy:blocks/basalt_smooth", - "2": "mineralogy:blocks/andesite_smooth", - "particle": "mineralogy:blocks/basalt_smooth" + "0": "minecraft:block/polished_basalt_side", + "2": "minecraft:block/polished_andesite", + "particle": "minecraft:block/polished_basalt_side" } } diff --git a/src/main/resources/assets/mineralogy/models/block/andesite_relief_vertical.json b/src/main/resources/assets/mineralogy/models/block/andesite_relief_vertical.json index 2a2ac7828..573732b1b 100644 --- a/src/main/resources/assets/mineralogy/models/block/andesite_relief_vertical.json +++ b/src/main/resources/assets/mineralogy/models/block/andesite_relief_vertical.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_vertical", "textures": { - "0": "mineralogy:blocks/andesite_smooth", - "2": "mineralogy:blocks/andesite_smooth", - "particle": "mineralogy:blocks/andesite_smooth" + "0": "minecraft:block/polished_andesite", + "2": "minecraft:block/polished_andesite", + "particle": "minecraft:block/polished_andesite" } } diff --git a/src/main/resources/assets/mineralogy/models/block/andesite_relief_vertical_inventory.json b/src/main/resources/assets/mineralogy/models/block/andesite_relief_vertical_inventory.json index 87c3297ea..d79e083f9 100644 --- a/src/main/resources/assets/mineralogy/models/block/andesite_relief_vertical_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/andesite_relief_vertical_inventory.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_vertical_inventory", "textures": { - "0": "mineralogy:blocks/andesite_smooth", - "1": "mineralogy:blocks/basalt_smooth", - "particle": "mineralogy:blocks/andesite_smooth" + "0": "minecraft:block/polished_andesite", + "1": "minecraft:block/polished_basalt_side", + "particle": "minecraft:block/polished_andesite" } } diff --git a/src/main/resources/assets/mineralogy/models/block/andesite_slab.json b/src/main/resources/assets/mineralogy/models/block/andesite_slab.json index 39fd3a7d5..80d068e1f 100644 --- a/src/main/resources/assets/mineralogy/models/block/andesite_slab.json +++ b/src/main/resources/assets/mineralogy/models/block/andesite_slab.json @@ -1,7 +1,7 @@ { "parent": "mineralogy:block/slab", "textures": { - "face": "mineralogy:blocks/andesite", - "side": "mineralogy:blocks/andesite" + "face": "minecraft:block/andesite", + "side": "minecraft:block/andesite" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/andesite_smooth.json b/src/main/resources/assets/mineralogy/models/block/andesite_smooth.json index f08146178..31ffdf0b9 100644 --- a/src/main/resources/assets/mineralogy/models/block/andesite_smooth.json +++ b/src/main/resources/assets/mineralogy/models/block/andesite_smooth.json @@ -1,6 +1,6 @@ { "parent": "mineralogy:block/block", "textures": { - "face": "mineralogy:blocks/andesite_smooth" + "face": "minecraft:block/polished_andesite" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/andesite_smooth_double_slab.json b/src/main/resources/assets/mineralogy/models/block/andesite_smooth_double_slab.json index 3562f2e01..8f9c53760 100644 --- a/src/main/resources/assets/mineralogy/models/block/andesite_smooth_double_slab.json +++ b/src/main/resources/assets/mineralogy/models/block/andesite_smooth_double_slab.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/brick", "textures": { - "top": "mineralogy:blocks/andesite_smooth", - "bottom": "mineralogy:blocks/andesite_smooth", - "side": "mineralogy:blocks/andesite_smooth" + "top": "minecraft:block/polished_andesite", + "bottom": "minecraft:block/polished_andesite", + "side": "minecraft:block/polished_andesite" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/andesite_smooth_furnace.json b/src/main/resources/assets/mineralogy/models/block/andesite_smooth_furnace.json index 5a64c06ed..c0ac186c4 100644 --- a/src/main/resources/assets/mineralogy/models/block/andesite_smooth_furnace.json +++ b/src/main/resources/assets/mineralogy/models/block/andesite_smooth_furnace.json @@ -1,8 +1,8 @@ { "parent": "block/orientable", "textures": { - "top": "mineralogy:blocks/andesite_smooth", + "top": "minecraft:block/polished_andesite", "front": "mineralogy:blocks/andesite_smooth_furnace_front_off", - "side": "mineralogy:blocks/andesite_smooth" + "side": "minecraft:block/polished_andesite" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/andesite_smooth_slab.json b/src/main/resources/assets/mineralogy/models/block/andesite_smooth_slab.json index 613c23cb7..db1d50504 100644 --- a/src/main/resources/assets/mineralogy/models/block/andesite_smooth_slab.json +++ b/src/main/resources/assets/mineralogy/models/block/andesite_smooth_slab.json @@ -1,7 +1,7 @@ { "parent": "mineralogy:block/slab", "textures": { - "face": "mineralogy:blocks/andesite_smooth", - "side": "mineralogy:blocks/andesite_smooth" + "face": "minecraft:block/polished_andesite", + "side": "minecraft:block/polished_andesite" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/andesite_smooth_stairs.json b/src/main/resources/assets/mineralogy/models/block/andesite_smooth_stairs.json index 421222759..873b6dc09 100644 --- a/src/main/resources/assets/mineralogy/models/block/andesite_smooth_stairs.json +++ b/src/main/resources/assets/mineralogy/models/block/andesite_smooth_stairs.json @@ -1,7 +1,7 @@ { "parent": "mineralogy:block/stairs_normal", "textures": { - "face": "mineralogy:blocks/andesite_smooth", - "side": "mineralogy:blocks/andesite_smooth" + "face": "minecraft:block/polished_andesite", + "side": "minecraft:block/polished_andesite" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/andesite_smooth_stairs_inner.json b/src/main/resources/assets/mineralogy/models/block/andesite_smooth_stairs_inner.json index 599db275f..82532f47c 100644 --- a/src/main/resources/assets/mineralogy/models/block/andesite_smooth_stairs_inner.json +++ b/src/main/resources/assets/mineralogy/models/block/andesite_smooth_stairs_inner.json @@ -1,7 +1,7 @@ { "parent": "mineralogy:block/stairs_inner", "textures": { - "face": "mineralogy:blocks/andesite_smooth", - "side": "mineralogy:blocks/andesite_smooth" + "face": "minecraft:block/polished_andesite", + "side": "minecraft:block/polished_andesite" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/andesite_smooth_stairs_outer.json b/src/main/resources/assets/mineralogy/models/block/andesite_smooth_stairs_outer.json index eae654861..3007d1dbd 100644 --- a/src/main/resources/assets/mineralogy/models/block/andesite_smooth_stairs_outer.json +++ b/src/main/resources/assets/mineralogy/models/block/andesite_smooth_stairs_outer.json @@ -1,7 +1,7 @@ { "parent": "mineralogy:block/stairs_outer", "textures": { - "face": "mineralogy:blocks/andesite_smooth", - "side": "mineralogy:blocks/andesite_smooth" + "face": "minecraft:block/polished_andesite", + "side": "minecraft:block/polished_andesite" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/andesite_smooth_wall_inventory.json b/src/main/resources/assets/mineralogy/models/block/andesite_smooth_wall_inventory.json index 3494bfbdb..9206b223a 100644 --- a/src/main/resources/assets/mineralogy/models/block/andesite_smooth_wall_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/andesite_smooth_wall_inventory.json @@ -1,6 +1,6 @@ { "parent": "block/wall_inventory", "textures": { - "wall": "mineralogy:blocks/andesite_smooth" + "wall": "minecraft:block/polished_andesite" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/andesite_smooth_wall_post.json b/src/main/resources/assets/mineralogy/models/block/andesite_smooth_wall_post.json index a0a0e1d2f..c5b4f5f10 100644 --- a/src/main/resources/assets/mineralogy/models/block/andesite_smooth_wall_post.json +++ b/src/main/resources/assets/mineralogy/models/block/andesite_smooth_wall_post.json @@ -1,6 +1,6 @@ { "parent": "minecraft:block/template_wall_post", "textures": { - "wall": "mineralogy:blocks/andesite_smooth" + "wall": "minecraft:block/polished_andesite" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/andesite_smooth_wall_side.json b/src/main/resources/assets/mineralogy/models/block/andesite_smooth_wall_side.json index f448008b5..09e8630b6 100644 --- a/src/main/resources/assets/mineralogy/models/block/andesite_smooth_wall_side.json +++ b/src/main/resources/assets/mineralogy/models/block/andesite_smooth_wall_side.json @@ -1,6 +1,6 @@ { "parent": "minecraft:block/template_wall_side", "textures": { - "wall": "mineralogy:blocks/andesite_smooth" + "wall": "minecraft:block/polished_andesite" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/andesite_smooth_wall_side_tall.json b/src/main/resources/assets/mineralogy/models/block/andesite_smooth_wall_side_tall.json index 9eb92c7ea..a7ad6a01b 100644 --- a/src/main/resources/assets/mineralogy/models/block/andesite_smooth_wall_side_tall.json +++ b/src/main/resources/assets/mineralogy/models/block/andesite_smooth_wall_side_tall.json @@ -1,6 +1,6 @@ { "parent": "minecraft:block/template_wall_side_tall", "textures": { - "wall": "mineralogy:blocks/andesite_smooth" + "wall": "minecraft:block/polished_andesite" } } diff --git a/src/main/resources/assets/mineralogy/models/block/andesite_stairs.json b/src/main/resources/assets/mineralogy/models/block/andesite_stairs.json index f9c5291f9..eec976f56 100644 --- a/src/main/resources/assets/mineralogy/models/block/andesite_stairs.json +++ b/src/main/resources/assets/mineralogy/models/block/andesite_stairs.json @@ -1,7 +1,7 @@ { "parent": "mineralogy:block/stairs_normal", "textures": { - "face": "mineralogy:blocks/andesite", - "side": "mineralogy:blocks/andesite" + "face": "minecraft:block/andesite", + "side": "minecraft:block/andesite" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/andesite_stairs_inner.json b/src/main/resources/assets/mineralogy/models/block/andesite_stairs_inner.json index c5add6332..2a7e5a763 100644 --- a/src/main/resources/assets/mineralogy/models/block/andesite_stairs_inner.json +++ b/src/main/resources/assets/mineralogy/models/block/andesite_stairs_inner.json @@ -1,7 +1,7 @@ { "parent": "mineralogy:block/stairs_inner", "textures": { - "face": "mineralogy:blocks/andesite", - "side": "mineralogy:blocks/andesite" + "face": "minecraft:block/andesite", + "side": "minecraft:block/andesite" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/andesite_stairs_outer.json b/src/main/resources/assets/mineralogy/models/block/andesite_stairs_outer.json index aaca9d446..6e6cc384b 100644 --- a/src/main/resources/assets/mineralogy/models/block/andesite_stairs_outer.json +++ b/src/main/resources/assets/mineralogy/models/block/andesite_stairs_outer.json @@ -1,7 +1,7 @@ { "parent": "mineralogy:block/stairs_outer", "textures": { - "face": "mineralogy:blocks/andesite", - "side": "mineralogy:blocks/andesite" + "face": "minecraft:block/andesite", + "side": "minecraft:block/andesite" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/andesite_wall_inventory.json b/src/main/resources/assets/mineralogy/models/block/andesite_wall_inventory.json index a68096e3b..b12c941ba 100644 --- a/src/main/resources/assets/mineralogy/models/block/andesite_wall_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/andesite_wall_inventory.json @@ -1,6 +1,6 @@ { "parent": "block/wall_inventory", "textures": { - "wall": "mineralogy:blocks/andesite" + "wall": "minecraft:block/andesite" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/andesite_wall_post.json b/src/main/resources/assets/mineralogy/models/block/andesite_wall_post.json index 87ac04139..f9fa79be8 100644 --- a/src/main/resources/assets/mineralogy/models/block/andesite_wall_post.json +++ b/src/main/resources/assets/mineralogy/models/block/andesite_wall_post.json @@ -1,6 +1,6 @@ { "parent": "minecraft:block/template_wall_post", "textures": { - "wall": "mineralogy:blocks/andesite" + "wall": "minecraft:block/andesite" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/andesite_wall_side.json b/src/main/resources/assets/mineralogy/models/block/andesite_wall_side.json index 24fa3e826..43dbde6df 100644 --- a/src/main/resources/assets/mineralogy/models/block/andesite_wall_side.json +++ b/src/main/resources/assets/mineralogy/models/block/andesite_wall_side.json @@ -1,6 +1,6 @@ { "parent": "minecraft:block/template_wall_side", "textures": { - "wall": "mineralogy:blocks/andesite" + "wall": "minecraft:block/andesite" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/andesite_wall_side_tall.json b/src/main/resources/assets/mineralogy/models/block/andesite_wall_side_tall.json index 0f025d2d5..9f82d951a 100644 --- a/src/main/resources/assets/mineralogy/models/block/andesite_wall_side_tall.json +++ b/src/main/resources/assets/mineralogy/models/block/andesite_wall_side_tall.json @@ -1,6 +1,6 @@ { "parent": "minecraft:block/template_wall_side_tall", "textures": { - "wall": "mineralogy:blocks/andesite" + "wall": "minecraft:block/andesite" } } diff --git a/src/main/resources/assets/mineralogy/models/block/basalt.json b/src/main/resources/assets/mineralogy/models/block/basalt.json index f5b6a2dbe..39a766dae 100644 --- a/src/main/resources/assets/mineralogy/models/block/basalt.json +++ b/src/main/resources/assets/mineralogy/models/block/basalt.json @@ -1,6 +1,7 @@ { - "parent": "mineralogy:block/block", + "parent": "minecraft:block/cube_column", "textures": { - "face": "mineralogy:blocks/basalt" + "end": "minecraft:block/basalt_top", + "side": "minecraft:block/basalt_side" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/basalt_double_slab.json b/src/main/resources/assets/mineralogy/models/block/basalt_double_slab.json index 0d1a964cd..d5dc8975b 100644 --- a/src/main/resources/assets/mineralogy/models/block/basalt_double_slab.json +++ b/src/main/resources/assets/mineralogy/models/block/basalt_double_slab.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/brick", "textures": { - "top": "mineralogy:blocks/basalt", - "bottom": "mineralogy:blocks/basalt", - "side": "mineralogy:blocks/basalt" + "top": "minecraft:block/basalt_top", + "bottom": "minecraft:block/basalt_top", + "side": "minecraft:block/basalt_side" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/basalt_furnace.json b/src/main/resources/assets/mineralogy/models/block/basalt_furnace.json index e071b1d44..ed81d2c4e 100644 --- a/src/main/resources/assets/mineralogy/models/block/basalt_furnace.json +++ b/src/main/resources/assets/mineralogy/models/block/basalt_furnace.json @@ -1,8 +1,8 @@ { "parent": "block/orientable", "textures": { - "top": "mineralogy:blocks/basalt", + "top": "minecraft:block/basalt_top", "front": "mineralogy:blocks/basalt_furnace_front_off", - "side": "mineralogy:blocks/basalt" + "side": "minecraft:block/basalt_side" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/basalt_relief_axe.json b/src/main/resources/assets/mineralogy/models/block/basalt_relief_axe.json index 8b38adec1..14b4ba772 100644 --- a/src/main/resources/assets/mineralogy/models/block/basalt_relief_axe.json +++ b/src/main/resources/assets/mineralogy/models/block/basalt_relief_axe.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_axe", "textures": { - "0": "mineralogy:blocks/basalt_smooth", - "2": "mineralogy:blocks/basalt_smooth", - "particle": "mineralogy:blocks/basalt_smooth" + "0": "minecraft:block/polished_basalt_side", + "2": "minecraft:block/polished_basalt_side", + "particle": "minecraft:block/polished_basalt_side" } } diff --git a/src/main/resources/assets/mineralogy/models/block/basalt_relief_axe_inventory.json b/src/main/resources/assets/mineralogy/models/block/basalt_relief_axe_inventory.json index fc3e54779..074e4e0d4 100644 --- a/src/main/resources/assets/mineralogy/models/block/basalt_relief_axe_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/basalt_relief_axe_inventory.json @@ -2,7 +2,7 @@ "parent": "mineralogy:block/relief_axe_inventory", "textures": { "0": "mineralogy:blocks/marble_smooth", - "2": "mineralogy:blocks/basalt_smooth", + "2": "minecraft:block/polished_basalt_side", "particle": "mineralogy:blocks/marble_smooth" } } diff --git a/src/main/resources/assets/mineralogy/models/block/basalt_relief_blank.json b/src/main/resources/assets/mineralogy/models/block/basalt_relief_blank.json index 9f931af15..0e4262876 100644 --- a/src/main/resources/assets/mineralogy/models/block/basalt_relief_blank.json +++ b/src/main/resources/assets/mineralogy/models/block/basalt_relief_blank.json @@ -1,7 +1,7 @@ { "parent": "mineralogy:block/relief_blank", "textures": { - "0": "mineralogy:blocks/basalt_smooth", - "particle": "mineralogy:blocks/basalt_smooth" + "0": "minecraft:block/polished_basalt_side", + "particle": "minecraft:block/polished_basalt_side" } } diff --git a/src/main/resources/assets/mineralogy/models/block/basalt_relief_blank_inventory.json b/src/main/resources/assets/mineralogy/models/block/basalt_relief_blank_inventory.json index 005de87be..676e5cec9 100644 --- a/src/main/resources/assets/mineralogy/models/block/basalt_relief_blank_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/basalt_relief_blank_inventory.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_blank_inventory", "textures": { - "0": "mineralogy:blocks/basalt_smooth", + "0": "minecraft:block/polished_basalt_side", "1": "mineralogy:blocks/marble_smooth", - "particle": "mineralogy:blocks/basalt_smooth" + "particle": "minecraft:block/polished_basalt_side" } } diff --git a/src/main/resources/assets/mineralogy/models/block/basalt_relief_cross.json b/src/main/resources/assets/mineralogy/models/block/basalt_relief_cross.json index 94805900a..dbc51e448 100644 --- a/src/main/resources/assets/mineralogy/models/block/basalt_relief_cross.json +++ b/src/main/resources/assets/mineralogy/models/block/basalt_relief_cross.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_cross", "textures": { - "0": "mineralogy:blocks/basalt_smooth", - "2": "mineralogy:blocks/basalt_smooth", - "particle": "mineralogy:blocks/basalt_smooth" + "0": "minecraft:block/polished_basalt_side", + "2": "minecraft:block/polished_basalt_side", + "particle": "minecraft:block/polished_basalt_side" } } diff --git a/src/main/resources/assets/mineralogy/models/block/basalt_relief_cross_inventory.json b/src/main/resources/assets/mineralogy/models/block/basalt_relief_cross_inventory.json index a93ef30f3..9fc0f6544 100644 --- a/src/main/resources/assets/mineralogy/models/block/basalt_relief_cross_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/basalt_relief_cross_inventory.json @@ -2,7 +2,7 @@ "parent": "mineralogy:block/relief_cross_inventory", "textures": { "0": "mineralogy:blocks/marble_smooth", - "2": "mineralogy:blocks/basalt_smooth", + "2": "minecraft:block/polished_basalt_side", "particle": "mineralogy:blocks/marble_smooth" } } diff --git a/src/main/resources/assets/mineralogy/models/block/basalt_relief_hammer.json b/src/main/resources/assets/mineralogy/models/block/basalt_relief_hammer.json index 83f30485d..4f7219b5b 100644 --- a/src/main/resources/assets/mineralogy/models/block/basalt_relief_hammer.json +++ b/src/main/resources/assets/mineralogy/models/block/basalt_relief_hammer.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_hammer", "textures": { - "0": "mineralogy:blocks/basalt_smooth", - "2": "mineralogy:blocks/basalt_smooth", - "particle": "mineralogy:blocks/basalt_smooth" + "0": "minecraft:block/polished_basalt_side", + "2": "minecraft:block/polished_basalt_side", + "particle": "minecraft:block/polished_basalt_side" } } diff --git a/src/main/resources/assets/mineralogy/models/block/basalt_relief_hammer_inventory.json b/src/main/resources/assets/mineralogy/models/block/basalt_relief_hammer_inventory.json index 703e17117..edf65c053 100644 --- a/src/main/resources/assets/mineralogy/models/block/basalt_relief_hammer_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/basalt_relief_hammer_inventory.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_hammer_inventory", "textures": { - "0": "mineralogy:blocks/basalt_smooth", + "0": "minecraft:block/polished_basalt_side", "1": "mineralogy:blocks/marble_smooth", - "particle": "mineralogy:blocks/basalt_smooth" + "particle": "minecraft:block/polished_basalt_side" } } diff --git a/src/main/resources/assets/mineralogy/models/block/basalt_relief_hoe.json b/src/main/resources/assets/mineralogy/models/block/basalt_relief_hoe.json index 87a135599..e625bc69d 100644 --- a/src/main/resources/assets/mineralogy/models/block/basalt_relief_hoe.json +++ b/src/main/resources/assets/mineralogy/models/block/basalt_relief_hoe.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_hoe", "textures": { - "0": "mineralogy:blocks/basalt_smooth", - "2": "mineralogy:blocks/basalt_smooth", - "particle": "mineralogy:blocks/basalt_smooth" + "0": "minecraft:block/polished_basalt_side", + "2": "minecraft:block/polished_basalt_side", + "particle": "minecraft:block/polished_basalt_side" } } diff --git a/src/main/resources/assets/mineralogy/models/block/basalt_relief_hoe_inventory.json b/src/main/resources/assets/mineralogy/models/block/basalt_relief_hoe_inventory.json index b7454e42e..04a1668c9 100644 --- a/src/main/resources/assets/mineralogy/models/block/basalt_relief_hoe_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/basalt_relief_hoe_inventory.json @@ -2,7 +2,7 @@ "parent": "mineralogy:block/relief_hoe_inventory", "textures": { "0": "mineralogy:blocks/marble_smooth", - "2": "mineralogy:blocks/basalt_smooth", + "2": "minecraft:block/polished_basalt_side", "particle": "mineralogy:blocks/marble_smooth" } } diff --git a/src/main/resources/assets/mineralogy/models/block/basalt_relief_horizontal.json b/src/main/resources/assets/mineralogy/models/block/basalt_relief_horizontal.json index b4e87c05f..3b1465505 100644 --- a/src/main/resources/assets/mineralogy/models/block/basalt_relief_horizontal.json +++ b/src/main/resources/assets/mineralogy/models/block/basalt_relief_horizontal.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_horizontal", "textures": { - "0": "mineralogy:blocks/basalt_smooth", - "2": "mineralogy:blocks/basalt_smooth", - "particle": "mineralogy:blocks/basalt_smooth" + "0": "minecraft:block/polished_basalt_side", + "2": "minecraft:block/polished_basalt_side", + "particle": "minecraft:block/polished_basalt_side" } } diff --git a/src/main/resources/assets/mineralogy/models/block/basalt_relief_horizontal_inventory.json b/src/main/resources/assets/mineralogy/models/block/basalt_relief_horizontal_inventory.json index e8d92233f..841330412 100644 --- a/src/main/resources/assets/mineralogy/models/block/basalt_relief_horizontal_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/basalt_relief_horizontal_inventory.json @@ -2,7 +2,7 @@ "parent": "mineralogy:block/relief_horizontal_inventory", "textures": { "0": "mineralogy:blocks/marble_smooth", - "2": "mineralogy:blocks/basalt_smooth", + "2": "minecraft:block/polished_basalt_side", "particle": "mineralogy:blocks/marble_smooth" } } diff --git a/src/main/resources/assets/mineralogy/models/block/basalt_relief_i.json b/src/main/resources/assets/mineralogy/models/block/basalt_relief_i.json index f9267e153..48af4c8a2 100644 --- a/src/main/resources/assets/mineralogy/models/block/basalt_relief_i.json +++ b/src/main/resources/assets/mineralogy/models/block/basalt_relief_i.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_i", "textures": { - "0": "mineralogy:blocks/basalt_smooth", - "2": "mineralogy:blocks/basalt_smooth", - "particle": "mineralogy:blocks/basalt_smooth" + "0": "minecraft:block/polished_basalt_side", + "2": "minecraft:block/polished_basalt_side", + "particle": "minecraft:block/polished_basalt_side" } } diff --git a/src/main/resources/assets/mineralogy/models/block/basalt_relief_i_inventory.json b/src/main/resources/assets/mineralogy/models/block/basalt_relief_i_inventory.json index ae72af0b2..02f097bf7 100644 --- a/src/main/resources/assets/mineralogy/models/block/basalt_relief_i_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/basalt_relief_i_inventory.json @@ -2,7 +2,7 @@ "parent": "mineralogy:block/relief_i_inventory", "textures": { "3": "mineralogy:blocks/marble_smooth", - "4": "mineralogy:blocks/basalt_smooth", - "particle": "mineralogy:blocks/basalt_smooth" + "4": "minecraft:block/polished_basalt_side", + "particle": "minecraft:block/polished_basalt_side" } } diff --git a/src/main/resources/assets/mineralogy/models/block/basalt_relief_left.json b/src/main/resources/assets/mineralogy/models/block/basalt_relief_left.json index ac3d4ba2e..9a1819023 100644 --- a/src/main/resources/assets/mineralogy/models/block/basalt_relief_left.json +++ b/src/main/resources/assets/mineralogy/models/block/basalt_relief_left.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_left", "textures": { - "0": "mineralogy:blocks/basalt_smooth", - "2": "mineralogy:blocks/basalt_smooth", - "particle": "mineralogy:blocks/basalt_smooth" + "0": "minecraft:block/polished_basalt_side", + "2": "minecraft:block/polished_basalt_side", + "particle": "minecraft:block/polished_basalt_side" } } diff --git a/src/main/resources/assets/mineralogy/models/block/basalt_relief_left_inventory.json b/src/main/resources/assets/mineralogy/models/block/basalt_relief_left_inventory.json index deea36bd0..8e0e39bbc 100644 --- a/src/main/resources/assets/mineralogy/models/block/basalt_relief_left_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/basalt_relief_left_inventory.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_left_inventory", "textures": { - "0": "mineralogy:blocks/basalt_smooth", + "0": "minecraft:block/polished_basalt_side", "1": "mineralogy:blocks/marble_smooth", - "particle": "mineralogy:blocks/basalt_smooth" + "particle": "minecraft:block/polished_basalt_side" } } diff --git a/src/main/resources/assets/mineralogy/models/block/basalt_relief_pickaxe.json b/src/main/resources/assets/mineralogy/models/block/basalt_relief_pickaxe.json index 3c2147764..0326758e0 100644 --- a/src/main/resources/assets/mineralogy/models/block/basalt_relief_pickaxe.json +++ b/src/main/resources/assets/mineralogy/models/block/basalt_relief_pickaxe.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_pickaxe", "textures": { - "0": "mineralogy:blocks/basalt_smooth", - "2": "mineralogy:blocks/basalt_smooth", - "particle": "mineralogy:blocks/basalt_smooth" + "0": "minecraft:block/polished_basalt_side", + "2": "minecraft:block/polished_basalt_side", + "particle": "minecraft:block/polished_basalt_side" } } diff --git a/src/main/resources/assets/mineralogy/models/block/basalt_relief_pickaxe_inventory.json b/src/main/resources/assets/mineralogy/models/block/basalt_relief_pickaxe_inventory.json index 06c2a86d5..1db025447 100644 --- a/src/main/resources/assets/mineralogy/models/block/basalt_relief_pickaxe_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/basalt_relief_pickaxe_inventory.json @@ -2,7 +2,7 @@ "parent": "mineralogy:block/relief_pickaxe_inventory", "textures": { "0": "mineralogy:blocks/marble_smooth", - "2": "mineralogy:blocks/basalt_smooth", + "2": "minecraft:block/polished_basalt_side", "particle": "mineralogy:blocks/marble_smooth" } } diff --git a/src/main/resources/assets/mineralogy/models/block/basalt_relief_plus.json b/src/main/resources/assets/mineralogy/models/block/basalt_relief_plus.json index d318d5c29..516589d40 100644 --- a/src/main/resources/assets/mineralogy/models/block/basalt_relief_plus.json +++ b/src/main/resources/assets/mineralogy/models/block/basalt_relief_plus.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_plus", "textures": { - "0": "mineralogy:blocks/basalt_smooth", - "2": "mineralogy:blocks/basalt_smooth", - "particle": "mineralogy:blocks/basalt_smooth" + "0": "minecraft:block/polished_basalt_side", + "2": "minecraft:block/polished_basalt_side", + "particle": "minecraft:block/polished_basalt_side" } } diff --git a/src/main/resources/assets/mineralogy/models/block/basalt_relief_plus_inventory.json b/src/main/resources/assets/mineralogy/models/block/basalt_relief_plus_inventory.json index d12e6d201..998148798 100644 --- a/src/main/resources/assets/mineralogy/models/block/basalt_relief_plus_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/basalt_relief_plus_inventory.json @@ -2,7 +2,7 @@ "parent": "mineralogy:block/relief_plus_inventory", "textures": { "0": "mineralogy:blocks/marble_smooth", - "2": "mineralogy:blocks/basalt_smooth", + "2": "minecraft:block/polished_basalt_side", "particle": "mineralogy:blocks/marble_smooth" } } diff --git a/src/main/resources/assets/mineralogy/models/block/basalt_relief_right.json b/src/main/resources/assets/mineralogy/models/block/basalt_relief_right.json index 85d4dd635..df791d294 100644 --- a/src/main/resources/assets/mineralogy/models/block/basalt_relief_right.json +++ b/src/main/resources/assets/mineralogy/models/block/basalt_relief_right.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_right", "textures": { - "0": "mineralogy:blocks/basalt_smooth", - "2": "mineralogy:blocks/basalt_smooth", - "particle": "mineralogy:blocks/basalt_smooth" + "0": "minecraft:block/polished_basalt_side", + "2": "minecraft:block/polished_basalt_side", + "particle": "minecraft:block/polished_basalt_side" } } diff --git a/src/main/resources/assets/mineralogy/models/block/basalt_relief_right_inventory.json b/src/main/resources/assets/mineralogy/models/block/basalt_relief_right_inventory.json index 0fc805445..24d76de14 100644 --- a/src/main/resources/assets/mineralogy/models/block/basalt_relief_right_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/basalt_relief_right_inventory.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_right_inventory", "textures": { - "0": "mineralogy:blocks/basalt_smooth", + "0": "minecraft:block/polished_basalt_side", "1": "mineralogy:blocks/marble_smooth", - "particle": "mineralogy:blocks/basalt_smooth" + "particle": "minecraft:block/polished_basalt_side" } } diff --git a/src/main/resources/assets/mineralogy/models/block/basalt_relief_sword.json b/src/main/resources/assets/mineralogy/models/block/basalt_relief_sword.json index 44a61863a..12aafcf04 100644 --- a/src/main/resources/assets/mineralogy/models/block/basalt_relief_sword.json +++ b/src/main/resources/assets/mineralogy/models/block/basalt_relief_sword.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_sword", "textures": { - "0": "mineralogy:blocks/basalt_smooth", - "2": "mineralogy:blocks/basalt_smooth", - "particle": "mineralogy:blocks/basalt_smooth" + "0": "minecraft:block/polished_basalt_side", + "2": "minecraft:block/polished_basalt_side", + "particle": "minecraft:block/polished_basalt_side" } } diff --git a/src/main/resources/assets/mineralogy/models/block/basalt_relief_sword_inventory.json b/src/main/resources/assets/mineralogy/models/block/basalt_relief_sword_inventory.json index 5759e1124..93d5ccc01 100644 --- a/src/main/resources/assets/mineralogy/models/block/basalt_relief_sword_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/basalt_relief_sword_inventory.json @@ -2,7 +2,7 @@ "parent": "mineralogy:block/relief_sword_inventory", "textures": { "0": "mineralogy:blocks/marble_smooth", - "2": "mineralogy:blocks/basalt_smooth", + "2": "minecraft:block/polished_basalt_side", "particle": "mineralogy:blocks/marble_smooth" } } diff --git a/src/main/resources/assets/mineralogy/models/block/basalt_relief_vertical.json b/src/main/resources/assets/mineralogy/models/block/basalt_relief_vertical.json index b375b9f58..da0d582f4 100644 --- a/src/main/resources/assets/mineralogy/models/block/basalt_relief_vertical.json +++ b/src/main/resources/assets/mineralogy/models/block/basalt_relief_vertical.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_vertical", "textures": { - "0": "mineralogy:blocks/basalt_smooth", - "2": "mineralogy:blocks/basalt_smooth", - "particle": "mineralogy:blocks/basalt_smooth" + "0": "minecraft:block/polished_basalt_side", + "2": "minecraft:block/polished_basalt_side", + "particle": "minecraft:block/polished_basalt_side" } } diff --git a/src/main/resources/assets/mineralogy/models/block/basalt_relief_vertical_inventory.json b/src/main/resources/assets/mineralogy/models/block/basalt_relief_vertical_inventory.json index 84a21f3c6..71c86ad8b 100644 --- a/src/main/resources/assets/mineralogy/models/block/basalt_relief_vertical_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/basalt_relief_vertical_inventory.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_vertical_inventory", "textures": { - "0": "mineralogy:blocks/basalt_smooth", + "0": "minecraft:block/polished_basalt_side", "1": "mineralogy:blocks/marble_smooth", - "particle": "mineralogy:blocks/basalt_smooth" + "particle": "minecraft:block/polished_basalt_side" } } diff --git a/src/main/resources/assets/mineralogy/models/block/basalt_slab.json b/src/main/resources/assets/mineralogy/models/block/basalt_slab.json index 8c7ad9bc2..79fbd6ca6 100644 --- a/src/main/resources/assets/mineralogy/models/block/basalt_slab.json +++ b/src/main/resources/assets/mineralogy/models/block/basalt_slab.json @@ -1,7 +1,7 @@ { "parent": "mineralogy:block/slab", "textures": { - "face": "mineralogy:blocks/basalt", - "side": "mineralogy:blocks/basalt" + "face": "minecraft:block/basalt_top", + "side": "minecraft:block/basalt_side" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/basalt_smooth.json b/src/main/resources/assets/mineralogy/models/block/basalt_smooth.json index b7d51a183..ce0ac3f81 100644 --- a/src/main/resources/assets/mineralogy/models/block/basalt_smooth.json +++ b/src/main/resources/assets/mineralogy/models/block/basalt_smooth.json @@ -1,6 +1,7 @@ { - "parent": "mineralogy:block/block", + "parent": "minecraft:block/cube_column", "textures": { - "face": "mineralogy:blocks/basalt_smooth" + "end": "minecraft:block/polished_basalt_top", + "side": "minecraft:block/polished_basalt_side" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/basalt_smooth_double_slab.json b/src/main/resources/assets/mineralogy/models/block/basalt_smooth_double_slab.json index 0e42554cc..1e9046fed 100644 --- a/src/main/resources/assets/mineralogy/models/block/basalt_smooth_double_slab.json +++ b/src/main/resources/assets/mineralogy/models/block/basalt_smooth_double_slab.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/brick", "textures": { - "top": "mineralogy:blocks/basalt_smooth", - "bottom": "mineralogy:blocks/basalt_smooth", - "side": "mineralogy:blocks/basalt_smooth" + "top": "minecraft:block/polished_basalt_top", + "bottom": "minecraft:block/polished_basalt_top", + "side": "minecraft:block/polished_basalt_side" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/basalt_smooth_furnace.json b/src/main/resources/assets/mineralogy/models/block/basalt_smooth_furnace.json index 57209a61c..6a98720b4 100644 --- a/src/main/resources/assets/mineralogy/models/block/basalt_smooth_furnace.json +++ b/src/main/resources/assets/mineralogy/models/block/basalt_smooth_furnace.json @@ -1,8 +1,8 @@ { "parent": "block/orientable", "textures": { - "top": "mineralogy:blocks/basalt_smooth", + "top": "minecraft:block/polished_basalt_top", "front": "mineralogy:blocks/basalt_smooth_furnace_front_off", - "side": "mineralogy:blocks/basalt_smooth" + "side": "minecraft:block/polished_basalt_side" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/basalt_smooth_slab.json b/src/main/resources/assets/mineralogy/models/block/basalt_smooth_slab.json index 5acdfe0ae..14a4cca1a 100644 --- a/src/main/resources/assets/mineralogy/models/block/basalt_smooth_slab.json +++ b/src/main/resources/assets/mineralogy/models/block/basalt_smooth_slab.json @@ -1,7 +1,7 @@ { "parent": "mineralogy:block/slab", "textures": { - "face": "mineralogy:blocks/basalt_smooth", - "side": "mineralogy:blocks/basalt_smooth" + "face": "minecraft:block/polished_basalt_top", + "side": "minecraft:block/polished_basalt_side" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/basalt_smooth_stairs.json b/src/main/resources/assets/mineralogy/models/block/basalt_smooth_stairs.json index 3c07aae5a..942cb3971 100644 --- a/src/main/resources/assets/mineralogy/models/block/basalt_smooth_stairs.json +++ b/src/main/resources/assets/mineralogy/models/block/basalt_smooth_stairs.json @@ -1,7 +1,7 @@ { "parent": "mineralogy:block/stairs_normal", "textures": { - "face": "mineralogy:blocks/basalt_smooth", - "side": "mineralogy:blocks/basalt_smooth" + "face": "minecraft:block/polished_basalt_top", + "side": "minecraft:block/polished_basalt_side" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/basalt_smooth_stairs_inner.json b/src/main/resources/assets/mineralogy/models/block/basalt_smooth_stairs_inner.json index f04aa82d5..1a8e9beb2 100644 --- a/src/main/resources/assets/mineralogy/models/block/basalt_smooth_stairs_inner.json +++ b/src/main/resources/assets/mineralogy/models/block/basalt_smooth_stairs_inner.json @@ -1,7 +1,7 @@ { "parent": "mineralogy:block/stairs_inner", "textures": { - "face": "mineralogy:blocks/basalt_smooth", - "side": "mineralogy:blocks/basalt_smooth" + "face": "minecraft:block/polished_basalt_top", + "side": "minecraft:block/polished_basalt_side" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/basalt_smooth_stairs_outer.json b/src/main/resources/assets/mineralogy/models/block/basalt_smooth_stairs_outer.json index 4d56e3509..f75ffcabd 100644 --- a/src/main/resources/assets/mineralogy/models/block/basalt_smooth_stairs_outer.json +++ b/src/main/resources/assets/mineralogy/models/block/basalt_smooth_stairs_outer.json @@ -1,7 +1,7 @@ { "parent": "mineralogy:block/stairs_outer", "textures": { - "face": "mineralogy:blocks/basalt_smooth", - "side": "mineralogy:blocks/basalt_smooth" + "face": "minecraft:block/polished_basalt_top", + "side": "minecraft:block/polished_basalt_side" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/basalt_smooth_wall_inventory.json b/src/main/resources/assets/mineralogy/models/block/basalt_smooth_wall_inventory.json index a80fc3f7e..75036308d 100644 --- a/src/main/resources/assets/mineralogy/models/block/basalt_smooth_wall_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/basalt_smooth_wall_inventory.json @@ -1,6 +1,6 @@ { "parent": "block/wall_inventory", "textures": { - "wall": "mineralogy:blocks/basalt_smooth" + "wall": "minecraft:block/polished_basalt_side" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/basalt_smooth_wall_post.json b/src/main/resources/assets/mineralogy/models/block/basalt_smooth_wall_post.json index 9b9f6fdde..710f36654 100644 --- a/src/main/resources/assets/mineralogy/models/block/basalt_smooth_wall_post.json +++ b/src/main/resources/assets/mineralogy/models/block/basalt_smooth_wall_post.json @@ -1,6 +1,6 @@ { "parent": "minecraft:block/template_wall_post", "textures": { - "wall": "mineralogy:blocks/basalt_smooth" + "wall": "minecraft:block/polished_basalt_side" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/basalt_smooth_wall_side.json b/src/main/resources/assets/mineralogy/models/block/basalt_smooth_wall_side.json index 80d04b54e..00c04b93a 100644 --- a/src/main/resources/assets/mineralogy/models/block/basalt_smooth_wall_side.json +++ b/src/main/resources/assets/mineralogy/models/block/basalt_smooth_wall_side.json @@ -1,6 +1,6 @@ { "parent": "minecraft:block/template_wall_side", "textures": { - "wall": "mineralogy:blocks/basalt_smooth" + "wall": "minecraft:block/polished_basalt_side" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/basalt_smooth_wall_side_tall.json b/src/main/resources/assets/mineralogy/models/block/basalt_smooth_wall_side_tall.json index d5b27ecfe..fd6a2a845 100644 --- a/src/main/resources/assets/mineralogy/models/block/basalt_smooth_wall_side_tall.json +++ b/src/main/resources/assets/mineralogy/models/block/basalt_smooth_wall_side_tall.json @@ -1,6 +1,6 @@ { "parent": "minecraft:block/template_wall_side_tall", "textures": { - "wall": "mineralogy:blocks/basalt_smooth" + "wall": "minecraft:block/polished_basalt_side" } } diff --git a/src/main/resources/assets/mineralogy/models/block/basalt_stairs.json b/src/main/resources/assets/mineralogy/models/block/basalt_stairs.json index ddf500139..23214f0d1 100644 --- a/src/main/resources/assets/mineralogy/models/block/basalt_stairs.json +++ b/src/main/resources/assets/mineralogy/models/block/basalt_stairs.json @@ -1,7 +1,7 @@ { "parent": "mineralogy:block/stairs_normal", "textures": { - "face": "mineralogy:blocks/basalt", - "side": "mineralogy:blocks/basalt" + "face": "minecraft:block/basalt_top", + "side": "minecraft:block/basalt_side" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/basalt_stairs_inner.json b/src/main/resources/assets/mineralogy/models/block/basalt_stairs_inner.json index f2c21dfe1..276352ed4 100644 --- a/src/main/resources/assets/mineralogy/models/block/basalt_stairs_inner.json +++ b/src/main/resources/assets/mineralogy/models/block/basalt_stairs_inner.json @@ -1,7 +1,7 @@ { "parent": "mineralogy:block/stairs_inner", "textures": { - "face": "mineralogy:blocks/basalt", - "side": "mineralogy:blocks/basalt" + "face": "minecraft:block/basalt_top", + "side": "minecraft:block/basalt_side" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/basalt_stairs_outer.json b/src/main/resources/assets/mineralogy/models/block/basalt_stairs_outer.json index 356032ac1..4fb343741 100644 --- a/src/main/resources/assets/mineralogy/models/block/basalt_stairs_outer.json +++ b/src/main/resources/assets/mineralogy/models/block/basalt_stairs_outer.json @@ -1,7 +1,7 @@ { "parent": "mineralogy:block/stairs_outer", "textures": { - "face": "mineralogy:blocks/basalt", - "side": "mineralogy:blocks/basalt" + "face": "minecraft:block/basalt_top", + "side": "minecraft:block/basalt_side" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/basalt_wall_inventory.json b/src/main/resources/assets/mineralogy/models/block/basalt_wall_inventory.json index 040aefcfb..20faf4016 100644 --- a/src/main/resources/assets/mineralogy/models/block/basalt_wall_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/basalt_wall_inventory.json @@ -1,6 +1,6 @@ { "parent": "block/wall_inventory", "textures": { - "wall": "mineralogy:blocks/basalt" + "wall": "minecraft:block/basalt_side" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/basalt_wall_post.json b/src/main/resources/assets/mineralogy/models/block/basalt_wall_post.json index 6383bc313..f3f796022 100644 --- a/src/main/resources/assets/mineralogy/models/block/basalt_wall_post.json +++ b/src/main/resources/assets/mineralogy/models/block/basalt_wall_post.json @@ -1,6 +1,6 @@ { "parent": "minecraft:block/template_wall_post", "textures": { - "wall": "mineralogy:blocks/basalt" + "wall": "minecraft:block/basalt_side" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/basalt_wall_side.json b/src/main/resources/assets/mineralogy/models/block/basalt_wall_side.json index 935fa1b67..aec29fdc5 100644 --- a/src/main/resources/assets/mineralogy/models/block/basalt_wall_side.json +++ b/src/main/resources/assets/mineralogy/models/block/basalt_wall_side.json @@ -1,6 +1,6 @@ { "parent": "minecraft:block/template_wall_side", "textures": { - "wall": "mineralogy:blocks/basalt" + "wall": "minecraft:block/basalt_side" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/basalt_wall_side_tall.json b/src/main/resources/assets/mineralogy/models/block/basalt_wall_side_tall.json index fc8435239..736adf8db 100644 --- a/src/main/resources/assets/mineralogy/models/block/basalt_wall_side_tall.json +++ b/src/main/resources/assets/mineralogy/models/block/basalt_wall_side_tall.json @@ -1,6 +1,6 @@ { "parent": "minecraft:block/template_wall_side_tall", "textures": { - "wall": "mineralogy:blocks/basalt" + "wall": "minecraft:block/basalt_side" } } diff --git a/src/main/resources/assets/mineralogy/models/block/diorite.json b/src/main/resources/assets/mineralogy/models/block/diorite.json index 6d28c2545..7f6f2de28 100644 --- a/src/main/resources/assets/mineralogy/models/block/diorite.json +++ b/src/main/resources/assets/mineralogy/models/block/diorite.json @@ -1,6 +1,6 @@ { "parent": "mineralogy:block/block", "textures": { - "face": "mineralogy:blocks/diorite" + "face": "minecraft:block/diorite" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/diorite_double_slab.json b/src/main/resources/assets/mineralogy/models/block/diorite_double_slab.json index 8d4d0c87b..7a4da3f77 100644 --- a/src/main/resources/assets/mineralogy/models/block/diorite_double_slab.json +++ b/src/main/resources/assets/mineralogy/models/block/diorite_double_slab.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/brick", "textures": { - "top": "mineralogy:blocks/diorite", - "bottom": "mineralogy:blocks/diorite", - "side": "mineralogy:blocks/diorite" + "top": "minecraft:block/diorite", + "bottom": "minecraft:block/diorite", + "side": "minecraft:block/diorite" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/diorite_furnace.json b/src/main/resources/assets/mineralogy/models/block/diorite_furnace.json index 61e9ba892..1150c90e3 100644 --- a/src/main/resources/assets/mineralogy/models/block/diorite_furnace.json +++ b/src/main/resources/assets/mineralogy/models/block/diorite_furnace.json @@ -1,8 +1,8 @@ { "parent": "block/orientable", "textures": { - "top": "mineralogy:blocks/diorite", + "top": "minecraft:block/diorite", "front": "mineralogy:blocks/diorite_furnace_front_off", - "side": "mineralogy:blocks/diorite" + "side": "minecraft:block/diorite" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/diorite_relief_axe.json b/src/main/resources/assets/mineralogy/models/block/diorite_relief_axe.json index 09988bb51..e125d1ecc 100644 --- a/src/main/resources/assets/mineralogy/models/block/diorite_relief_axe.json +++ b/src/main/resources/assets/mineralogy/models/block/diorite_relief_axe.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_axe", "textures": { - "0": "mineralogy:blocks/diorite_smooth", - "2": "mineralogy:blocks/diorite_smooth", - "particle": "mineralogy:blocks/diorite_smooth" + "0": "minecraft:block/polished_diorite", + "2": "minecraft:block/polished_diorite", + "particle": "minecraft:block/polished_diorite" } } diff --git a/src/main/resources/assets/mineralogy/models/block/diorite_relief_axe_inventory.json b/src/main/resources/assets/mineralogy/models/block/diorite_relief_axe_inventory.json index 1eadbb86e..bc4140506 100644 --- a/src/main/resources/assets/mineralogy/models/block/diorite_relief_axe_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/diorite_relief_axe_inventory.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_axe_inventory", "textures": { - "0": "mineralogy:blocks/basalt_smooth", - "2": "mineralogy:blocks/diorite_smooth", - "particle": "mineralogy:blocks/basalt_smooth" + "0": "minecraft:block/polished_basalt_side", + "2": "minecraft:block/polished_diorite", + "particle": "minecraft:block/polished_basalt_side" } } diff --git a/src/main/resources/assets/mineralogy/models/block/diorite_relief_blank.json b/src/main/resources/assets/mineralogy/models/block/diorite_relief_blank.json index ec77577da..0f9316efd 100644 --- a/src/main/resources/assets/mineralogy/models/block/diorite_relief_blank.json +++ b/src/main/resources/assets/mineralogy/models/block/diorite_relief_blank.json @@ -1,7 +1,7 @@ { "parent": "mineralogy:block/relief_blank", "textures": { - "0": "mineralogy:blocks/diorite_smooth", - "particle": "mineralogy:blocks/diorite_smooth" + "0": "minecraft:block/polished_diorite", + "particle": "minecraft:block/polished_diorite" } } diff --git a/src/main/resources/assets/mineralogy/models/block/diorite_relief_blank_inventory.json b/src/main/resources/assets/mineralogy/models/block/diorite_relief_blank_inventory.json index dfc4ecbc9..a0cbca4bf 100644 --- a/src/main/resources/assets/mineralogy/models/block/diorite_relief_blank_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/diorite_relief_blank_inventory.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_blank_inventory", "textures": { - "0": "mineralogy:blocks/diorite_smooth", - "1": "mineralogy:blocks/basalt_smooth", - "particle": "mineralogy:blocks/diorite_smooth" + "0": "minecraft:block/polished_diorite", + "1": "minecraft:block/polished_basalt_side", + "particle": "minecraft:block/polished_diorite" } } diff --git a/src/main/resources/assets/mineralogy/models/block/diorite_relief_cross.json b/src/main/resources/assets/mineralogy/models/block/diorite_relief_cross.json index b8e1e4952..a9baf15a7 100644 --- a/src/main/resources/assets/mineralogy/models/block/diorite_relief_cross.json +++ b/src/main/resources/assets/mineralogy/models/block/diorite_relief_cross.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_cross", "textures": { - "0": "mineralogy:blocks/diorite_smooth", - "2": "mineralogy:blocks/diorite_smooth", - "particle": "mineralogy:blocks/diorite_smooth" + "0": "minecraft:block/polished_diorite", + "2": "minecraft:block/polished_diorite", + "particle": "minecraft:block/polished_diorite" } } diff --git a/src/main/resources/assets/mineralogy/models/block/diorite_relief_cross_inventory.json b/src/main/resources/assets/mineralogy/models/block/diorite_relief_cross_inventory.json index e44be7854..92a9495fe 100644 --- a/src/main/resources/assets/mineralogy/models/block/diorite_relief_cross_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/diorite_relief_cross_inventory.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_cross_inventory", "textures": { - "0": "mineralogy:blocks/basalt_smooth", - "2": "mineralogy:blocks/diorite_smooth", - "particle": "mineralogy:blocks/basalt_smooth" + "0": "minecraft:block/polished_basalt_side", + "2": "minecraft:block/polished_diorite", + "particle": "minecraft:block/polished_basalt_side" } } diff --git a/src/main/resources/assets/mineralogy/models/block/diorite_relief_hammer.json b/src/main/resources/assets/mineralogy/models/block/diorite_relief_hammer.json index 38e606227..1a627ccf3 100644 --- a/src/main/resources/assets/mineralogy/models/block/diorite_relief_hammer.json +++ b/src/main/resources/assets/mineralogy/models/block/diorite_relief_hammer.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_hammer", "textures": { - "0": "mineralogy:blocks/diorite_smooth", - "2": "mineralogy:blocks/diorite_smooth", - "particle": "mineralogy:blocks/diorite_smooth" + "0": "minecraft:block/polished_diorite", + "2": "minecraft:block/polished_diorite", + "particle": "minecraft:block/polished_diorite" } } diff --git a/src/main/resources/assets/mineralogy/models/block/diorite_relief_hammer_inventory.json b/src/main/resources/assets/mineralogy/models/block/diorite_relief_hammer_inventory.json index fe9370684..e566988a5 100644 --- a/src/main/resources/assets/mineralogy/models/block/diorite_relief_hammer_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/diorite_relief_hammer_inventory.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_hammer_inventory", "textures": { - "0": "mineralogy:blocks/diorite_smooth", - "1": "mineralogy:blocks/basalt_smooth", - "particle": "mineralogy:blocks/diorite_smooth" + "0": "minecraft:block/polished_diorite", + "1": "minecraft:block/polished_basalt_side", + "particle": "minecraft:block/polished_diorite" } } diff --git a/src/main/resources/assets/mineralogy/models/block/diorite_relief_hoe.json b/src/main/resources/assets/mineralogy/models/block/diorite_relief_hoe.json index 504a6dc47..30ab48038 100644 --- a/src/main/resources/assets/mineralogy/models/block/diorite_relief_hoe.json +++ b/src/main/resources/assets/mineralogy/models/block/diorite_relief_hoe.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_hoe", "textures": { - "0": "mineralogy:blocks/diorite_smooth", - "2": "mineralogy:blocks/diorite_smooth", - "particle": "mineralogy:blocks/diorite_smooth" + "0": "minecraft:block/polished_diorite", + "2": "minecraft:block/polished_diorite", + "particle": "minecraft:block/polished_diorite" } } diff --git a/src/main/resources/assets/mineralogy/models/block/diorite_relief_hoe_inventory.json b/src/main/resources/assets/mineralogy/models/block/diorite_relief_hoe_inventory.json index 5eee79a0a..f1c61ce2e 100644 --- a/src/main/resources/assets/mineralogy/models/block/diorite_relief_hoe_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/diorite_relief_hoe_inventory.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_hoe_inventory", "textures": { - "0": "mineralogy:blocks/basalt_smooth", - "2": "mineralogy:blocks/diorite_smooth", - "particle": "mineralogy:blocks/basalt_smooth" + "0": "minecraft:block/polished_basalt_side", + "2": "minecraft:block/polished_diorite", + "particle": "minecraft:block/polished_basalt_side" } } diff --git a/src/main/resources/assets/mineralogy/models/block/diorite_relief_horizontal.json b/src/main/resources/assets/mineralogy/models/block/diorite_relief_horizontal.json index 4a3fec274..84599b0d8 100644 --- a/src/main/resources/assets/mineralogy/models/block/diorite_relief_horizontal.json +++ b/src/main/resources/assets/mineralogy/models/block/diorite_relief_horizontal.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_horizontal", "textures": { - "0": "mineralogy:blocks/diorite_smooth", - "2": "mineralogy:blocks/diorite_smooth", - "particle": "mineralogy:blocks/diorite_smooth" + "0": "minecraft:block/polished_diorite", + "2": "minecraft:block/polished_diorite", + "particle": "minecraft:block/polished_diorite" } } diff --git a/src/main/resources/assets/mineralogy/models/block/diorite_relief_horizontal_inventory.json b/src/main/resources/assets/mineralogy/models/block/diorite_relief_horizontal_inventory.json index 8ef80f944..3802a39ef 100644 --- a/src/main/resources/assets/mineralogy/models/block/diorite_relief_horizontal_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/diorite_relief_horizontal_inventory.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_horizontal_inventory", "textures": { - "0": "mineralogy:blocks/basalt_smooth", - "2": "mineralogy:blocks/diorite_smooth", - "particle": "mineralogy:blocks/basalt_smooth" + "0": "minecraft:block/polished_basalt_side", + "2": "minecraft:block/polished_diorite", + "particle": "minecraft:block/polished_basalt_side" } } diff --git a/src/main/resources/assets/mineralogy/models/block/diorite_relief_i.json b/src/main/resources/assets/mineralogy/models/block/diorite_relief_i.json index 7b9e8f6c5..3bef4940d 100644 --- a/src/main/resources/assets/mineralogy/models/block/diorite_relief_i.json +++ b/src/main/resources/assets/mineralogy/models/block/diorite_relief_i.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_i", "textures": { - "0": "mineralogy:blocks/diorite_smooth", - "2": "mineralogy:blocks/diorite_smooth", - "particle": "mineralogy:blocks/diorite_smooth" + "0": "minecraft:block/polished_diorite", + "2": "minecraft:block/polished_diorite", + "particle": "minecraft:block/polished_diorite" } } diff --git a/src/main/resources/assets/mineralogy/models/block/diorite_relief_i_inventory.json b/src/main/resources/assets/mineralogy/models/block/diorite_relief_i_inventory.json index 00f4a43df..4282b2a70 100644 --- a/src/main/resources/assets/mineralogy/models/block/diorite_relief_i_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/diorite_relief_i_inventory.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_i_inventory", "textures": { - "3": "mineralogy:blocks/basalt_smooth", - "4": "mineralogy:blocks/diorite_smooth", - "particle": "mineralogy:blocks/diorite_smooth" + "3": "minecraft:block/polished_basalt_side", + "4": "minecraft:block/polished_diorite", + "particle": "minecraft:block/polished_diorite" } } diff --git a/src/main/resources/assets/mineralogy/models/block/diorite_relief_left.json b/src/main/resources/assets/mineralogy/models/block/diorite_relief_left.json index 28eee5172..8b13f1477 100644 --- a/src/main/resources/assets/mineralogy/models/block/diorite_relief_left.json +++ b/src/main/resources/assets/mineralogy/models/block/diorite_relief_left.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_left", "textures": { - "0": "mineralogy:blocks/diorite_smooth", - "2": "mineralogy:blocks/diorite_smooth", - "particle": "mineralogy:blocks/diorite_smooth" + "0": "minecraft:block/polished_diorite", + "2": "minecraft:block/polished_diorite", + "particle": "minecraft:block/polished_diorite" } } diff --git a/src/main/resources/assets/mineralogy/models/block/diorite_relief_left_inventory.json b/src/main/resources/assets/mineralogy/models/block/diorite_relief_left_inventory.json index a443b3be2..e003cf672 100644 --- a/src/main/resources/assets/mineralogy/models/block/diorite_relief_left_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/diorite_relief_left_inventory.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_left_inventory", "textures": { - "0": "mineralogy:blocks/diorite_smooth", - "1": "mineralogy:blocks/basalt_smooth", - "particle": "mineralogy:blocks/diorite_smooth" + "0": "minecraft:block/polished_diorite", + "1": "minecraft:block/polished_basalt_side", + "particle": "minecraft:block/polished_diorite" } } diff --git a/src/main/resources/assets/mineralogy/models/block/diorite_relief_pickaxe.json b/src/main/resources/assets/mineralogy/models/block/diorite_relief_pickaxe.json index e7b060d6a..67dde2fb7 100644 --- a/src/main/resources/assets/mineralogy/models/block/diorite_relief_pickaxe.json +++ b/src/main/resources/assets/mineralogy/models/block/diorite_relief_pickaxe.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_pickaxe", "textures": { - "0": "mineralogy:blocks/diorite_smooth", - "2": "mineralogy:blocks/diorite_smooth", - "particle": "mineralogy:blocks/diorite_smooth" + "0": "minecraft:block/polished_diorite", + "2": "minecraft:block/polished_diorite", + "particle": "minecraft:block/polished_diorite" } } diff --git a/src/main/resources/assets/mineralogy/models/block/diorite_relief_pickaxe_inventory.json b/src/main/resources/assets/mineralogy/models/block/diorite_relief_pickaxe_inventory.json index 48f21048f..6359ac74b 100644 --- a/src/main/resources/assets/mineralogy/models/block/diorite_relief_pickaxe_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/diorite_relief_pickaxe_inventory.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_pickaxe_inventory", "textures": { - "0": "mineralogy:blocks/basalt_smooth", - "2": "mineralogy:blocks/diorite_smooth", - "particle": "mineralogy:blocks/basalt_smooth" + "0": "minecraft:block/polished_basalt_side", + "2": "minecraft:block/polished_diorite", + "particle": "minecraft:block/polished_basalt_side" } } diff --git a/src/main/resources/assets/mineralogy/models/block/diorite_relief_plus.json b/src/main/resources/assets/mineralogy/models/block/diorite_relief_plus.json index 7ebfcf380..040bcbce8 100644 --- a/src/main/resources/assets/mineralogy/models/block/diorite_relief_plus.json +++ b/src/main/resources/assets/mineralogy/models/block/diorite_relief_plus.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_plus", "textures": { - "0": "mineralogy:blocks/diorite_smooth", - "2": "mineralogy:blocks/diorite_smooth", - "particle": "mineralogy:blocks/diorite_smooth" + "0": "minecraft:block/polished_diorite", + "2": "minecraft:block/polished_diorite", + "particle": "minecraft:block/polished_diorite" } } diff --git a/src/main/resources/assets/mineralogy/models/block/diorite_relief_plus_inventory.json b/src/main/resources/assets/mineralogy/models/block/diorite_relief_plus_inventory.json index 6bc9acd07..333b0e8af 100644 --- a/src/main/resources/assets/mineralogy/models/block/diorite_relief_plus_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/diorite_relief_plus_inventory.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_plus_inventory", "textures": { - "0": "mineralogy:blocks/basalt_smooth", - "2": "mineralogy:blocks/diorite_smooth", - "particle": "mineralogy:blocks/basalt_smooth" + "0": "minecraft:block/polished_basalt_side", + "2": "minecraft:block/polished_diorite", + "particle": "minecraft:block/polished_basalt_side" } } diff --git a/src/main/resources/assets/mineralogy/models/block/diorite_relief_right.json b/src/main/resources/assets/mineralogy/models/block/diorite_relief_right.json index 37b644fb9..0f45fd009 100644 --- a/src/main/resources/assets/mineralogy/models/block/diorite_relief_right.json +++ b/src/main/resources/assets/mineralogy/models/block/diorite_relief_right.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_right", "textures": { - "0": "mineralogy:blocks/diorite_smooth", - "2": "mineralogy:blocks/diorite_smooth", - "particle": "mineralogy:blocks/diorite_smooth" + "0": "minecraft:block/polished_diorite", + "2": "minecraft:block/polished_diorite", + "particle": "minecraft:block/polished_diorite" } } diff --git a/src/main/resources/assets/mineralogy/models/block/diorite_relief_right_inventory.json b/src/main/resources/assets/mineralogy/models/block/diorite_relief_right_inventory.json index 52a14307d..7cc0a9fb0 100644 --- a/src/main/resources/assets/mineralogy/models/block/diorite_relief_right_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/diorite_relief_right_inventory.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_right_inventory", "textures": { - "0": "mineralogy:blocks/diorite_smooth", - "1": "mineralogy:blocks/basalt_smooth", - "particle": "mineralogy:blocks/diorite_smooth" + "0": "minecraft:block/polished_diorite", + "1": "minecraft:block/polished_basalt_side", + "particle": "minecraft:block/polished_diorite" } } diff --git a/src/main/resources/assets/mineralogy/models/block/diorite_relief_sword.json b/src/main/resources/assets/mineralogy/models/block/diorite_relief_sword.json index dc348233d..5c72cf1cd 100644 --- a/src/main/resources/assets/mineralogy/models/block/diorite_relief_sword.json +++ b/src/main/resources/assets/mineralogy/models/block/diorite_relief_sword.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_sword", "textures": { - "0": "mineralogy:blocks/diorite_smooth", - "2": "mineralogy:blocks/diorite_smooth", - "particle": "mineralogy:blocks/diorite_smooth" + "0": "minecraft:block/polished_diorite", + "2": "minecraft:block/polished_diorite", + "particle": "minecraft:block/polished_diorite" } } diff --git a/src/main/resources/assets/mineralogy/models/block/diorite_relief_sword_inventory.json b/src/main/resources/assets/mineralogy/models/block/diorite_relief_sword_inventory.json index bc9b638fa..e9dd24038 100644 --- a/src/main/resources/assets/mineralogy/models/block/diorite_relief_sword_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/diorite_relief_sword_inventory.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_sword_inventory", "textures": { - "0": "mineralogy:blocks/basalt_smooth", - "2": "mineralogy:blocks/diorite_smooth", - "particle": "mineralogy:blocks/basalt_smooth" + "0": "minecraft:block/polished_basalt_side", + "2": "minecraft:block/polished_diorite", + "particle": "minecraft:block/polished_basalt_side" } } diff --git a/src/main/resources/assets/mineralogy/models/block/diorite_relief_vertical.json b/src/main/resources/assets/mineralogy/models/block/diorite_relief_vertical.json index 37afcaa3e..5420578b0 100644 --- a/src/main/resources/assets/mineralogy/models/block/diorite_relief_vertical.json +++ b/src/main/resources/assets/mineralogy/models/block/diorite_relief_vertical.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_vertical", "textures": { - "0": "mineralogy:blocks/diorite_smooth", - "2": "mineralogy:blocks/diorite_smooth", - "particle": "mineralogy:blocks/diorite_smooth" + "0": "minecraft:block/polished_diorite", + "2": "minecraft:block/polished_diorite", + "particle": "minecraft:block/polished_diorite" } } diff --git a/src/main/resources/assets/mineralogy/models/block/diorite_relief_vertical_inventory.json b/src/main/resources/assets/mineralogy/models/block/diorite_relief_vertical_inventory.json index dbbc26e5b..7509e1655 100644 --- a/src/main/resources/assets/mineralogy/models/block/diorite_relief_vertical_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/diorite_relief_vertical_inventory.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_vertical_inventory", "textures": { - "0": "mineralogy:blocks/diorite_smooth", - "1": "mineralogy:blocks/basalt_smooth", - "particle": "mineralogy:blocks/diorite_smooth" + "0": "minecraft:block/polished_diorite", + "1": "minecraft:block/polished_basalt_side", + "particle": "minecraft:block/polished_diorite" } } diff --git a/src/main/resources/assets/mineralogy/models/block/diorite_slab.json b/src/main/resources/assets/mineralogy/models/block/diorite_slab.json index 08fcbebc0..47ffdb02c 100644 --- a/src/main/resources/assets/mineralogy/models/block/diorite_slab.json +++ b/src/main/resources/assets/mineralogy/models/block/diorite_slab.json @@ -1,7 +1,7 @@ { "parent": "mineralogy:block/slab", "textures": { - "face": "mineralogy:blocks/diorite", - "side": "mineralogy:blocks/diorite" + "face": "minecraft:block/diorite", + "side": "minecraft:block/diorite" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/diorite_smooth.json b/src/main/resources/assets/mineralogy/models/block/diorite_smooth.json index 8fd181d09..d6b329422 100644 --- a/src/main/resources/assets/mineralogy/models/block/diorite_smooth.json +++ b/src/main/resources/assets/mineralogy/models/block/diorite_smooth.json @@ -1,6 +1,6 @@ { "parent": "mineralogy:block/block", "textures": { - "face": "mineralogy:blocks/diorite_smooth" + "face": "minecraft:block/polished_diorite" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/diorite_smooth_double_slab.json b/src/main/resources/assets/mineralogy/models/block/diorite_smooth_double_slab.json index c3af853c4..83f37014b 100644 --- a/src/main/resources/assets/mineralogy/models/block/diorite_smooth_double_slab.json +++ b/src/main/resources/assets/mineralogy/models/block/diorite_smooth_double_slab.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/brick", "textures": { - "top": "mineralogy:blocks/diorite_smooth", - "bottom": "mineralogy:blocks/diorite_smooth", - "side": "mineralogy:blocks/diorite_smooth" + "top": "minecraft:block/polished_diorite", + "bottom": "minecraft:block/polished_diorite", + "side": "minecraft:block/polished_diorite" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/diorite_smooth_furnace.json b/src/main/resources/assets/mineralogy/models/block/diorite_smooth_furnace.json index ba97951bc..c89f536b8 100644 --- a/src/main/resources/assets/mineralogy/models/block/diorite_smooth_furnace.json +++ b/src/main/resources/assets/mineralogy/models/block/diorite_smooth_furnace.json @@ -1,8 +1,8 @@ { "parent": "block/orientable", "textures": { - "top": "mineralogy:blocks/diorite_smooth", + "top": "minecraft:block/polished_diorite", "front": "mineralogy:blocks/diorite_smooth_furnace_front_off", - "side": "mineralogy:blocks/diorite_smooth" + "side": "minecraft:block/polished_diorite" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/diorite_smooth_slab.json b/src/main/resources/assets/mineralogy/models/block/diorite_smooth_slab.json index be65fa6e3..a0884fa25 100644 --- a/src/main/resources/assets/mineralogy/models/block/diorite_smooth_slab.json +++ b/src/main/resources/assets/mineralogy/models/block/diorite_smooth_slab.json @@ -1,7 +1,7 @@ { "parent": "mineralogy:block/slab", "textures": { - "face": "mineralogy:blocks/diorite_smooth", - "side": "mineralogy:blocks/diorite_smooth" + "face": "minecraft:block/polished_diorite", + "side": "minecraft:block/polished_diorite" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/diorite_smooth_stairs.json b/src/main/resources/assets/mineralogy/models/block/diorite_smooth_stairs.json index 969af6ebb..0d6bc4232 100644 --- a/src/main/resources/assets/mineralogy/models/block/diorite_smooth_stairs.json +++ b/src/main/resources/assets/mineralogy/models/block/diorite_smooth_stairs.json @@ -1,7 +1,7 @@ { "parent": "mineralogy:block/stairs_normal", "textures": { - "face": "mineralogy:blocks/diorite_smooth", - "side": "mineralogy:blocks/diorite_smooth" + "face": "minecraft:block/polished_diorite", + "side": "minecraft:block/polished_diorite" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/diorite_smooth_stairs_inner.json b/src/main/resources/assets/mineralogy/models/block/diorite_smooth_stairs_inner.json index 07866e2ab..723304d63 100644 --- a/src/main/resources/assets/mineralogy/models/block/diorite_smooth_stairs_inner.json +++ b/src/main/resources/assets/mineralogy/models/block/diorite_smooth_stairs_inner.json @@ -1,7 +1,7 @@ { "parent": "mineralogy:block/stairs_inner", "textures": { - "face": "mineralogy:blocks/diorite_smooth", - "side": "mineralogy:blocks/diorite_smooth" + "face": "minecraft:block/polished_diorite", + "side": "minecraft:block/polished_diorite" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/diorite_smooth_stairs_outer.json b/src/main/resources/assets/mineralogy/models/block/diorite_smooth_stairs_outer.json index 0c84dabb7..bcb05058a 100644 --- a/src/main/resources/assets/mineralogy/models/block/diorite_smooth_stairs_outer.json +++ b/src/main/resources/assets/mineralogy/models/block/diorite_smooth_stairs_outer.json @@ -1,7 +1,7 @@ { "parent": "mineralogy:block/stairs_outer", "textures": { - "face": "mineralogy:blocks/diorite_smooth", - "side": "mineralogy:blocks/diorite_smooth" + "face": "minecraft:block/polished_diorite", + "side": "minecraft:block/polished_diorite" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/diorite_smooth_wall_inventory.json b/src/main/resources/assets/mineralogy/models/block/diorite_smooth_wall_inventory.json index e09704f79..8193a6738 100644 --- a/src/main/resources/assets/mineralogy/models/block/diorite_smooth_wall_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/diorite_smooth_wall_inventory.json @@ -1,6 +1,6 @@ { "parent": "block/wall_inventory", "textures": { - "wall": "mineralogy:blocks/diorite_smooth" + "wall": "minecraft:block/polished_diorite" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/diorite_smooth_wall_post.json b/src/main/resources/assets/mineralogy/models/block/diorite_smooth_wall_post.json index 072d17ef0..ef8ea0147 100644 --- a/src/main/resources/assets/mineralogy/models/block/diorite_smooth_wall_post.json +++ b/src/main/resources/assets/mineralogy/models/block/diorite_smooth_wall_post.json @@ -1,6 +1,6 @@ { "parent": "minecraft:block/template_wall_post", "textures": { - "wall": "mineralogy:blocks/diorite_smooth" + "wall": "minecraft:block/polished_diorite" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/diorite_smooth_wall_side.json b/src/main/resources/assets/mineralogy/models/block/diorite_smooth_wall_side.json index 15cb9e247..e15bb33f2 100644 --- a/src/main/resources/assets/mineralogy/models/block/diorite_smooth_wall_side.json +++ b/src/main/resources/assets/mineralogy/models/block/diorite_smooth_wall_side.json @@ -1,6 +1,6 @@ { "parent": "minecraft:block/template_wall_side", "textures": { - "wall": "mineralogy:blocks/diorite_smooth" + "wall": "minecraft:block/polished_diorite" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/diorite_smooth_wall_side_tall.json b/src/main/resources/assets/mineralogy/models/block/diorite_smooth_wall_side_tall.json index 0453cafdc..422a6472b 100644 --- a/src/main/resources/assets/mineralogy/models/block/diorite_smooth_wall_side_tall.json +++ b/src/main/resources/assets/mineralogy/models/block/diorite_smooth_wall_side_tall.json @@ -1,6 +1,6 @@ { "parent": "minecraft:block/template_wall_side_tall", "textures": { - "wall": "mineralogy:blocks/diorite_smooth" + "wall": "minecraft:block/polished_diorite" } } diff --git a/src/main/resources/assets/mineralogy/models/block/diorite_stairs.json b/src/main/resources/assets/mineralogy/models/block/diorite_stairs.json index 397ef397d..0061cddcf 100644 --- a/src/main/resources/assets/mineralogy/models/block/diorite_stairs.json +++ b/src/main/resources/assets/mineralogy/models/block/diorite_stairs.json @@ -1,7 +1,7 @@ { "parent": "mineralogy:block/stairs_normal", "textures": { - "face": "mineralogy:blocks/diorite", - "side": "mineralogy:blocks/diorite" + "face": "minecraft:block/diorite", + "side": "minecraft:block/diorite" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/diorite_stairs_inner.json b/src/main/resources/assets/mineralogy/models/block/diorite_stairs_inner.json index 80c117cfb..7651d10f7 100644 --- a/src/main/resources/assets/mineralogy/models/block/diorite_stairs_inner.json +++ b/src/main/resources/assets/mineralogy/models/block/diorite_stairs_inner.json @@ -1,7 +1,7 @@ { "parent": "mineralogy:block/stairs_inner", "textures": { - "face": "mineralogy:blocks/diorite", - "side": "mineralogy:blocks/diorite" + "face": "minecraft:block/diorite", + "side": "minecraft:block/diorite" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/diorite_stairs_outer.json b/src/main/resources/assets/mineralogy/models/block/diorite_stairs_outer.json index 5d13cbcb0..4e373ff9b 100644 --- a/src/main/resources/assets/mineralogy/models/block/diorite_stairs_outer.json +++ b/src/main/resources/assets/mineralogy/models/block/diorite_stairs_outer.json @@ -1,7 +1,7 @@ { "parent": "mineralogy:block/stairs_outer", "textures": { - "face": "mineralogy:blocks/diorite", - "side": "mineralogy:blocks/diorite" + "face": "minecraft:block/diorite", + "side": "minecraft:block/diorite" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/diorite_wall_inventory.json b/src/main/resources/assets/mineralogy/models/block/diorite_wall_inventory.json index abf057a5e..2f41d3a0d 100644 --- a/src/main/resources/assets/mineralogy/models/block/diorite_wall_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/diorite_wall_inventory.json @@ -1,6 +1,6 @@ { "parent": "block/wall_inventory", "textures": { - "wall": "mineralogy:blocks/diorite" + "wall": "minecraft:block/diorite" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/diorite_wall_post.json b/src/main/resources/assets/mineralogy/models/block/diorite_wall_post.json index 6b0ed8c53..748c66c40 100644 --- a/src/main/resources/assets/mineralogy/models/block/diorite_wall_post.json +++ b/src/main/resources/assets/mineralogy/models/block/diorite_wall_post.json @@ -1,6 +1,6 @@ { "parent": "minecraft:block/template_wall_post", "textures": { - "wall": "mineralogy:blocks/diorite" + "wall": "minecraft:block/diorite" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/diorite_wall_side.json b/src/main/resources/assets/mineralogy/models/block/diorite_wall_side.json index 63e08a09a..4da57a400 100644 --- a/src/main/resources/assets/mineralogy/models/block/diorite_wall_side.json +++ b/src/main/resources/assets/mineralogy/models/block/diorite_wall_side.json @@ -1,6 +1,6 @@ { "parent": "minecraft:block/template_wall_side", "textures": { - "wall": "mineralogy:blocks/diorite" + "wall": "minecraft:block/diorite" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/diorite_wall_side_tall.json b/src/main/resources/assets/mineralogy/models/block/diorite_wall_side_tall.json index ef59907f5..7e04eea31 100644 --- a/src/main/resources/assets/mineralogy/models/block/diorite_wall_side_tall.json +++ b/src/main/resources/assets/mineralogy/models/block/diorite_wall_side_tall.json @@ -1,6 +1,6 @@ { "parent": "minecraft:block/template_wall_side_tall", "textures": { - "wall": "mineralogy:blocks/diorite" + "wall": "minecraft:block/diorite" } } diff --git a/src/main/resources/assets/mineralogy/models/block/dolomite_relief_axe_inventory.json b/src/main/resources/assets/mineralogy/models/block/dolomite_relief_axe_inventory.json index dc33593ad..55c15838d 100644 --- a/src/main/resources/assets/mineralogy/models/block/dolomite_relief_axe_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/dolomite_relief_axe_inventory.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_axe_inventory", "textures": { - "0": "mineralogy:blocks/basalt_smooth", + "0": "minecraft:block/polished_basalt_side", "2": "mineralogy:blocks/dolomite_smooth", - "particle": "mineralogy:blocks/basalt_smooth" + "particle": "minecraft:block/polished_basalt_side" } } diff --git a/src/main/resources/assets/mineralogy/models/block/dolomite_relief_blank_inventory.json b/src/main/resources/assets/mineralogy/models/block/dolomite_relief_blank_inventory.json index fa5aa9837..bb91c34fb 100644 --- a/src/main/resources/assets/mineralogy/models/block/dolomite_relief_blank_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/dolomite_relief_blank_inventory.json @@ -2,7 +2,7 @@ "parent": "mineralogy:block/relief_blank_inventory", "textures": { "0": "mineralogy:blocks/dolomite_smooth", - "1": "mineralogy:blocks/basalt_smooth", + "1": "minecraft:block/polished_basalt_side", "particle": "mineralogy:blocks/dolomite_smooth" } } diff --git a/src/main/resources/assets/mineralogy/models/block/dolomite_relief_cross_inventory.json b/src/main/resources/assets/mineralogy/models/block/dolomite_relief_cross_inventory.json index 1a1e04813..cf0d6d5dd 100644 --- a/src/main/resources/assets/mineralogy/models/block/dolomite_relief_cross_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/dolomite_relief_cross_inventory.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_cross_inventory", "textures": { - "0": "mineralogy:blocks/basalt_smooth", + "0": "minecraft:block/polished_basalt_side", "2": "mineralogy:blocks/dolomite_smooth", - "particle": "mineralogy:blocks/basalt_smooth" + "particle": "minecraft:block/polished_basalt_side" } } diff --git a/src/main/resources/assets/mineralogy/models/block/dolomite_relief_hammer_inventory.json b/src/main/resources/assets/mineralogy/models/block/dolomite_relief_hammer_inventory.json index 19a62426f..e0f6f7976 100644 --- a/src/main/resources/assets/mineralogy/models/block/dolomite_relief_hammer_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/dolomite_relief_hammer_inventory.json @@ -2,7 +2,7 @@ "parent": "mineralogy:block/relief_hammer_inventory", "textures": { "0": "mineralogy:blocks/dolomite_smooth", - "1": "mineralogy:blocks/basalt_smooth", + "1": "minecraft:block/polished_basalt_side", "particle": "mineralogy:blocks/dolomite_smooth" } } diff --git a/src/main/resources/assets/mineralogy/models/block/dolomite_relief_hoe_inventory.json b/src/main/resources/assets/mineralogy/models/block/dolomite_relief_hoe_inventory.json index d210d1e8d..f7bae83f0 100644 --- a/src/main/resources/assets/mineralogy/models/block/dolomite_relief_hoe_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/dolomite_relief_hoe_inventory.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_hoe_inventory", "textures": { - "0": "mineralogy:blocks/basalt_smooth", + "0": "minecraft:block/polished_basalt_side", "2": "mineralogy:blocks/dolomite_smooth", - "particle": "mineralogy:blocks/basalt_smooth" + "particle": "minecraft:block/polished_basalt_side" } } diff --git a/src/main/resources/assets/mineralogy/models/block/dolomite_relief_horizontal_inventory.json b/src/main/resources/assets/mineralogy/models/block/dolomite_relief_horizontal_inventory.json index d42409dc1..3871dbb81 100644 --- a/src/main/resources/assets/mineralogy/models/block/dolomite_relief_horizontal_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/dolomite_relief_horizontal_inventory.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_horizontal_inventory", "textures": { - "0": "mineralogy:blocks/basalt_smooth", + "0": "minecraft:block/polished_basalt_side", "2": "mineralogy:blocks/dolomite_smooth", - "particle": "mineralogy:blocks/basalt_smooth" + "particle": "minecraft:block/polished_basalt_side" } } diff --git a/src/main/resources/assets/mineralogy/models/block/dolomite_relief_i_inventory.json b/src/main/resources/assets/mineralogy/models/block/dolomite_relief_i_inventory.json index bf06b89c9..5edc0f098 100644 --- a/src/main/resources/assets/mineralogy/models/block/dolomite_relief_i_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/dolomite_relief_i_inventory.json @@ -1,7 +1,7 @@ { "parent": "mineralogy:block/relief_i_inventory", "textures": { - "3": "mineralogy:blocks/basalt_smooth", + "3": "minecraft:block/polished_basalt_side", "4": "mineralogy:blocks/dolomite_smooth", "particle": "mineralogy:blocks/dolomite_smooth" } diff --git a/src/main/resources/assets/mineralogy/models/block/dolomite_relief_left_inventory.json b/src/main/resources/assets/mineralogy/models/block/dolomite_relief_left_inventory.json index d28479961..6bba62a65 100644 --- a/src/main/resources/assets/mineralogy/models/block/dolomite_relief_left_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/dolomite_relief_left_inventory.json @@ -2,7 +2,7 @@ "parent": "mineralogy:block/relief_left_inventory", "textures": { "0": "mineralogy:blocks/dolomite_smooth", - "1": "mineralogy:blocks/basalt_smooth", + "1": "minecraft:block/polished_basalt_side", "particle": "mineralogy:blocks/dolomite_smooth" } } diff --git a/src/main/resources/assets/mineralogy/models/block/dolomite_relief_pickaxe_inventory.json b/src/main/resources/assets/mineralogy/models/block/dolomite_relief_pickaxe_inventory.json index d900d1d5b..df5c5e9ef 100644 --- a/src/main/resources/assets/mineralogy/models/block/dolomite_relief_pickaxe_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/dolomite_relief_pickaxe_inventory.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_pickaxe_inventory", "textures": { - "0": "mineralogy:blocks/basalt_smooth", + "0": "minecraft:block/polished_basalt_side", "2": "mineralogy:blocks/dolomite_smooth", - "particle": "mineralogy:blocks/basalt_smooth" + "particle": "minecraft:block/polished_basalt_side" } } diff --git a/src/main/resources/assets/mineralogy/models/block/dolomite_relief_plus_inventory.json b/src/main/resources/assets/mineralogy/models/block/dolomite_relief_plus_inventory.json index d8b9352a9..f8f739983 100644 --- a/src/main/resources/assets/mineralogy/models/block/dolomite_relief_plus_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/dolomite_relief_plus_inventory.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_plus_inventory", "textures": { - "0": "mineralogy:blocks/basalt_smooth", + "0": "minecraft:block/polished_basalt_side", "2": "mineralogy:blocks/dolomite_smooth", - "particle": "mineralogy:blocks/basalt_smooth" + "particle": "minecraft:block/polished_basalt_side" } } diff --git a/src/main/resources/assets/mineralogy/models/block/dolomite_relief_right_inventory.json b/src/main/resources/assets/mineralogy/models/block/dolomite_relief_right_inventory.json index bfb8e386c..91e70cf26 100644 --- a/src/main/resources/assets/mineralogy/models/block/dolomite_relief_right_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/dolomite_relief_right_inventory.json @@ -2,7 +2,7 @@ "parent": "mineralogy:block/relief_right_inventory", "textures": { "0": "mineralogy:blocks/dolomite_smooth", - "1": "mineralogy:blocks/basalt_smooth", + "1": "minecraft:block/polished_basalt_side", "particle": "mineralogy:blocks/dolomite_smooth" } } diff --git a/src/main/resources/assets/mineralogy/models/block/dolomite_relief_sword_inventory.json b/src/main/resources/assets/mineralogy/models/block/dolomite_relief_sword_inventory.json index f0b3a5b80..d4f855542 100644 --- a/src/main/resources/assets/mineralogy/models/block/dolomite_relief_sword_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/dolomite_relief_sword_inventory.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_sword_inventory", "textures": { - "0": "mineralogy:blocks/basalt_smooth", + "0": "minecraft:block/polished_basalt_side", "2": "mineralogy:blocks/dolomite_smooth", - "particle": "mineralogy:blocks/basalt_smooth" + "particle": "minecraft:block/polished_basalt_side" } } diff --git a/src/main/resources/assets/mineralogy/models/block/dolomite_relief_vertical_inventory.json b/src/main/resources/assets/mineralogy/models/block/dolomite_relief_vertical_inventory.json index ff6d699cc..92539a610 100644 --- a/src/main/resources/assets/mineralogy/models/block/dolomite_relief_vertical_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/dolomite_relief_vertical_inventory.json @@ -2,7 +2,7 @@ "parent": "mineralogy:block/relief_vertical_inventory", "textures": { "0": "mineralogy:blocks/dolomite_smooth", - "1": "mineralogy:blocks/basalt_smooth", + "1": "minecraft:block/polished_basalt_side", "particle": "mineralogy:blocks/dolomite_smooth" } } diff --git a/src/main/resources/assets/mineralogy/models/block/granite.json b/src/main/resources/assets/mineralogy/models/block/granite.json index 16569759e..6cac37861 100644 --- a/src/main/resources/assets/mineralogy/models/block/granite.json +++ b/src/main/resources/assets/mineralogy/models/block/granite.json @@ -1,6 +1,6 @@ { "parent": "mineralogy:block/block", "textures": { - "face": "mineralogy:blocks/granite" + "face": "minecraft:block/granite" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/granite_double_slab.json b/src/main/resources/assets/mineralogy/models/block/granite_double_slab.json index ee84083f2..b0dd3ecd4 100644 --- a/src/main/resources/assets/mineralogy/models/block/granite_double_slab.json +++ b/src/main/resources/assets/mineralogy/models/block/granite_double_slab.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/brick", "textures": { - "top": "mineralogy:blocks/granite", - "bottom": "mineralogy:blocks/granite", - "side": "mineralogy:blocks/granite" + "top": "minecraft:block/granite", + "bottom": "minecraft:block/granite", + "side": "minecraft:block/granite" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/granite_furnace.json b/src/main/resources/assets/mineralogy/models/block/granite_furnace.json index 529482ba1..686b0ee4b 100644 --- a/src/main/resources/assets/mineralogy/models/block/granite_furnace.json +++ b/src/main/resources/assets/mineralogy/models/block/granite_furnace.json @@ -1,8 +1,8 @@ { "parent": "block/orientable", "textures": { - "top": "mineralogy:blocks/granite", + "top": "minecraft:block/granite", "front": "mineralogy:blocks/granite_furnace_front_off", - "side": "mineralogy:blocks/granite" + "side": "minecraft:block/granite" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/granite_relief_axe.json b/src/main/resources/assets/mineralogy/models/block/granite_relief_axe.json index 8732a346d..5b19ea799 100644 --- a/src/main/resources/assets/mineralogy/models/block/granite_relief_axe.json +++ b/src/main/resources/assets/mineralogy/models/block/granite_relief_axe.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_axe", "textures": { - "0": "mineralogy:blocks/granite_smooth", - "2": "mineralogy:blocks/granite_smooth", - "particle": "mineralogy:blocks/granite_smooth" + "0": "minecraft:block/polished_granite", + "2": "minecraft:block/polished_granite", + "particle": "minecraft:block/polished_granite" } } diff --git a/src/main/resources/assets/mineralogy/models/block/granite_relief_axe_inventory.json b/src/main/resources/assets/mineralogy/models/block/granite_relief_axe_inventory.json index b6e9314ad..818601386 100644 --- a/src/main/resources/assets/mineralogy/models/block/granite_relief_axe_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/granite_relief_axe_inventory.json @@ -2,7 +2,7 @@ "parent": "mineralogy:block/relief_axe_inventory", "textures": { "0": "mineralogy:blocks/marble_smooth", - "2": "mineralogy:blocks/granite_smooth", + "2": "minecraft:block/polished_granite", "particle": "mineralogy:blocks/marble_smooth" } } diff --git a/src/main/resources/assets/mineralogy/models/block/granite_relief_blank.json b/src/main/resources/assets/mineralogy/models/block/granite_relief_blank.json index 79168bd9c..fc2599e9f 100644 --- a/src/main/resources/assets/mineralogy/models/block/granite_relief_blank.json +++ b/src/main/resources/assets/mineralogy/models/block/granite_relief_blank.json @@ -1,7 +1,7 @@ { "parent": "mineralogy:block/relief_blank", "textures": { - "0": "mineralogy:blocks/granite_smooth", - "particle": "mineralogy:blocks/granite_smooth" + "0": "minecraft:block/polished_granite", + "particle": "minecraft:block/polished_granite" } } diff --git a/src/main/resources/assets/mineralogy/models/block/granite_relief_blank_inventory.json b/src/main/resources/assets/mineralogy/models/block/granite_relief_blank_inventory.json index 089e78054..2d7cb7f98 100644 --- a/src/main/resources/assets/mineralogy/models/block/granite_relief_blank_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/granite_relief_blank_inventory.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_blank_inventory", "textures": { - "0": "mineralogy:blocks/granite_smooth", + "0": "minecraft:block/polished_granite", "1": "mineralogy:blocks/marble_smooth", - "particle": "mineralogy:blocks/granite_smooth" + "particle": "minecraft:block/polished_granite" } } diff --git a/src/main/resources/assets/mineralogy/models/block/granite_relief_cross.json b/src/main/resources/assets/mineralogy/models/block/granite_relief_cross.json index 8d6737b82..92657cda6 100644 --- a/src/main/resources/assets/mineralogy/models/block/granite_relief_cross.json +++ b/src/main/resources/assets/mineralogy/models/block/granite_relief_cross.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_cross", "textures": { - "0": "mineralogy:blocks/granite_smooth", - "2": "mineralogy:blocks/granite_smooth", - "particle": "mineralogy:blocks/granite_smooth" + "0": "minecraft:block/polished_granite", + "2": "minecraft:block/polished_granite", + "particle": "minecraft:block/polished_granite" } } diff --git a/src/main/resources/assets/mineralogy/models/block/granite_relief_cross_inventory.json b/src/main/resources/assets/mineralogy/models/block/granite_relief_cross_inventory.json index f55c2b3af..ddb01e456 100644 --- a/src/main/resources/assets/mineralogy/models/block/granite_relief_cross_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/granite_relief_cross_inventory.json @@ -2,7 +2,7 @@ "parent": "mineralogy:block/relief_cross_inventory", "textures": { "0": "mineralogy:blocks/marble_smooth", - "2": "mineralogy:blocks/granite_smooth", + "2": "minecraft:block/polished_granite", "particle": "mineralogy:blocks/marble_smooth" } } diff --git a/src/main/resources/assets/mineralogy/models/block/granite_relief_hammer.json b/src/main/resources/assets/mineralogy/models/block/granite_relief_hammer.json index 9dbf3cd48..b0170c4df 100644 --- a/src/main/resources/assets/mineralogy/models/block/granite_relief_hammer.json +++ b/src/main/resources/assets/mineralogy/models/block/granite_relief_hammer.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_hammer", "textures": { - "0": "mineralogy:blocks/granite_smooth", - "2": "mineralogy:blocks/granite_smooth", - "particle": "mineralogy:blocks/granite_smooth" + "0": "minecraft:block/polished_granite", + "2": "minecraft:block/polished_granite", + "particle": "minecraft:block/polished_granite" } } diff --git a/src/main/resources/assets/mineralogy/models/block/granite_relief_hammer_inventory.json b/src/main/resources/assets/mineralogy/models/block/granite_relief_hammer_inventory.json index d166eab8b..bd076ea69 100644 --- a/src/main/resources/assets/mineralogy/models/block/granite_relief_hammer_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/granite_relief_hammer_inventory.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_hammer_inventory", "textures": { - "0": "mineralogy:blocks/granite_smooth", + "0": "minecraft:block/polished_granite", "1": "mineralogy:blocks/marble_smooth", - "particle": "mineralogy:blocks/granite_smooth" + "particle": "minecraft:block/polished_granite" } } diff --git a/src/main/resources/assets/mineralogy/models/block/granite_relief_hoe.json b/src/main/resources/assets/mineralogy/models/block/granite_relief_hoe.json index 81b3faab1..e1ed1cc8a 100644 --- a/src/main/resources/assets/mineralogy/models/block/granite_relief_hoe.json +++ b/src/main/resources/assets/mineralogy/models/block/granite_relief_hoe.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_hoe", "textures": { - "0": "mineralogy:blocks/granite_smooth", - "2": "mineralogy:blocks/granite_smooth", - "particle": "mineralogy:blocks/granite_smooth" + "0": "minecraft:block/polished_granite", + "2": "minecraft:block/polished_granite", + "particle": "minecraft:block/polished_granite" } } diff --git a/src/main/resources/assets/mineralogy/models/block/granite_relief_hoe_inventory.json b/src/main/resources/assets/mineralogy/models/block/granite_relief_hoe_inventory.json index 0bbc5aebc..0fb343587 100644 --- a/src/main/resources/assets/mineralogy/models/block/granite_relief_hoe_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/granite_relief_hoe_inventory.json @@ -2,7 +2,7 @@ "parent": "mineralogy:block/relief_hoe_inventory", "textures": { "0": "mineralogy:blocks/marble_smooth", - "2": "mineralogy:blocks/granite_smooth", + "2": "minecraft:block/polished_granite", "particle": "mineralogy:blocks/marble_smooth" } } diff --git a/src/main/resources/assets/mineralogy/models/block/granite_relief_horizontal.json b/src/main/resources/assets/mineralogy/models/block/granite_relief_horizontal.json index 8ab6a1a2c..3797efdf6 100644 --- a/src/main/resources/assets/mineralogy/models/block/granite_relief_horizontal.json +++ b/src/main/resources/assets/mineralogy/models/block/granite_relief_horizontal.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_horizontal", "textures": { - "0": "mineralogy:blocks/granite_smooth", - "2": "mineralogy:blocks/granite_smooth", - "particle": "mineralogy:blocks/granite_smooth" + "0": "minecraft:block/polished_granite", + "2": "minecraft:block/polished_granite", + "particle": "minecraft:block/polished_granite" } } diff --git a/src/main/resources/assets/mineralogy/models/block/granite_relief_horizontal_inventory.json b/src/main/resources/assets/mineralogy/models/block/granite_relief_horizontal_inventory.json index bb433ba10..97295660c 100644 --- a/src/main/resources/assets/mineralogy/models/block/granite_relief_horizontal_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/granite_relief_horizontal_inventory.json @@ -2,7 +2,7 @@ "parent": "mineralogy:block/relief_horizontal_inventory", "textures": { "0": "mineralogy:blocks/marble_smooth", - "2": "mineralogy:blocks/granite_smooth", + "2": "minecraft:block/polished_granite", "particle": "mineralogy:blocks/marble_smooth" } } diff --git a/src/main/resources/assets/mineralogy/models/block/granite_relief_i.json b/src/main/resources/assets/mineralogy/models/block/granite_relief_i.json index d6dd9ae87..44384c361 100644 --- a/src/main/resources/assets/mineralogy/models/block/granite_relief_i.json +++ b/src/main/resources/assets/mineralogy/models/block/granite_relief_i.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_i", "textures": { - "0": "mineralogy:blocks/granite_smooth", - "2": "mineralogy:blocks/granite_smooth", - "particle": "mineralogy:blocks/granite_smooth" + "0": "minecraft:block/polished_granite", + "2": "minecraft:block/polished_granite", + "particle": "minecraft:block/polished_granite" } } diff --git a/src/main/resources/assets/mineralogy/models/block/granite_relief_i_inventory.json b/src/main/resources/assets/mineralogy/models/block/granite_relief_i_inventory.json index 6db445188..f0f81d45e 100644 --- a/src/main/resources/assets/mineralogy/models/block/granite_relief_i_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/granite_relief_i_inventory.json @@ -2,7 +2,7 @@ "parent": "mineralogy:block/relief_i_inventory", "textures": { "3": "mineralogy:blocks/marble_smooth", - "4": "mineralogy:blocks/granite_smooth", - "particle": "mineralogy:blocks/granite_smooth" + "4": "minecraft:block/polished_granite", + "particle": "minecraft:block/polished_granite" } } diff --git a/src/main/resources/assets/mineralogy/models/block/granite_relief_left.json b/src/main/resources/assets/mineralogy/models/block/granite_relief_left.json index 448cb6128..3608d858b 100644 --- a/src/main/resources/assets/mineralogy/models/block/granite_relief_left.json +++ b/src/main/resources/assets/mineralogy/models/block/granite_relief_left.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_left", "textures": { - "0": "mineralogy:blocks/granite_smooth", - "2": "mineralogy:blocks/granite_smooth", - "particle": "mineralogy:blocks/granite_smooth" + "0": "minecraft:block/polished_granite", + "2": "minecraft:block/polished_granite", + "particle": "minecraft:block/polished_granite" } } diff --git a/src/main/resources/assets/mineralogy/models/block/granite_relief_left_inventory.json b/src/main/resources/assets/mineralogy/models/block/granite_relief_left_inventory.json index d69ff1914..9756fa8df 100644 --- a/src/main/resources/assets/mineralogy/models/block/granite_relief_left_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/granite_relief_left_inventory.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_left_inventory", "textures": { - "0": "mineralogy:blocks/granite_smooth", + "0": "minecraft:block/polished_granite", "1": "mineralogy:blocks/marble_smooth", - "particle": "mineralogy:blocks/granite_smooth" + "particle": "minecraft:block/polished_granite" } } diff --git a/src/main/resources/assets/mineralogy/models/block/granite_relief_pickaxe.json b/src/main/resources/assets/mineralogy/models/block/granite_relief_pickaxe.json index 58d049fcf..ad84445ee 100644 --- a/src/main/resources/assets/mineralogy/models/block/granite_relief_pickaxe.json +++ b/src/main/resources/assets/mineralogy/models/block/granite_relief_pickaxe.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_pickaxe", "textures": { - "0": "mineralogy:blocks/granite_smooth", - "2": "mineralogy:blocks/granite_smooth", - "particle": "mineralogy:blocks/granite_smooth" + "0": "minecraft:block/polished_granite", + "2": "minecraft:block/polished_granite", + "particle": "minecraft:block/polished_granite" } } diff --git a/src/main/resources/assets/mineralogy/models/block/granite_relief_pickaxe_inventory.json b/src/main/resources/assets/mineralogy/models/block/granite_relief_pickaxe_inventory.json index 581bb9474..73877d449 100644 --- a/src/main/resources/assets/mineralogy/models/block/granite_relief_pickaxe_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/granite_relief_pickaxe_inventory.json @@ -2,7 +2,7 @@ "parent": "mineralogy:block/relief_pickaxe_inventory", "textures": { "0": "mineralogy:blocks/marble_smooth", - "2": "mineralogy:blocks/granite_smooth", + "2": "minecraft:block/polished_granite", "particle": "mineralogy:blocks/marble_smooth" } } diff --git a/src/main/resources/assets/mineralogy/models/block/granite_relief_plus.json b/src/main/resources/assets/mineralogy/models/block/granite_relief_plus.json index 0f4bde195..8d49def13 100644 --- a/src/main/resources/assets/mineralogy/models/block/granite_relief_plus.json +++ b/src/main/resources/assets/mineralogy/models/block/granite_relief_plus.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_plus", "textures": { - "0": "mineralogy:blocks/granite_smooth", - "2": "mineralogy:blocks/granite_smooth", - "particle": "mineralogy:blocks/granite_smooth" + "0": "minecraft:block/polished_granite", + "2": "minecraft:block/polished_granite", + "particle": "minecraft:block/polished_granite" } } diff --git a/src/main/resources/assets/mineralogy/models/block/granite_relief_plus_inventory.json b/src/main/resources/assets/mineralogy/models/block/granite_relief_plus_inventory.json index b0abeea26..6d1931b80 100644 --- a/src/main/resources/assets/mineralogy/models/block/granite_relief_plus_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/granite_relief_plus_inventory.json @@ -2,7 +2,7 @@ "parent": "mineralogy:block/relief_plus_inventory", "textures": { "0": "mineralogy:blocks/marble_smooth", - "2": "mineralogy:blocks/granite_smooth", + "2": "minecraft:block/polished_granite", "particle": "mineralogy:blocks/marble_smooth" } } diff --git a/src/main/resources/assets/mineralogy/models/block/granite_relief_right.json b/src/main/resources/assets/mineralogy/models/block/granite_relief_right.json index 2f2e5bbe4..cf222b8d1 100644 --- a/src/main/resources/assets/mineralogy/models/block/granite_relief_right.json +++ b/src/main/resources/assets/mineralogy/models/block/granite_relief_right.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_right", "textures": { - "0": "mineralogy:blocks/granite_smooth", - "2": "mineralogy:blocks/granite_smooth", - "particle": "mineralogy:blocks/granite_smooth" + "0": "minecraft:block/polished_granite", + "2": "minecraft:block/polished_granite", + "particle": "minecraft:block/polished_granite" } } diff --git a/src/main/resources/assets/mineralogy/models/block/granite_relief_right_inventory.json b/src/main/resources/assets/mineralogy/models/block/granite_relief_right_inventory.json index d6266ef98..734ced4ec 100644 --- a/src/main/resources/assets/mineralogy/models/block/granite_relief_right_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/granite_relief_right_inventory.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_right_inventory", "textures": { - "0": "mineralogy:blocks/granite_smooth", + "0": "minecraft:block/polished_granite", "1": "mineralogy:blocks/marble_smooth", - "particle": "mineralogy:blocks/granite_smooth" + "particle": "minecraft:block/polished_granite" } } diff --git a/src/main/resources/assets/mineralogy/models/block/granite_relief_sword.json b/src/main/resources/assets/mineralogy/models/block/granite_relief_sword.json index 56e4ea2ba..e5b3e59f9 100644 --- a/src/main/resources/assets/mineralogy/models/block/granite_relief_sword.json +++ b/src/main/resources/assets/mineralogy/models/block/granite_relief_sword.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_sword", "textures": { - "0": "mineralogy:blocks/granite_smooth", - "2": "mineralogy:blocks/granite_smooth", - "particle": "mineralogy:blocks/granite_smooth" + "0": "minecraft:block/polished_granite", + "2": "minecraft:block/polished_granite", + "particle": "minecraft:block/polished_granite" } } diff --git a/src/main/resources/assets/mineralogy/models/block/granite_relief_sword_inventory.json b/src/main/resources/assets/mineralogy/models/block/granite_relief_sword_inventory.json index 8e339ca66..07b2d798c 100644 --- a/src/main/resources/assets/mineralogy/models/block/granite_relief_sword_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/granite_relief_sword_inventory.json @@ -2,7 +2,7 @@ "parent": "mineralogy:block/relief_sword_inventory", "textures": { "0": "mineralogy:blocks/marble_smooth", - "2": "mineralogy:blocks/granite_smooth", + "2": "minecraft:block/polished_granite", "particle": "mineralogy:blocks/marble_smooth" } } diff --git a/src/main/resources/assets/mineralogy/models/block/granite_relief_vertical.json b/src/main/resources/assets/mineralogy/models/block/granite_relief_vertical.json index 7f2241652..ec13085dd 100644 --- a/src/main/resources/assets/mineralogy/models/block/granite_relief_vertical.json +++ b/src/main/resources/assets/mineralogy/models/block/granite_relief_vertical.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_vertical", "textures": { - "0": "mineralogy:blocks/granite_smooth", - "2": "mineralogy:blocks/granite_smooth", - "particle": "mineralogy:blocks/granite_smooth" + "0": "minecraft:block/polished_granite", + "2": "minecraft:block/polished_granite", + "particle": "minecraft:block/polished_granite" } } diff --git a/src/main/resources/assets/mineralogy/models/block/granite_relief_vertical_inventory.json b/src/main/resources/assets/mineralogy/models/block/granite_relief_vertical_inventory.json index d59a1abc5..919a5e197 100644 --- a/src/main/resources/assets/mineralogy/models/block/granite_relief_vertical_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/granite_relief_vertical_inventory.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_vertical_inventory", "textures": { - "0": "mineralogy:blocks/granite_smooth", + "0": "minecraft:block/polished_granite", "1": "mineralogy:blocks/marble_smooth", - "particle": "mineralogy:blocks/granite_smooth" + "particle": "minecraft:block/polished_granite" } } diff --git a/src/main/resources/assets/mineralogy/models/block/granite_slab.json b/src/main/resources/assets/mineralogy/models/block/granite_slab.json index 5db545850..3b3b59823 100644 --- a/src/main/resources/assets/mineralogy/models/block/granite_slab.json +++ b/src/main/resources/assets/mineralogy/models/block/granite_slab.json @@ -1,7 +1,7 @@ { "parent": "mineralogy:block/slab", "textures": { - "face": "mineralogy:blocks/granite", - "side": "mineralogy:blocks/granite" + "face": "minecraft:block/granite", + "side": "minecraft:block/granite" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/granite_smooth.json b/src/main/resources/assets/mineralogy/models/block/granite_smooth.json index 5c9bc209d..76d9959db 100644 --- a/src/main/resources/assets/mineralogy/models/block/granite_smooth.json +++ b/src/main/resources/assets/mineralogy/models/block/granite_smooth.json @@ -1,6 +1,6 @@ { "parent": "mineralogy:block/block", "textures": { - "face": "mineralogy:blocks/granite_smooth" + "face": "minecraft:block/polished_granite" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/granite_smooth_double_slab.json b/src/main/resources/assets/mineralogy/models/block/granite_smooth_double_slab.json index e8bd2b000..e912ef18d 100644 --- a/src/main/resources/assets/mineralogy/models/block/granite_smooth_double_slab.json +++ b/src/main/resources/assets/mineralogy/models/block/granite_smooth_double_slab.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/brick", "textures": { - "top": "mineralogy:blocks/granite_smooth", - "bottom": "mineralogy:blocks/granite_smooth", - "side": "mineralogy:blocks/granite_smooth" + "top": "minecraft:block/polished_granite", + "bottom": "minecraft:block/polished_granite", + "side": "minecraft:block/polished_granite" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/granite_smooth_furnace.json b/src/main/resources/assets/mineralogy/models/block/granite_smooth_furnace.json index d60f39249..aaebb3f0c 100644 --- a/src/main/resources/assets/mineralogy/models/block/granite_smooth_furnace.json +++ b/src/main/resources/assets/mineralogy/models/block/granite_smooth_furnace.json @@ -1,8 +1,8 @@ { "parent": "block/orientable", "textures": { - "top": "mineralogy:blocks/granite_smooth", + "top": "minecraft:block/polished_granite", "front": "mineralogy:blocks/granite_smooth_furnace_front_off", - "side": "mineralogy:blocks/granite_smooth" + "side": "minecraft:block/polished_granite" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/granite_smooth_slab.json b/src/main/resources/assets/mineralogy/models/block/granite_smooth_slab.json index 5264faf13..e7449b32f 100644 --- a/src/main/resources/assets/mineralogy/models/block/granite_smooth_slab.json +++ b/src/main/resources/assets/mineralogy/models/block/granite_smooth_slab.json @@ -1,7 +1,7 @@ { "parent": "mineralogy:block/slab", "textures": { - "face": "mineralogy:blocks/granite_smooth", - "side": "mineralogy:blocks/granite_smooth" + "face": "minecraft:block/polished_granite", + "side": "minecraft:block/polished_granite" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/granite_smooth_stairs.json b/src/main/resources/assets/mineralogy/models/block/granite_smooth_stairs.json index dd5d466cb..87a9ad193 100644 --- a/src/main/resources/assets/mineralogy/models/block/granite_smooth_stairs.json +++ b/src/main/resources/assets/mineralogy/models/block/granite_smooth_stairs.json @@ -1,7 +1,7 @@ { "parent": "mineralogy:block/stairs_normal", "textures": { - "face": "mineralogy:blocks/granite_smooth", - "side": "mineralogy:blocks/granite_smooth" + "face": "minecraft:block/polished_granite", + "side": "minecraft:block/polished_granite" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/granite_smooth_stairs_inner.json b/src/main/resources/assets/mineralogy/models/block/granite_smooth_stairs_inner.json index eee22ff9e..01c476e09 100644 --- a/src/main/resources/assets/mineralogy/models/block/granite_smooth_stairs_inner.json +++ b/src/main/resources/assets/mineralogy/models/block/granite_smooth_stairs_inner.json @@ -1,7 +1,7 @@ { "parent": "mineralogy:block/stairs_inner", "textures": { - "face": "mineralogy:blocks/granite_smooth", - "side": "mineralogy:blocks/granite_smooth" + "face": "minecraft:block/polished_granite", + "side": "minecraft:block/polished_granite" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/granite_smooth_stairs_outer.json b/src/main/resources/assets/mineralogy/models/block/granite_smooth_stairs_outer.json index e57eb250c..04f9e6c83 100644 --- a/src/main/resources/assets/mineralogy/models/block/granite_smooth_stairs_outer.json +++ b/src/main/resources/assets/mineralogy/models/block/granite_smooth_stairs_outer.json @@ -1,7 +1,7 @@ { "parent": "mineralogy:block/stairs_outer", "textures": { - "face": "mineralogy:blocks/granite_smooth", - "side": "mineralogy:blocks/granite_smooth" + "face": "minecraft:block/polished_granite", + "side": "minecraft:block/polished_granite" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/granite_smooth_wall_inventory.json b/src/main/resources/assets/mineralogy/models/block/granite_smooth_wall_inventory.json index 9b21b110b..742198346 100644 --- a/src/main/resources/assets/mineralogy/models/block/granite_smooth_wall_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/granite_smooth_wall_inventory.json @@ -1,6 +1,6 @@ { "parent": "block/wall_inventory", "textures": { - "wall": "mineralogy:blocks/granite_smooth" + "wall": "minecraft:block/polished_granite" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/granite_smooth_wall_post.json b/src/main/resources/assets/mineralogy/models/block/granite_smooth_wall_post.json index b5e056faa..75653e9e4 100644 --- a/src/main/resources/assets/mineralogy/models/block/granite_smooth_wall_post.json +++ b/src/main/resources/assets/mineralogy/models/block/granite_smooth_wall_post.json @@ -1,6 +1,6 @@ { "parent": "minecraft:block/template_wall_post", "textures": { - "wall": "mineralogy:blocks/granite_smooth" + "wall": "minecraft:block/polished_granite" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/granite_smooth_wall_side.json b/src/main/resources/assets/mineralogy/models/block/granite_smooth_wall_side.json index 85de4d316..d8824ca51 100644 --- a/src/main/resources/assets/mineralogy/models/block/granite_smooth_wall_side.json +++ b/src/main/resources/assets/mineralogy/models/block/granite_smooth_wall_side.json @@ -1,6 +1,6 @@ { "parent": "minecraft:block/template_wall_side", "textures": { - "wall": "mineralogy:blocks/granite_smooth" + "wall": "minecraft:block/polished_granite" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/granite_smooth_wall_side_tall.json b/src/main/resources/assets/mineralogy/models/block/granite_smooth_wall_side_tall.json index cfc34bc2a..0e7864826 100644 --- a/src/main/resources/assets/mineralogy/models/block/granite_smooth_wall_side_tall.json +++ b/src/main/resources/assets/mineralogy/models/block/granite_smooth_wall_side_tall.json @@ -1,6 +1,6 @@ { "parent": "minecraft:block/template_wall_side_tall", "textures": { - "wall": "mineralogy:blocks/granite_smooth" + "wall": "minecraft:block/polished_granite" } } diff --git a/src/main/resources/assets/mineralogy/models/block/granite_stairs.json b/src/main/resources/assets/mineralogy/models/block/granite_stairs.json index 74844ffbb..b26599c15 100644 --- a/src/main/resources/assets/mineralogy/models/block/granite_stairs.json +++ b/src/main/resources/assets/mineralogy/models/block/granite_stairs.json @@ -1,7 +1,7 @@ { "parent": "mineralogy:block/stairs_normal", "textures": { - "face": "mineralogy:blocks/granite", - "side": "mineralogy:blocks/granite" + "face": "minecraft:block/granite", + "side": "minecraft:block/granite" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/granite_stairs_inner.json b/src/main/resources/assets/mineralogy/models/block/granite_stairs_inner.json index bbf52773d..cea44f445 100644 --- a/src/main/resources/assets/mineralogy/models/block/granite_stairs_inner.json +++ b/src/main/resources/assets/mineralogy/models/block/granite_stairs_inner.json @@ -1,7 +1,7 @@ { "parent": "mineralogy:block/stairs_inner", "textures": { - "face": "mineralogy:blocks/granite", - "side": "mineralogy:blocks/granite" + "face": "minecraft:block/granite", + "side": "minecraft:block/granite" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/granite_stairs_outer.json b/src/main/resources/assets/mineralogy/models/block/granite_stairs_outer.json index 61870eec8..e60babf19 100644 --- a/src/main/resources/assets/mineralogy/models/block/granite_stairs_outer.json +++ b/src/main/resources/assets/mineralogy/models/block/granite_stairs_outer.json @@ -1,7 +1,7 @@ { "parent": "mineralogy:block/stairs_outer", "textures": { - "face": "mineralogy:blocks/granite", - "side": "mineralogy:blocks/granite" + "face": "minecraft:block/granite", + "side": "minecraft:block/granite" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/granite_wall_inventory.json b/src/main/resources/assets/mineralogy/models/block/granite_wall_inventory.json index 3493c5435..066e177cd 100644 --- a/src/main/resources/assets/mineralogy/models/block/granite_wall_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/granite_wall_inventory.json @@ -1,6 +1,6 @@ { "parent": "block/wall_inventory", "textures": { - "wall": "mineralogy:blocks/granite" + "wall": "minecraft:block/granite" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/granite_wall_post.json b/src/main/resources/assets/mineralogy/models/block/granite_wall_post.json index a29d0bfb8..729bb4693 100644 --- a/src/main/resources/assets/mineralogy/models/block/granite_wall_post.json +++ b/src/main/resources/assets/mineralogy/models/block/granite_wall_post.json @@ -1,6 +1,6 @@ { "parent": "minecraft:block/template_wall_post", "textures": { - "wall": "mineralogy:blocks/granite" + "wall": "minecraft:block/granite" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/granite_wall_side.json b/src/main/resources/assets/mineralogy/models/block/granite_wall_side.json index e8f9e5ccb..a861da1ac 100644 --- a/src/main/resources/assets/mineralogy/models/block/granite_wall_side.json +++ b/src/main/resources/assets/mineralogy/models/block/granite_wall_side.json @@ -1,6 +1,6 @@ { "parent": "minecraft:block/template_wall_side", "textures": { - "wall": "mineralogy:blocks/granite" + "wall": "minecraft:block/granite" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/granite_wall_side_tall.json b/src/main/resources/assets/mineralogy/models/block/granite_wall_side_tall.json index 9bfb1c40c..aed130cc9 100644 --- a/src/main/resources/assets/mineralogy/models/block/granite_wall_side_tall.json +++ b/src/main/resources/assets/mineralogy/models/block/granite_wall_side_tall.json @@ -1,6 +1,6 @@ { "parent": "minecraft:block/template_wall_side_tall", "textures": { - "wall": "mineralogy:blocks/granite" + "wall": "minecraft:block/granite" } } diff --git a/src/main/resources/assets/mineralogy/models/block/half_andesite_slab.json b/src/main/resources/assets/mineralogy/models/block/half_andesite_slab.json index a819cdbfb..fe4a0f0e2 100644 --- a/src/main/resources/assets/mineralogy/models/block/half_andesite_slab.json +++ b/src/main/resources/assets/mineralogy/models/block/half_andesite_slab.json @@ -1,8 +1,8 @@ { "parent": "minecraft:block/slab", "textures": { - "bottom": "mineralogy:blocks/andesite", - "top": "mineralogy:blocks/andesite", - "side": "mineralogy:blocks/andesite" + "bottom": "minecraft:block/andesite", + "top": "minecraft:block/andesite", + "side": "minecraft:block/andesite" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/half_andesite_smooth_slab.json b/src/main/resources/assets/mineralogy/models/block/half_andesite_smooth_slab.json index 5aa8b2527..aaa3ceaf6 100644 --- a/src/main/resources/assets/mineralogy/models/block/half_andesite_smooth_slab.json +++ b/src/main/resources/assets/mineralogy/models/block/half_andesite_smooth_slab.json @@ -1,8 +1,8 @@ { "parent": "minecraft:block/slab", "textures": { - "bottom": "mineralogy:blocks/andesite_smooth", - "top": "mineralogy:blocks/andesite_smooth", - "side": "mineralogy:blocks/andesite_smooth" + "bottom": "minecraft:block/polished_andesite", + "top": "minecraft:block/polished_andesite", + "side": "minecraft:block/polished_andesite" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/half_basalt_slab.json b/src/main/resources/assets/mineralogy/models/block/half_basalt_slab.json index f614e63f8..65064891c 100644 --- a/src/main/resources/assets/mineralogy/models/block/half_basalt_slab.json +++ b/src/main/resources/assets/mineralogy/models/block/half_basalt_slab.json @@ -1,8 +1,8 @@ { "parent": "minecraft:block/slab", "textures": { - "bottom": "mineralogy:blocks/basalt", - "top": "mineralogy:blocks/basalt", - "side": "mineralogy:blocks/basalt" + "bottom": "minecraft:block/basalt_top", + "top": "minecraft:block/basalt_top", + "side": "minecraft:block/basalt_side" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/half_basalt_smooth_slab.json b/src/main/resources/assets/mineralogy/models/block/half_basalt_smooth_slab.json index 34d67dace..2398c6edd 100644 --- a/src/main/resources/assets/mineralogy/models/block/half_basalt_smooth_slab.json +++ b/src/main/resources/assets/mineralogy/models/block/half_basalt_smooth_slab.json @@ -1,8 +1,8 @@ { "parent": "minecraft:block/slab", "textures": { - "bottom": "mineralogy:blocks/basalt_smooth", - "top": "mineralogy:blocks/basalt_smooth", - "side": "mineralogy:blocks/basalt_smooth" + "bottom": "minecraft:block/polished_basalt_top", + "top": "minecraft:block/polished_basalt_top", + "side": "minecraft:block/polished_basalt_side" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/half_diorite_slab.json b/src/main/resources/assets/mineralogy/models/block/half_diorite_slab.json index 43d806dd3..41fd5fc96 100644 --- a/src/main/resources/assets/mineralogy/models/block/half_diorite_slab.json +++ b/src/main/resources/assets/mineralogy/models/block/half_diorite_slab.json @@ -1,8 +1,8 @@ { "parent": "minecraft:block/slab", "textures": { - "bottom": "mineralogy:blocks/diorite", - "top": "mineralogy:blocks/diorite", - "side": "mineralogy:blocks/diorite" + "bottom": "minecraft:block/diorite", + "top": "minecraft:block/diorite", + "side": "minecraft:block/diorite" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/half_diorite_smooth_slab.json b/src/main/resources/assets/mineralogy/models/block/half_diorite_smooth_slab.json index de5527bec..2d3fd3288 100644 --- a/src/main/resources/assets/mineralogy/models/block/half_diorite_smooth_slab.json +++ b/src/main/resources/assets/mineralogy/models/block/half_diorite_smooth_slab.json @@ -1,8 +1,8 @@ { "parent": "minecraft:block/slab", "textures": { - "bottom": "mineralogy:blocks/diorite_smooth", - "top": "mineralogy:blocks/diorite_smooth", - "side": "mineralogy:blocks/diorite_smooth" + "bottom": "minecraft:block/polished_diorite", + "top": "minecraft:block/polished_diorite", + "side": "minecraft:block/polished_diorite" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/half_granite_slab.json b/src/main/resources/assets/mineralogy/models/block/half_granite_slab.json index 3639cc5bb..b24afa357 100644 --- a/src/main/resources/assets/mineralogy/models/block/half_granite_slab.json +++ b/src/main/resources/assets/mineralogy/models/block/half_granite_slab.json @@ -1,8 +1,8 @@ { "parent": "minecraft:block/slab", "textures": { - "bottom": "mineralogy:blocks/granite", - "top": "mineralogy:blocks/granite", - "side": "mineralogy:blocks/granite" + "bottom": "minecraft:block/granite", + "top": "minecraft:block/granite", + "side": "minecraft:block/granite" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/half_granite_smooth_slab.json b/src/main/resources/assets/mineralogy/models/block/half_granite_smooth_slab.json index d13aa92ca..aa6b11403 100644 --- a/src/main/resources/assets/mineralogy/models/block/half_granite_smooth_slab.json +++ b/src/main/resources/assets/mineralogy/models/block/half_granite_smooth_slab.json @@ -1,8 +1,8 @@ { "parent": "minecraft:block/slab", "textures": { - "bottom": "mineralogy:blocks/granite_smooth", - "top": "mineralogy:blocks/granite_smooth", - "side": "mineralogy:blocks/granite_smooth" + "bottom": "minecraft:block/polished_granite", + "top": "minecraft:block/polished_granite", + "side": "minecraft:block/polished_granite" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/half_tuff_brick_slab.json b/src/main/resources/assets/mineralogy/models/block/half_tuff_brick_slab.json index 99b1b83d1..bc05395d1 100644 --- a/src/main/resources/assets/mineralogy/models/block/half_tuff_brick_slab.json +++ b/src/main/resources/assets/mineralogy/models/block/half_tuff_brick_slab.json @@ -1,8 +1,8 @@ { "parent": "minecraft:block/slab", "textures": { - "bottom": "mineralogy:blocks/tuff_brick_top", - "top": "mineralogy:blocks/tuff_brick_top", - "side": "mineralogy:blocks/tuff_brick_side" + "bottom": "minecraft:block/tuff_bricks", + "top": "minecraft:block/tuff_bricks", + "side": "minecraft:block/tuff_bricks" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/half_tuff_slab.json b/src/main/resources/assets/mineralogy/models/block/half_tuff_slab.json index 43d67b74c..e002e763b 100644 --- a/src/main/resources/assets/mineralogy/models/block/half_tuff_slab.json +++ b/src/main/resources/assets/mineralogy/models/block/half_tuff_slab.json @@ -1,8 +1,8 @@ { "parent": "minecraft:block/slab", "textures": { - "bottom": "mineralogy:blocks/tuff", - "top": "mineralogy:blocks/tuff", - "side": "mineralogy:blocks/tuff" + "bottom": "minecraft:block/tuff", + "top": "minecraft:block/tuff", + "side": "minecraft:block/tuff" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/half_tuff_smooth_slab.json b/src/main/resources/assets/mineralogy/models/block/half_tuff_smooth_slab.json index 5cc09d10b..a6db85797 100644 --- a/src/main/resources/assets/mineralogy/models/block/half_tuff_smooth_slab.json +++ b/src/main/resources/assets/mineralogy/models/block/half_tuff_smooth_slab.json @@ -1,8 +1,8 @@ { "parent": "minecraft:block/slab", "textures": { - "bottom": "mineralogy:blocks/tuff_smooth", - "top": "mineralogy:blocks/tuff_smooth", - "side": "mineralogy:blocks/tuff_smooth" + "bottom": "minecraft:block/polished_tuff", + "top": "minecraft:block/polished_tuff", + "side": "minecraft:block/polished_tuff" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/lit_andesite_furnace.json b/src/main/resources/assets/mineralogy/models/block/lit_andesite_furnace.json index ad3ed3dbb..07ac66317 100644 --- a/src/main/resources/assets/mineralogy/models/block/lit_andesite_furnace.json +++ b/src/main/resources/assets/mineralogy/models/block/lit_andesite_furnace.json @@ -1,8 +1,8 @@ { "parent": "block/orientable", "textures": { - "top": "mineralogy:blocks/andesite", + "top": "minecraft:block/andesite", "front": "mineralogy:blocks/andesite_furnace_front_on", - "side": "mineralogy:blocks/andesite" + "side": "minecraft:block/andesite" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/lit_andesite_smooth_furnace.json b/src/main/resources/assets/mineralogy/models/block/lit_andesite_smooth_furnace.json index 994889f8b..1686aa85f 100644 --- a/src/main/resources/assets/mineralogy/models/block/lit_andesite_smooth_furnace.json +++ b/src/main/resources/assets/mineralogy/models/block/lit_andesite_smooth_furnace.json @@ -1,8 +1,8 @@ { "parent": "block/orientable", "textures": { - "top": "mineralogy:blocks/andesite_smooth", + "top": "minecraft:block/polished_andesite", "front": "mineralogy:blocks/andesite_smooth_furnace_front_on", - "side": "mineralogy:blocks/andesite_smooth" + "side": "minecraft:block/polished_andesite" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/lit_basalt_furnace.json b/src/main/resources/assets/mineralogy/models/block/lit_basalt_furnace.json index 027b03302..cf8d6e6bc 100644 --- a/src/main/resources/assets/mineralogy/models/block/lit_basalt_furnace.json +++ b/src/main/resources/assets/mineralogy/models/block/lit_basalt_furnace.json @@ -1,8 +1,8 @@ { "parent": "block/orientable", "textures": { - "top": "mineralogy:blocks/basalt", + "top": "minecraft:block/basalt_top", "front": "mineralogy:blocks/basalt_furnace_front_on", - "side": "mineralogy:blocks/basalt" + "side": "minecraft:block/basalt_side" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/lit_basalt_smooth_furnace.json b/src/main/resources/assets/mineralogy/models/block/lit_basalt_smooth_furnace.json index 0146d0726..d928cce78 100644 --- a/src/main/resources/assets/mineralogy/models/block/lit_basalt_smooth_furnace.json +++ b/src/main/resources/assets/mineralogy/models/block/lit_basalt_smooth_furnace.json @@ -1,8 +1,8 @@ { "parent": "block/orientable", "textures": { - "top": "mineralogy:blocks/basalt_smooth", + "top": "minecraft:block/polished_basalt_top", "front": "mineralogy:blocks/basalt_smooth_furnace_front_on", - "side": "mineralogy:blocks/basalt_smooth" + "side": "minecraft:block/polished_basalt_side" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/lit_diorite_furnace.json b/src/main/resources/assets/mineralogy/models/block/lit_diorite_furnace.json index 6804f4591..7c4f10f5f 100644 --- a/src/main/resources/assets/mineralogy/models/block/lit_diorite_furnace.json +++ b/src/main/resources/assets/mineralogy/models/block/lit_diorite_furnace.json @@ -1,8 +1,8 @@ { "parent": "block/orientable", "textures": { - "top": "mineralogy:blocks/diorite", + "top": "minecraft:block/diorite", "front": "mineralogy:blocks/diorite_furnace_front_on", - "side": "mineralogy:blocks/diorite" + "side": "minecraft:block/diorite" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/lit_diorite_smooth_furnace.json b/src/main/resources/assets/mineralogy/models/block/lit_diorite_smooth_furnace.json index a7668db2c..7855d4841 100644 --- a/src/main/resources/assets/mineralogy/models/block/lit_diorite_smooth_furnace.json +++ b/src/main/resources/assets/mineralogy/models/block/lit_diorite_smooth_furnace.json @@ -1,8 +1,8 @@ { "parent": "block/orientable", "textures": { - "top": "mineralogy:blocks/diorite_smooth", + "top": "minecraft:block/polished_diorite", "front": "mineralogy:blocks/diorite_smooth_furnace_front_on", - "side": "mineralogy:blocks/diorite_smooth" + "side": "minecraft:block/polished_diorite" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/lit_granite_furnace.json b/src/main/resources/assets/mineralogy/models/block/lit_granite_furnace.json index 38590e7d6..9f7beb99e 100644 --- a/src/main/resources/assets/mineralogy/models/block/lit_granite_furnace.json +++ b/src/main/resources/assets/mineralogy/models/block/lit_granite_furnace.json @@ -1,8 +1,8 @@ { "parent": "block/orientable", "textures": { - "top": "mineralogy:blocks/granite", + "top": "minecraft:block/granite", "front": "mineralogy:blocks/granite_furnace_front_on", - "side": "mineralogy:blocks/granite" + "side": "minecraft:block/granite" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/lit_granite_smooth_furnace.json b/src/main/resources/assets/mineralogy/models/block/lit_granite_smooth_furnace.json index 699cd2cb3..7072bc231 100644 --- a/src/main/resources/assets/mineralogy/models/block/lit_granite_smooth_furnace.json +++ b/src/main/resources/assets/mineralogy/models/block/lit_granite_smooth_furnace.json @@ -1,8 +1,8 @@ { "parent": "block/orientable", "textures": { - "top": "mineralogy:blocks/granite_smooth", + "top": "minecraft:block/polished_granite", "front": "mineralogy:blocks/granite_smooth_furnace_front_on", - "side": "mineralogy:blocks/granite_smooth" + "side": "minecraft:block/polished_granite" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/lit_tuff_brick_furnace.json b/src/main/resources/assets/mineralogy/models/block/lit_tuff_brick_furnace.json index 7333e2ad8..1d4eaee66 100644 --- a/src/main/resources/assets/mineralogy/models/block/lit_tuff_brick_furnace.json +++ b/src/main/resources/assets/mineralogy/models/block/lit_tuff_brick_furnace.json @@ -1,8 +1,8 @@ { "parent": "block/orientable", "textures": { - "top": "mineralogy:blocks/tuff_brick_top", + "top": "minecraft:block/tuff_bricks", "front": "mineralogy:blocks/tuff_brick_furnace_front_on", - "side": "mineralogy:blocks/tuff_brick_side" + "side": "minecraft:block/tuff_bricks" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/lit_tuff_furnace.json b/src/main/resources/assets/mineralogy/models/block/lit_tuff_furnace.json index 2d1ed99ea..1b24e9310 100644 --- a/src/main/resources/assets/mineralogy/models/block/lit_tuff_furnace.json +++ b/src/main/resources/assets/mineralogy/models/block/lit_tuff_furnace.json @@ -1,8 +1,8 @@ { "parent": "block/orientable", "textures": { - "top": "mineralogy:blocks/tuff", + "top": "minecraft:block/tuff", "front": "mineralogy:blocks/tuff_furnace_front_on", - "side": "mineralogy:blocks/tuff" + "side": "minecraft:block/tuff" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/lit_tuff_smooth_furnace.json b/src/main/resources/assets/mineralogy/models/block/lit_tuff_smooth_furnace.json index b5f806417..3746a1df7 100644 --- a/src/main/resources/assets/mineralogy/models/block/lit_tuff_smooth_furnace.json +++ b/src/main/resources/assets/mineralogy/models/block/lit_tuff_smooth_furnace.json @@ -1,8 +1,8 @@ { "parent": "block/orientable", "textures": { - "top": "mineralogy:blocks/tuff_smooth", + "top": "minecraft:block/polished_tuff", "front": "mineralogy:blocks/tuff_smooth_furnace_front_on", - "side": "mineralogy:blocks/tuff_smooth" + "side": "minecraft:block/polished_tuff" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/marble_relief_axe_inventory.json b/src/main/resources/assets/mineralogy/models/block/marble_relief_axe_inventory.json index 75f736455..036bd9720 100644 --- a/src/main/resources/assets/mineralogy/models/block/marble_relief_axe_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/marble_relief_axe_inventory.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_axe_inventory", "textures": { - "0": "mineralogy:blocks/basalt_smooth", + "0": "minecraft:block/polished_basalt_side", "2": "mineralogy:blocks/marble_smooth", - "particle": "mineralogy:blocks/basalt_smooth" + "particle": "minecraft:block/polished_basalt_side" } } diff --git a/src/main/resources/assets/mineralogy/models/block/marble_relief_blank_inventory.json b/src/main/resources/assets/mineralogy/models/block/marble_relief_blank_inventory.json index dadc3943e..e946efa24 100644 --- a/src/main/resources/assets/mineralogy/models/block/marble_relief_blank_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/marble_relief_blank_inventory.json @@ -2,7 +2,7 @@ "parent": "mineralogy:block/relief_blank_inventory", "textures": { "0": "mineralogy:blocks/marble_smooth", - "1": "mineralogy:blocks/basalt_smooth", + "1": "minecraft:block/polished_basalt_side", "particle": "mineralogy:blocks/marble_smooth" } } diff --git a/src/main/resources/assets/mineralogy/models/block/marble_relief_cross_inventory.json b/src/main/resources/assets/mineralogy/models/block/marble_relief_cross_inventory.json index 7677040df..83c60a7d7 100644 --- a/src/main/resources/assets/mineralogy/models/block/marble_relief_cross_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/marble_relief_cross_inventory.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_cross_inventory", "textures": { - "0": "mineralogy:blocks/basalt_smooth", + "0": "minecraft:block/polished_basalt_side", "2": "mineralogy:blocks/marble_smooth", - "particle": "mineralogy:blocks/basalt_smooth" + "particle": "minecraft:block/polished_basalt_side" } } diff --git a/src/main/resources/assets/mineralogy/models/block/marble_relief_hammer_inventory.json b/src/main/resources/assets/mineralogy/models/block/marble_relief_hammer_inventory.json index d5c7ad18a..1d0e6e88d 100644 --- a/src/main/resources/assets/mineralogy/models/block/marble_relief_hammer_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/marble_relief_hammer_inventory.json @@ -2,7 +2,7 @@ "parent": "mineralogy:block/relief_hammer_inventory", "textures": { "0": "mineralogy:blocks/marble_smooth", - "1": "mineralogy:blocks/basalt_smooth", + "1": "minecraft:block/polished_basalt_side", "particle": "mineralogy:blocks/marble_smooth" } } diff --git a/src/main/resources/assets/mineralogy/models/block/marble_relief_hoe_inventory.json b/src/main/resources/assets/mineralogy/models/block/marble_relief_hoe_inventory.json index 86225b5f7..66de5acd4 100644 --- a/src/main/resources/assets/mineralogy/models/block/marble_relief_hoe_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/marble_relief_hoe_inventory.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_hoe_inventory", "textures": { - "0": "mineralogy:blocks/basalt_smooth", + "0": "minecraft:block/polished_basalt_side", "2": "mineralogy:blocks/marble_smooth", - "particle": "mineralogy:blocks/basalt_smooth" + "particle": "minecraft:block/polished_basalt_side" } } diff --git a/src/main/resources/assets/mineralogy/models/block/marble_relief_horizontal_inventory.json b/src/main/resources/assets/mineralogy/models/block/marble_relief_horizontal_inventory.json index d2b80d5d6..2f1df2e53 100644 --- a/src/main/resources/assets/mineralogy/models/block/marble_relief_horizontal_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/marble_relief_horizontal_inventory.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_horizontal_inventory", "textures": { - "0": "mineralogy:blocks/basalt_smooth", + "0": "minecraft:block/polished_basalt_side", "2": "mineralogy:blocks/marble_smooth", - "particle": "mineralogy:blocks/basalt_smooth" + "particle": "minecraft:block/polished_basalt_side" } } diff --git a/src/main/resources/assets/mineralogy/models/block/marble_relief_i_inventory.json b/src/main/resources/assets/mineralogy/models/block/marble_relief_i_inventory.json index ef8c34c77..12afcd3e1 100644 --- a/src/main/resources/assets/mineralogy/models/block/marble_relief_i_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/marble_relief_i_inventory.json @@ -1,7 +1,7 @@ { "parent": "mineralogy:block/relief_i_inventory", "textures": { - "3": "mineralogy:blocks/basalt_smooth", + "3": "minecraft:block/polished_basalt_side", "4": "mineralogy:blocks/marble_smooth", "particle": "mineralogy:blocks/marble_smooth" } diff --git a/src/main/resources/assets/mineralogy/models/block/marble_relief_left_inventory.json b/src/main/resources/assets/mineralogy/models/block/marble_relief_left_inventory.json index 750698911..e9b1ddf8e 100644 --- a/src/main/resources/assets/mineralogy/models/block/marble_relief_left_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/marble_relief_left_inventory.json @@ -2,7 +2,7 @@ "parent": "mineralogy:block/relief_left_inventory", "textures": { "0": "mineralogy:blocks/marble_smooth", - "1": "mineralogy:blocks/basalt_smooth", + "1": "minecraft:block/polished_basalt_side", "particle": "mineralogy:blocks/marble_smooth" } } diff --git a/src/main/resources/assets/mineralogy/models/block/marble_relief_pickaxe_inventory.json b/src/main/resources/assets/mineralogy/models/block/marble_relief_pickaxe_inventory.json index 8b75ff7e2..868f64cee 100644 --- a/src/main/resources/assets/mineralogy/models/block/marble_relief_pickaxe_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/marble_relief_pickaxe_inventory.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_pickaxe_inventory", "textures": { - "0": "mineralogy:blocks/basalt_smooth", + "0": "minecraft:block/polished_basalt_side", "2": "mineralogy:blocks/marble_smooth", - "particle": "mineralogy:blocks/basalt_smooth" + "particle": "minecraft:block/polished_basalt_side" } } diff --git a/src/main/resources/assets/mineralogy/models/block/marble_relief_plus_inventory.json b/src/main/resources/assets/mineralogy/models/block/marble_relief_plus_inventory.json index 75891d600..d60b5d95e 100644 --- a/src/main/resources/assets/mineralogy/models/block/marble_relief_plus_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/marble_relief_plus_inventory.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_plus_inventory", "textures": { - "0": "mineralogy:blocks/basalt_smooth", + "0": "minecraft:block/polished_basalt_side", "2": "mineralogy:blocks/marble_smooth", - "particle": "mineralogy:blocks/basalt_smooth" + "particle": "minecraft:block/polished_basalt_side" } } diff --git a/src/main/resources/assets/mineralogy/models/block/marble_relief_right_inventory.json b/src/main/resources/assets/mineralogy/models/block/marble_relief_right_inventory.json index 25a9e6772..09e6f2991 100644 --- a/src/main/resources/assets/mineralogy/models/block/marble_relief_right_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/marble_relief_right_inventory.json @@ -2,7 +2,7 @@ "parent": "mineralogy:block/relief_right_inventory", "textures": { "0": "mineralogy:blocks/marble_smooth", - "1": "mineralogy:blocks/basalt_smooth", + "1": "minecraft:block/polished_basalt_side", "particle": "mineralogy:blocks/marble_smooth" } } diff --git a/src/main/resources/assets/mineralogy/models/block/marble_relief_sword_inventory.json b/src/main/resources/assets/mineralogy/models/block/marble_relief_sword_inventory.json index dc1615c68..c78ecd98f 100644 --- a/src/main/resources/assets/mineralogy/models/block/marble_relief_sword_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/marble_relief_sword_inventory.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_sword_inventory", "textures": { - "0": "mineralogy:blocks/basalt_smooth", + "0": "minecraft:block/polished_basalt_side", "2": "mineralogy:blocks/marble_smooth", - "particle": "mineralogy:blocks/basalt_smooth" + "particle": "minecraft:block/polished_basalt_side" } } diff --git a/src/main/resources/assets/mineralogy/models/block/marble_relief_vertical_inventory.json b/src/main/resources/assets/mineralogy/models/block/marble_relief_vertical_inventory.json index f4ad0605c..fdbfba75e 100644 --- a/src/main/resources/assets/mineralogy/models/block/marble_relief_vertical_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/marble_relief_vertical_inventory.json @@ -2,7 +2,7 @@ "parent": "mineralogy:block/relief_vertical_inventory", "textures": { "0": "mineralogy:blocks/marble_smooth", - "1": "mineralogy:blocks/basalt_smooth", + "1": "minecraft:block/polished_basalt_side", "particle": "mineralogy:blocks/marble_smooth" } } diff --git a/src/main/resources/assets/mineralogy/models/block/rock_salt_relief_axe_inventory.json b/src/main/resources/assets/mineralogy/models/block/rock_salt_relief_axe_inventory.json index 8d7d354b9..bc01ed927 100644 --- a/src/main/resources/assets/mineralogy/models/block/rock_salt_relief_axe_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/rock_salt_relief_axe_inventory.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_axe_inventory", "textures": { - "0": "mineralogy:blocks/basalt_smooth", + "0": "minecraft:block/polished_basalt_side", "2": "mineralogy:blocks/rock_salt_smooth", - "particle": "mineralogy:blocks/basalt_smooth" + "particle": "minecraft:block/polished_basalt_side" } } diff --git a/src/main/resources/assets/mineralogy/models/block/rock_salt_relief_blank_inventory.json b/src/main/resources/assets/mineralogy/models/block/rock_salt_relief_blank_inventory.json index 47ce582c3..eb6f15ab0 100644 --- a/src/main/resources/assets/mineralogy/models/block/rock_salt_relief_blank_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/rock_salt_relief_blank_inventory.json @@ -2,7 +2,7 @@ "parent": "mineralogy:block/relief_blank_inventory", "textures": { "0": "mineralogy:blocks/rock_salt_smooth", - "1": "mineralogy:blocks/basalt_smooth", + "1": "minecraft:block/polished_basalt_side", "particle": "mineralogy:blocks/rock_salt_smooth" } } diff --git a/src/main/resources/assets/mineralogy/models/block/rock_salt_relief_cross_inventory.json b/src/main/resources/assets/mineralogy/models/block/rock_salt_relief_cross_inventory.json index 4fd7d9dfc..9324ebbba 100644 --- a/src/main/resources/assets/mineralogy/models/block/rock_salt_relief_cross_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/rock_salt_relief_cross_inventory.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_cross_inventory", "textures": { - "0": "mineralogy:blocks/basalt_smooth", + "0": "minecraft:block/polished_basalt_side", "2": "mineralogy:blocks/rock_salt_smooth", - "particle": "mineralogy:blocks/basalt_smooth" + "particle": "minecraft:block/polished_basalt_side" } } diff --git a/src/main/resources/assets/mineralogy/models/block/rock_salt_relief_hammer_inventory.json b/src/main/resources/assets/mineralogy/models/block/rock_salt_relief_hammer_inventory.json index 4c065671b..33e551a35 100644 --- a/src/main/resources/assets/mineralogy/models/block/rock_salt_relief_hammer_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/rock_salt_relief_hammer_inventory.json @@ -2,7 +2,7 @@ "parent": "mineralogy:block/relief_hammer_inventory", "textures": { "0": "mineralogy:blocks/rock_salt_smooth", - "1": "mineralogy:blocks/basalt_smooth", + "1": "minecraft:block/polished_basalt_side", "particle": "mineralogy:blocks/rock_salt_smooth" } } diff --git a/src/main/resources/assets/mineralogy/models/block/rock_salt_relief_hoe_inventory.json b/src/main/resources/assets/mineralogy/models/block/rock_salt_relief_hoe_inventory.json index 83dee9b3b..526f954fa 100644 --- a/src/main/resources/assets/mineralogy/models/block/rock_salt_relief_hoe_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/rock_salt_relief_hoe_inventory.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_hoe_inventory", "textures": { - "0": "mineralogy:blocks/basalt_smooth", + "0": "minecraft:block/polished_basalt_side", "2": "mineralogy:blocks/rock_salt_smooth", - "particle": "mineralogy:blocks/basalt_smooth" + "particle": "minecraft:block/polished_basalt_side" } } diff --git a/src/main/resources/assets/mineralogy/models/block/rock_salt_relief_horizontal_inventory.json b/src/main/resources/assets/mineralogy/models/block/rock_salt_relief_horizontal_inventory.json index 01c62ac62..bfc371e0b 100644 --- a/src/main/resources/assets/mineralogy/models/block/rock_salt_relief_horizontal_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/rock_salt_relief_horizontal_inventory.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_horizontal_inventory", "textures": { - "0": "mineralogy:blocks/basalt_smooth", + "0": "minecraft:block/polished_basalt_side", "2": "mineralogy:blocks/rock_salt_smooth", - "particle": "mineralogy:blocks/basalt_smooth" + "particle": "minecraft:block/polished_basalt_side" } } diff --git a/src/main/resources/assets/mineralogy/models/block/rock_salt_relief_i_inventory.json b/src/main/resources/assets/mineralogy/models/block/rock_salt_relief_i_inventory.json index 09d1718cd..8e405925d 100644 --- a/src/main/resources/assets/mineralogy/models/block/rock_salt_relief_i_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/rock_salt_relief_i_inventory.json @@ -1,7 +1,7 @@ { "parent": "mineralogy:block/relief_i_inventory", "textures": { - "3": "mineralogy:blocks/basalt_smooth", + "3": "minecraft:block/polished_basalt_side", "4": "mineralogy:blocks/rock_salt_smooth", "particle": "mineralogy:blocks/rock_salt_smooth" } diff --git a/src/main/resources/assets/mineralogy/models/block/rock_salt_relief_left_inventory.json b/src/main/resources/assets/mineralogy/models/block/rock_salt_relief_left_inventory.json index 6a76e4f1e..52984d537 100644 --- a/src/main/resources/assets/mineralogy/models/block/rock_salt_relief_left_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/rock_salt_relief_left_inventory.json @@ -2,7 +2,7 @@ "parent": "mineralogy:block/relief_left_inventory", "textures": { "0": "mineralogy:blocks/rock_salt_smooth", - "1": "mineralogy:blocks/basalt_smooth", + "1": "minecraft:block/polished_basalt_side", "particle": "mineralogy:blocks/rock_salt_smooth" } } diff --git a/src/main/resources/assets/mineralogy/models/block/rock_salt_relief_pickaxe_inventory.json b/src/main/resources/assets/mineralogy/models/block/rock_salt_relief_pickaxe_inventory.json index 3ab40bce9..7f47b6544 100644 --- a/src/main/resources/assets/mineralogy/models/block/rock_salt_relief_pickaxe_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/rock_salt_relief_pickaxe_inventory.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_pickaxe_inventory", "textures": { - "0": "mineralogy:blocks/basalt_smooth", + "0": "minecraft:block/polished_basalt_side", "2": "mineralogy:blocks/rock_salt_smooth", - "particle": "mineralogy:blocks/basalt_smooth" + "particle": "minecraft:block/polished_basalt_side" } } diff --git a/src/main/resources/assets/mineralogy/models/block/rock_salt_relief_plus_inventory.json b/src/main/resources/assets/mineralogy/models/block/rock_salt_relief_plus_inventory.json index 5be2763da..78dada958 100644 --- a/src/main/resources/assets/mineralogy/models/block/rock_salt_relief_plus_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/rock_salt_relief_plus_inventory.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_plus_inventory", "textures": { - "0": "mineralogy:blocks/basalt_smooth", + "0": "minecraft:block/polished_basalt_side", "2": "mineralogy:blocks/rock_salt_smooth", - "particle": "mineralogy:blocks/basalt_smooth" + "particle": "minecraft:block/polished_basalt_side" } } diff --git a/src/main/resources/assets/mineralogy/models/block/rock_salt_relief_right_inventory.json b/src/main/resources/assets/mineralogy/models/block/rock_salt_relief_right_inventory.json index 35a1c5bc9..f3c7be8f0 100644 --- a/src/main/resources/assets/mineralogy/models/block/rock_salt_relief_right_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/rock_salt_relief_right_inventory.json @@ -2,7 +2,7 @@ "parent": "mineralogy:block/relief_right_inventory", "textures": { "0": "mineralogy:blocks/rock_salt_smooth", - "1": "mineralogy:blocks/basalt_smooth", + "1": "minecraft:block/polished_basalt_side", "particle": "mineralogy:blocks/rock_salt_smooth" } } diff --git a/src/main/resources/assets/mineralogy/models/block/rock_salt_relief_sword_inventory.json b/src/main/resources/assets/mineralogy/models/block/rock_salt_relief_sword_inventory.json index 7ffe02ad4..26af4e32a 100644 --- a/src/main/resources/assets/mineralogy/models/block/rock_salt_relief_sword_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/rock_salt_relief_sword_inventory.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_sword_inventory", "textures": { - "0": "mineralogy:blocks/basalt_smooth", + "0": "minecraft:block/polished_basalt_side", "2": "mineralogy:blocks/rock_salt_smooth", - "particle": "mineralogy:blocks/basalt_smooth" + "particle": "minecraft:block/polished_basalt_side" } } diff --git a/src/main/resources/assets/mineralogy/models/block/rock_salt_relief_vertical_inventory.json b/src/main/resources/assets/mineralogy/models/block/rock_salt_relief_vertical_inventory.json index 255da4ecb..4762cbb51 100644 --- a/src/main/resources/assets/mineralogy/models/block/rock_salt_relief_vertical_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/rock_salt_relief_vertical_inventory.json @@ -2,7 +2,7 @@ "parent": "mineralogy:block/relief_vertical_inventory", "textures": { "0": "mineralogy:blocks/rock_salt_smooth", - "1": "mineralogy:blocks/basalt_smooth", + "1": "minecraft:block/polished_basalt_side", "particle": "mineralogy:blocks/rock_salt_smooth" } } diff --git a/src/main/resources/assets/mineralogy/models/block/tuff.json b/src/main/resources/assets/mineralogy/models/block/tuff.json index fdc7e0ecc..7ae76ea02 100644 --- a/src/main/resources/assets/mineralogy/models/block/tuff.json +++ b/src/main/resources/assets/mineralogy/models/block/tuff.json @@ -1,6 +1,6 @@ { "parent": "mineralogy:block/block", "textures": { - "face": "mineralogy:blocks/tuff" + "face": "minecraft:block/tuff" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/tuff_brick.json b/src/main/resources/assets/mineralogy/models/block/tuff_brick.json index d131c4cc8..201ea9ff6 100644 --- a/src/main/resources/assets/mineralogy/models/block/tuff_brick.json +++ b/src/main/resources/assets/mineralogy/models/block/tuff_brick.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/brick", "textures": { - "top": "mineralogy:blocks/tuff_brick_top", - "bottom": "mineralogy:blocks/tuff_brick_top", - "side": "mineralogy:blocks/tuff_brick_side" + "top": "minecraft:block/tuff_bricks", + "bottom": "minecraft:block/tuff_bricks", + "side": "minecraft:block/tuff_bricks" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/tuff_brick_double_slab.json b/src/main/resources/assets/mineralogy/models/block/tuff_brick_double_slab.json index d131c4cc8..201ea9ff6 100644 --- a/src/main/resources/assets/mineralogy/models/block/tuff_brick_double_slab.json +++ b/src/main/resources/assets/mineralogy/models/block/tuff_brick_double_slab.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/brick", "textures": { - "top": "mineralogy:blocks/tuff_brick_top", - "bottom": "mineralogy:blocks/tuff_brick_top", - "side": "mineralogy:blocks/tuff_brick_side" + "top": "minecraft:block/tuff_bricks", + "bottom": "minecraft:block/tuff_bricks", + "side": "minecraft:block/tuff_bricks" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/tuff_brick_furnace.json b/src/main/resources/assets/mineralogy/models/block/tuff_brick_furnace.json index 009423c99..6651c1890 100644 --- a/src/main/resources/assets/mineralogy/models/block/tuff_brick_furnace.json +++ b/src/main/resources/assets/mineralogy/models/block/tuff_brick_furnace.json @@ -1,8 +1,8 @@ { "parent": "block/orientable", "textures": { - "top": "mineralogy:blocks/tuff_brick_top", + "top": "minecraft:block/tuff_bricks", "front": "mineralogy:blocks/tuff_brick_furnace_front_off", - "side": "mineralogy:blocks/tuff_brick_side" + "side": "minecraft:block/tuff_bricks" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/tuff_brick_slab.json b/src/main/resources/assets/mineralogy/models/block/tuff_brick_slab.json index 618dbb616..46a10575a 100644 --- a/src/main/resources/assets/mineralogy/models/block/tuff_brick_slab.json +++ b/src/main/resources/assets/mineralogy/models/block/tuff_brick_slab.json @@ -1,7 +1,7 @@ { "parent": "mineralogy:block/slab", "textures": { - "face": "mineralogy:blocks/tuff_brick_side", - "side": "mineralogy:blocks/tuff_brick_top" + "face": "minecraft:block/tuff_bricks", + "side": "minecraft:block/tuff_bricks" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/tuff_brick_stairs.json b/src/main/resources/assets/mineralogy/models/block/tuff_brick_stairs.json index a50bde53f..ac9602be5 100644 --- a/src/main/resources/assets/mineralogy/models/block/tuff_brick_stairs.json +++ b/src/main/resources/assets/mineralogy/models/block/tuff_brick_stairs.json @@ -1,7 +1,7 @@ { "parent": "mineralogy:block/stairs_normal", "textures": { - "face": "mineralogy:blocks/tuff_brick_top", - "side": "mineralogy:blocks/tuff_brick_side" + "face": "minecraft:block/tuff_bricks", + "side": "minecraft:block/tuff_bricks" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/tuff_brick_stairs_inner.json b/src/main/resources/assets/mineralogy/models/block/tuff_brick_stairs_inner.json index 2a5b7cf07..a07f75c71 100644 --- a/src/main/resources/assets/mineralogy/models/block/tuff_brick_stairs_inner.json +++ b/src/main/resources/assets/mineralogy/models/block/tuff_brick_stairs_inner.json @@ -1,7 +1,7 @@ { "parent": "mineralogy:block/stairs_inner", "textures": { - "face": "mineralogy:blocks/tuff_brick_top", - "side": "mineralogy:blocks/tuff_brick_side" + "face": "minecraft:block/tuff_bricks", + "side": "minecraft:block/tuff_bricks" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/tuff_brick_stairs_outer.json b/src/main/resources/assets/mineralogy/models/block/tuff_brick_stairs_outer.json index 0b1cdad52..1336d009a 100644 --- a/src/main/resources/assets/mineralogy/models/block/tuff_brick_stairs_outer.json +++ b/src/main/resources/assets/mineralogy/models/block/tuff_brick_stairs_outer.json @@ -1,7 +1,7 @@ { "parent": "mineralogy:block/stairs_outer", "textures": { - "face": "mineralogy:blocks/tuff_brick_top", - "side": "mineralogy:blocks/tuff_brick_side" + "face": "minecraft:block/tuff_bricks", + "side": "minecraft:block/tuff_bricks" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/tuff_brick_wall_inventory.json b/src/main/resources/assets/mineralogy/models/block/tuff_brick_wall_inventory.json index 6ab1f42e6..44a7e4c27 100644 --- a/src/main/resources/assets/mineralogy/models/block/tuff_brick_wall_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/tuff_brick_wall_inventory.json @@ -1,6 +1,6 @@ { "parent": "block/wall_inventory", "textures": { - "wall": "mineralogy:blocks/tuff_brick_top" + "wall": "minecraft:block/tuff_bricks" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/tuff_brick_wall_post.json b/src/main/resources/assets/mineralogy/models/block/tuff_brick_wall_post.json index 7ee26a543..d60525038 100644 --- a/src/main/resources/assets/mineralogy/models/block/tuff_brick_wall_post.json +++ b/src/main/resources/assets/mineralogy/models/block/tuff_brick_wall_post.json @@ -1,6 +1,6 @@ { "parent": "minecraft:block/template_wall_post", "textures": { - "wall": "mineralogy:blocks/tuff_brick_side" + "wall": "minecraft:block/tuff_bricks" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/tuff_brick_wall_side.json b/src/main/resources/assets/mineralogy/models/block/tuff_brick_wall_side.json index 1e079e583..783fe9915 100644 --- a/src/main/resources/assets/mineralogy/models/block/tuff_brick_wall_side.json +++ b/src/main/resources/assets/mineralogy/models/block/tuff_brick_wall_side.json @@ -1,6 +1,6 @@ { "parent": "minecraft:block/template_wall_side", "textures": { - "wall": "mineralogy:blocks/tuff_brick_side" + "wall": "minecraft:block/tuff_bricks" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/tuff_brick_wall_side_tall.json b/src/main/resources/assets/mineralogy/models/block/tuff_brick_wall_side_tall.json index ec1c4c4d7..ff0710a27 100644 --- a/src/main/resources/assets/mineralogy/models/block/tuff_brick_wall_side_tall.json +++ b/src/main/resources/assets/mineralogy/models/block/tuff_brick_wall_side_tall.json @@ -1,6 +1,6 @@ { "parent": "minecraft:block/template_wall_side_tall", "textures": { - "wall": "mineralogy:blocks/tuff_brick_side" + "wall": "minecraft:block/tuff_bricks" } } diff --git a/src/main/resources/assets/mineralogy/models/block/tuff_double_slab.json b/src/main/resources/assets/mineralogy/models/block/tuff_double_slab.json index ce2774a2f..0feb8b55e 100644 --- a/src/main/resources/assets/mineralogy/models/block/tuff_double_slab.json +++ b/src/main/resources/assets/mineralogy/models/block/tuff_double_slab.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/brick", "textures": { - "top": "mineralogy:blocks/tuff", - "bottom": "mineralogy:blocks/tuff", - "side": "mineralogy:blocks/tuff" + "top": "minecraft:block/tuff", + "bottom": "minecraft:block/tuff", + "side": "minecraft:block/tuff" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/tuff_furnace.json b/src/main/resources/assets/mineralogy/models/block/tuff_furnace.json index 5c1b29833..12411279d 100644 --- a/src/main/resources/assets/mineralogy/models/block/tuff_furnace.json +++ b/src/main/resources/assets/mineralogy/models/block/tuff_furnace.json @@ -1,8 +1,8 @@ { "parent": "block/orientable", "textures": { - "top": "mineralogy:blocks/tuff", + "top": "minecraft:block/tuff", "front": "mineralogy:blocks/tuff_furnace_front_off", - "side": "mineralogy:blocks/tuff" + "side": "minecraft:block/tuff" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/tuff_relief_axe.json b/src/main/resources/assets/mineralogy/models/block/tuff_relief_axe.json index 3bba7cefc..8cf1101e4 100644 --- a/src/main/resources/assets/mineralogy/models/block/tuff_relief_axe.json +++ b/src/main/resources/assets/mineralogy/models/block/tuff_relief_axe.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_axe", "textures": { - "0": "mineralogy:blocks/tuff_smooth", - "2": "mineralogy:blocks/tuff_smooth", - "particle": "mineralogy:blocks/tuff_smooth" + "0": "minecraft:block/polished_tuff", + "2": "minecraft:block/polished_tuff", + "particle": "minecraft:block/polished_tuff" } } diff --git a/src/main/resources/assets/mineralogy/models/block/tuff_relief_axe_inventory.json b/src/main/resources/assets/mineralogy/models/block/tuff_relief_axe_inventory.json index 99e846505..a6561ab5e 100644 --- a/src/main/resources/assets/mineralogy/models/block/tuff_relief_axe_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/tuff_relief_axe_inventory.json @@ -2,7 +2,7 @@ "parent": "mineralogy:block/relief_axe_inventory", "textures": { "0": "mineralogy:blocks/marble_smooth", - "2": "mineralogy:blocks/tuff_smooth", + "2": "minecraft:block/polished_tuff", "particle": "mineralogy:blocks/marble_smooth" } } diff --git a/src/main/resources/assets/mineralogy/models/block/tuff_relief_blank.json b/src/main/resources/assets/mineralogy/models/block/tuff_relief_blank.json index e537f79ff..e4f0492a9 100644 --- a/src/main/resources/assets/mineralogy/models/block/tuff_relief_blank.json +++ b/src/main/resources/assets/mineralogy/models/block/tuff_relief_blank.json @@ -1,7 +1,7 @@ { "parent": "mineralogy:block/relief_blank", "textures": { - "0": "mineralogy:blocks/tuff_smooth", - "particle": "mineralogy:blocks/tuff_smooth" + "0": "minecraft:block/polished_tuff", + "particle": "minecraft:block/polished_tuff" } } diff --git a/src/main/resources/assets/mineralogy/models/block/tuff_relief_blank_inventory.json b/src/main/resources/assets/mineralogy/models/block/tuff_relief_blank_inventory.json index d63703165..c05259c66 100644 --- a/src/main/resources/assets/mineralogy/models/block/tuff_relief_blank_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/tuff_relief_blank_inventory.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_blank_inventory", "textures": { - "0": "mineralogy:blocks/tuff_smooth", + "0": "minecraft:block/polished_tuff", "1": "mineralogy:blocks/marble_smooth", - "particle": "mineralogy:blocks/tuff_smooth" + "particle": "minecraft:block/polished_tuff" } } diff --git a/src/main/resources/assets/mineralogy/models/block/tuff_relief_cross.json b/src/main/resources/assets/mineralogy/models/block/tuff_relief_cross.json index 712eb2d6a..58128a058 100644 --- a/src/main/resources/assets/mineralogy/models/block/tuff_relief_cross.json +++ b/src/main/resources/assets/mineralogy/models/block/tuff_relief_cross.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_cross", "textures": { - "0": "mineralogy:blocks/tuff_smooth", - "2": "mineralogy:blocks/tuff_smooth", - "particle": "mineralogy:blocks/tuff_smooth" + "0": "minecraft:block/polished_tuff", + "2": "minecraft:block/polished_tuff", + "particle": "minecraft:block/polished_tuff" } } diff --git a/src/main/resources/assets/mineralogy/models/block/tuff_relief_cross_inventory.json b/src/main/resources/assets/mineralogy/models/block/tuff_relief_cross_inventory.json index 5bd83b619..7ec30cf84 100644 --- a/src/main/resources/assets/mineralogy/models/block/tuff_relief_cross_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/tuff_relief_cross_inventory.json @@ -2,7 +2,7 @@ "parent": "mineralogy:block/relief_cross_inventory", "textures": { "0": "mineralogy:blocks/marble_smooth", - "2": "mineralogy:blocks/tuff_smooth", + "2": "minecraft:block/polished_tuff", "particle": "mineralogy:blocks/marble_smooth" } } diff --git a/src/main/resources/assets/mineralogy/models/block/tuff_relief_hammer.json b/src/main/resources/assets/mineralogy/models/block/tuff_relief_hammer.json index 879005359..9394a3e3a 100644 --- a/src/main/resources/assets/mineralogy/models/block/tuff_relief_hammer.json +++ b/src/main/resources/assets/mineralogy/models/block/tuff_relief_hammer.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_hammer", "textures": { - "0": "mineralogy:blocks/tuff_smooth", - "2": "mineralogy:blocks/tuff_smooth", - "particle": "mineralogy:blocks/tuff_smooth" + "0": "minecraft:block/polished_tuff", + "2": "minecraft:block/polished_tuff", + "particle": "minecraft:block/polished_tuff" } } diff --git a/src/main/resources/assets/mineralogy/models/block/tuff_relief_hammer_inventory.json b/src/main/resources/assets/mineralogy/models/block/tuff_relief_hammer_inventory.json index 09acabea8..3a755ba47 100644 --- a/src/main/resources/assets/mineralogy/models/block/tuff_relief_hammer_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/tuff_relief_hammer_inventory.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_hammer_inventory", "textures": { - "0": "mineralogy:blocks/tuff_smooth", + "0": "minecraft:block/polished_tuff", "1": "mineralogy:blocks/marble_smooth", - "particle": "mineralogy:blocks/tuff_smooth" + "particle": "minecraft:block/polished_tuff" } } diff --git a/src/main/resources/assets/mineralogy/models/block/tuff_relief_hoe.json b/src/main/resources/assets/mineralogy/models/block/tuff_relief_hoe.json index 83d7206cd..259844bcd 100644 --- a/src/main/resources/assets/mineralogy/models/block/tuff_relief_hoe.json +++ b/src/main/resources/assets/mineralogy/models/block/tuff_relief_hoe.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_hoe", "textures": { - "0": "mineralogy:blocks/tuff_smooth", - "2": "mineralogy:blocks/tuff_smooth", - "particle": "mineralogy:blocks/tuff_smooth" + "0": "minecraft:block/polished_tuff", + "2": "minecraft:block/polished_tuff", + "particle": "minecraft:block/polished_tuff" } } diff --git a/src/main/resources/assets/mineralogy/models/block/tuff_relief_hoe_inventory.json b/src/main/resources/assets/mineralogy/models/block/tuff_relief_hoe_inventory.json index 0b5e67557..12543e063 100644 --- a/src/main/resources/assets/mineralogy/models/block/tuff_relief_hoe_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/tuff_relief_hoe_inventory.json @@ -2,7 +2,7 @@ "parent": "mineralogy:block/relief_hoe_inventory", "textures": { "0": "mineralogy:blocks/marble_smooth", - "2": "mineralogy:blocks/tuff_smooth", + "2": "minecraft:block/polished_tuff", "particle": "mineralogy:blocks/marble_smooth" } } diff --git a/src/main/resources/assets/mineralogy/models/block/tuff_relief_horizontal.json b/src/main/resources/assets/mineralogy/models/block/tuff_relief_horizontal.json index 16f9d3679..f7e0928b6 100644 --- a/src/main/resources/assets/mineralogy/models/block/tuff_relief_horizontal.json +++ b/src/main/resources/assets/mineralogy/models/block/tuff_relief_horizontal.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_horizontal", "textures": { - "0": "mineralogy:blocks/tuff_smooth", - "2": "mineralogy:blocks/tuff_smooth", - "particle": "mineralogy:blocks/tuff_smooth" + "0": "minecraft:block/polished_tuff", + "2": "minecraft:block/polished_tuff", + "particle": "minecraft:block/polished_tuff" } } diff --git a/src/main/resources/assets/mineralogy/models/block/tuff_relief_horizontal_inventory.json b/src/main/resources/assets/mineralogy/models/block/tuff_relief_horizontal_inventory.json index 44fe5c4cc..dade5c497 100644 --- a/src/main/resources/assets/mineralogy/models/block/tuff_relief_horizontal_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/tuff_relief_horizontal_inventory.json @@ -2,7 +2,7 @@ "parent": "mineralogy:block/relief_horizontal_inventory", "textures": { "0": "mineralogy:blocks/marble_smooth", - "2": "mineralogy:blocks/tuff_smooth", + "2": "minecraft:block/polished_tuff", "particle": "mineralogy:blocks/marble_smooth" } } diff --git a/src/main/resources/assets/mineralogy/models/block/tuff_relief_i.json b/src/main/resources/assets/mineralogy/models/block/tuff_relief_i.json index 79ed6a391..742b00f5a 100644 --- a/src/main/resources/assets/mineralogy/models/block/tuff_relief_i.json +++ b/src/main/resources/assets/mineralogy/models/block/tuff_relief_i.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_i", "textures": { - "0": "mineralogy:blocks/tuff_smooth", - "2": "mineralogy:blocks/tuff_smooth", - "particle": "mineralogy:blocks/tuff_smooth" + "0": "minecraft:block/polished_tuff", + "2": "minecraft:block/polished_tuff", + "particle": "minecraft:block/polished_tuff" } } diff --git a/src/main/resources/assets/mineralogy/models/block/tuff_relief_i_inventory.json b/src/main/resources/assets/mineralogy/models/block/tuff_relief_i_inventory.json index 504196c41..963f11df3 100644 --- a/src/main/resources/assets/mineralogy/models/block/tuff_relief_i_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/tuff_relief_i_inventory.json @@ -2,7 +2,7 @@ "parent": "mineralogy:block/relief_i_inventory", "textures": { "3": "mineralogy:blocks/marble_smooth", - "4": "mineralogy:blocks/tuff_smooth", - "particle": "mineralogy:blocks/tuff_smooth" + "4": "minecraft:block/polished_tuff", + "particle": "minecraft:block/polished_tuff" } } diff --git a/src/main/resources/assets/mineralogy/models/block/tuff_relief_left.json b/src/main/resources/assets/mineralogy/models/block/tuff_relief_left.json index 11dc35895..3ade04712 100644 --- a/src/main/resources/assets/mineralogy/models/block/tuff_relief_left.json +++ b/src/main/resources/assets/mineralogy/models/block/tuff_relief_left.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_left", "textures": { - "0": "mineralogy:blocks/tuff_smooth", - "2": "mineralogy:blocks/tuff_smooth", - "particle": "mineralogy:blocks/tuff_smooth" + "0": "minecraft:block/polished_tuff", + "2": "minecraft:block/polished_tuff", + "particle": "minecraft:block/polished_tuff" } } diff --git a/src/main/resources/assets/mineralogy/models/block/tuff_relief_left_inventory.json b/src/main/resources/assets/mineralogy/models/block/tuff_relief_left_inventory.json index cc4107b41..6b812f5e4 100644 --- a/src/main/resources/assets/mineralogy/models/block/tuff_relief_left_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/tuff_relief_left_inventory.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_left_inventory", "textures": { - "0": "mineralogy:blocks/tuff_smooth", + "0": "minecraft:block/polished_tuff", "1": "mineralogy:blocks/marble_smooth", - "particle": "mineralogy:blocks/tuff_smooth" + "particle": "minecraft:block/polished_tuff" } } diff --git a/src/main/resources/assets/mineralogy/models/block/tuff_relief_pickaxe.json b/src/main/resources/assets/mineralogy/models/block/tuff_relief_pickaxe.json index d2087c488..e924ee596 100644 --- a/src/main/resources/assets/mineralogy/models/block/tuff_relief_pickaxe.json +++ b/src/main/resources/assets/mineralogy/models/block/tuff_relief_pickaxe.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_pickaxe", "textures": { - "0": "mineralogy:blocks/tuff_smooth", - "2": "mineralogy:blocks/tuff_smooth", - "particle": "mineralogy:blocks/tuff_smooth" + "0": "minecraft:block/polished_tuff", + "2": "minecraft:block/polished_tuff", + "particle": "minecraft:block/polished_tuff" } } diff --git a/src/main/resources/assets/mineralogy/models/block/tuff_relief_pickaxe_inventory.json b/src/main/resources/assets/mineralogy/models/block/tuff_relief_pickaxe_inventory.json index f1044700d..524858fe0 100644 --- a/src/main/resources/assets/mineralogy/models/block/tuff_relief_pickaxe_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/tuff_relief_pickaxe_inventory.json @@ -2,7 +2,7 @@ "parent": "mineralogy:block/relief_pickaxe_inventory", "textures": { "0": "mineralogy:blocks/marble_smooth", - "2": "mineralogy:blocks/tuff_smooth", + "2": "minecraft:block/polished_tuff", "particle": "mineralogy:blocks/marble_smooth" } } diff --git a/src/main/resources/assets/mineralogy/models/block/tuff_relief_plus.json b/src/main/resources/assets/mineralogy/models/block/tuff_relief_plus.json index d97c37899..87ead07d5 100644 --- a/src/main/resources/assets/mineralogy/models/block/tuff_relief_plus.json +++ b/src/main/resources/assets/mineralogy/models/block/tuff_relief_plus.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_plus", "textures": { - "0": "mineralogy:blocks/tuff_smooth", - "2": "mineralogy:blocks/tuff_smooth", - "particle": "mineralogy:blocks/tuff_smooth" + "0": "minecraft:block/polished_tuff", + "2": "minecraft:block/polished_tuff", + "particle": "minecraft:block/polished_tuff" } } diff --git a/src/main/resources/assets/mineralogy/models/block/tuff_relief_plus_inventory.json b/src/main/resources/assets/mineralogy/models/block/tuff_relief_plus_inventory.json index 135e558cd..3e0e7b051 100644 --- a/src/main/resources/assets/mineralogy/models/block/tuff_relief_plus_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/tuff_relief_plus_inventory.json @@ -2,7 +2,7 @@ "parent": "mineralogy:block/relief_plus_inventory", "textures": { "0": "mineralogy:blocks/marble_smooth", - "2": "mineralogy:blocks/tuff_smooth", + "2": "minecraft:block/polished_tuff", "particle": "mineralogy:blocks/marble_smooth" } } diff --git a/src/main/resources/assets/mineralogy/models/block/tuff_relief_right.json b/src/main/resources/assets/mineralogy/models/block/tuff_relief_right.json index d4cd99adb..b3cff2e0d 100644 --- a/src/main/resources/assets/mineralogy/models/block/tuff_relief_right.json +++ b/src/main/resources/assets/mineralogy/models/block/tuff_relief_right.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_right", "textures": { - "0": "mineralogy:blocks/tuff_smooth", - "2": "mineralogy:blocks/tuff_smooth", - "particle": "mineralogy:blocks/tuff_smooth" + "0": "minecraft:block/polished_tuff", + "2": "minecraft:block/polished_tuff", + "particle": "minecraft:block/polished_tuff" } } diff --git a/src/main/resources/assets/mineralogy/models/block/tuff_relief_right_inventory.json b/src/main/resources/assets/mineralogy/models/block/tuff_relief_right_inventory.json index 7258f0580..0e48d6649 100644 --- a/src/main/resources/assets/mineralogy/models/block/tuff_relief_right_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/tuff_relief_right_inventory.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_right_inventory", "textures": { - "0": "mineralogy:blocks/tuff_smooth", + "0": "minecraft:block/polished_tuff", "1": "mineralogy:blocks/marble_smooth", - "particle": "mineralogy:blocks/tuff_smooth" + "particle": "minecraft:block/polished_tuff" } } diff --git a/src/main/resources/assets/mineralogy/models/block/tuff_relief_sword.json b/src/main/resources/assets/mineralogy/models/block/tuff_relief_sword.json index bff757543..c55ec8a7c 100644 --- a/src/main/resources/assets/mineralogy/models/block/tuff_relief_sword.json +++ b/src/main/resources/assets/mineralogy/models/block/tuff_relief_sword.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_sword", "textures": { - "0": "mineralogy:blocks/tuff_smooth", - "2": "mineralogy:blocks/tuff_smooth", - "particle": "mineralogy:blocks/tuff_smooth" + "0": "minecraft:block/polished_tuff", + "2": "minecraft:block/polished_tuff", + "particle": "minecraft:block/polished_tuff" } } diff --git a/src/main/resources/assets/mineralogy/models/block/tuff_relief_sword_inventory.json b/src/main/resources/assets/mineralogy/models/block/tuff_relief_sword_inventory.json index b58ee070b..2aff0c2e4 100644 --- a/src/main/resources/assets/mineralogy/models/block/tuff_relief_sword_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/tuff_relief_sword_inventory.json @@ -2,7 +2,7 @@ "parent": "mineralogy:block/relief_sword_inventory", "textures": { "0": "mineralogy:blocks/marble_smooth", - "2": "mineralogy:blocks/tuff_smooth", + "2": "minecraft:block/polished_tuff", "particle": "mineralogy:blocks/marble_smooth" } } diff --git a/src/main/resources/assets/mineralogy/models/block/tuff_relief_vertical.json b/src/main/resources/assets/mineralogy/models/block/tuff_relief_vertical.json index 559071bb7..a5f5244b4 100644 --- a/src/main/resources/assets/mineralogy/models/block/tuff_relief_vertical.json +++ b/src/main/resources/assets/mineralogy/models/block/tuff_relief_vertical.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_vertical", "textures": { - "0": "mineralogy:blocks/tuff_smooth", - "2": "mineralogy:blocks/tuff_smooth", - "particle": "mineralogy:blocks/tuff_smooth" + "0": "minecraft:block/polished_tuff", + "2": "minecraft:block/polished_tuff", + "particle": "minecraft:block/polished_tuff" } } diff --git a/src/main/resources/assets/mineralogy/models/block/tuff_relief_vertical_inventory.json b/src/main/resources/assets/mineralogy/models/block/tuff_relief_vertical_inventory.json index 0016c3df3..f00d4eb26 100644 --- a/src/main/resources/assets/mineralogy/models/block/tuff_relief_vertical_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/tuff_relief_vertical_inventory.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/relief_vertical_inventory", "textures": { - "0": "mineralogy:blocks/tuff_smooth", + "0": "minecraft:block/polished_tuff", "1": "mineralogy:blocks/marble_smooth", - "particle": "mineralogy:blocks/tuff_smooth" + "particle": "minecraft:block/polished_tuff" } } diff --git a/src/main/resources/assets/mineralogy/models/block/tuff_slab.json b/src/main/resources/assets/mineralogy/models/block/tuff_slab.json index 4c8a58272..dbf0f1ce7 100644 --- a/src/main/resources/assets/mineralogy/models/block/tuff_slab.json +++ b/src/main/resources/assets/mineralogy/models/block/tuff_slab.json @@ -1,7 +1,7 @@ { "parent": "mineralogy:block/slab", "textures": { - "face": "mineralogy:blocks/tuff", - "side": "mineralogy:blocks/tuff" + "face": "minecraft:block/tuff", + "side": "minecraft:block/tuff" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/tuff_smooth.json b/src/main/resources/assets/mineralogy/models/block/tuff_smooth.json index a530b0014..2ff9d7a2b 100644 --- a/src/main/resources/assets/mineralogy/models/block/tuff_smooth.json +++ b/src/main/resources/assets/mineralogy/models/block/tuff_smooth.json @@ -1,6 +1,6 @@ { "parent": "mineralogy:block/block", "textures": { - "face": "mineralogy:blocks/tuff_smooth" + "face": "minecraft:block/polished_tuff" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/tuff_smooth_double_slab.json b/src/main/resources/assets/mineralogy/models/block/tuff_smooth_double_slab.json index 87214a4fb..b176997ad 100644 --- a/src/main/resources/assets/mineralogy/models/block/tuff_smooth_double_slab.json +++ b/src/main/resources/assets/mineralogy/models/block/tuff_smooth_double_slab.json @@ -1,8 +1,8 @@ { "parent": "mineralogy:block/brick", "textures": { - "top": "mineralogy:blocks/tuff_smooth", - "bottom": "mineralogy:blocks/tuff_smooth", - "side": "mineralogy:blocks/tuff_smooth" + "top": "minecraft:block/polished_tuff", + "bottom": "minecraft:block/polished_tuff", + "side": "minecraft:block/polished_tuff" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/tuff_smooth_furnace.json b/src/main/resources/assets/mineralogy/models/block/tuff_smooth_furnace.json index 28709d8f9..c0f93a205 100644 --- a/src/main/resources/assets/mineralogy/models/block/tuff_smooth_furnace.json +++ b/src/main/resources/assets/mineralogy/models/block/tuff_smooth_furnace.json @@ -1,8 +1,8 @@ { "parent": "block/orientable", "textures": { - "top": "mineralogy:blocks/tuff_smooth", + "top": "minecraft:block/polished_tuff", "front": "mineralogy:blocks/tuff_smooth_furnace_front_off", - "side": "mineralogy:blocks/tuff_smooth" + "side": "minecraft:block/polished_tuff" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/tuff_smooth_slab.json b/src/main/resources/assets/mineralogy/models/block/tuff_smooth_slab.json index 971e96a48..437b920a9 100644 --- a/src/main/resources/assets/mineralogy/models/block/tuff_smooth_slab.json +++ b/src/main/resources/assets/mineralogy/models/block/tuff_smooth_slab.json @@ -1,7 +1,7 @@ { "parent": "mineralogy:block/slab", "textures": { - "face": "mineralogy:blocks/tuff_smooth", - "side": "mineralogy:blocks/tuff_smooth" + "face": "minecraft:block/polished_tuff", + "side": "minecraft:block/polished_tuff" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/tuff_smooth_stairs.json b/src/main/resources/assets/mineralogy/models/block/tuff_smooth_stairs.json index c6e646df6..4ecc5c552 100644 --- a/src/main/resources/assets/mineralogy/models/block/tuff_smooth_stairs.json +++ b/src/main/resources/assets/mineralogy/models/block/tuff_smooth_stairs.json @@ -1,7 +1,7 @@ { "parent": "mineralogy:block/stairs_normal", "textures": { - "face": "mineralogy:blocks/tuff_smooth", - "side": "mineralogy:blocks/tuff_smooth" + "face": "minecraft:block/polished_tuff", + "side": "minecraft:block/polished_tuff" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/tuff_smooth_stairs_inner.json b/src/main/resources/assets/mineralogy/models/block/tuff_smooth_stairs_inner.json index fc02d17ca..071a724d1 100644 --- a/src/main/resources/assets/mineralogy/models/block/tuff_smooth_stairs_inner.json +++ b/src/main/resources/assets/mineralogy/models/block/tuff_smooth_stairs_inner.json @@ -1,7 +1,7 @@ { "parent": "mineralogy:block/stairs_inner", "textures": { - "face": "mineralogy:blocks/tuff_smooth", - "side": "mineralogy:blocks/tuff_smooth" + "face": "minecraft:block/polished_tuff", + "side": "minecraft:block/polished_tuff" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/tuff_smooth_stairs_outer.json b/src/main/resources/assets/mineralogy/models/block/tuff_smooth_stairs_outer.json index fc77aac90..86a3e3152 100644 --- a/src/main/resources/assets/mineralogy/models/block/tuff_smooth_stairs_outer.json +++ b/src/main/resources/assets/mineralogy/models/block/tuff_smooth_stairs_outer.json @@ -1,7 +1,7 @@ { "parent": "mineralogy:block/stairs_outer", "textures": { - "face": "mineralogy:blocks/tuff_smooth", - "side": "mineralogy:blocks/tuff_smooth" + "face": "minecraft:block/polished_tuff", + "side": "minecraft:block/polished_tuff" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/tuff_smooth_wall_inventory.json b/src/main/resources/assets/mineralogy/models/block/tuff_smooth_wall_inventory.json index 4eb304aa5..51c33802f 100644 --- a/src/main/resources/assets/mineralogy/models/block/tuff_smooth_wall_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/tuff_smooth_wall_inventory.json @@ -1,6 +1,6 @@ { "parent": "block/wall_inventory", "textures": { - "wall": "mineralogy:blocks/tuff_smooth" + "wall": "minecraft:block/polished_tuff" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/tuff_smooth_wall_post.json b/src/main/resources/assets/mineralogy/models/block/tuff_smooth_wall_post.json index 143a99f9b..23f51195b 100644 --- a/src/main/resources/assets/mineralogy/models/block/tuff_smooth_wall_post.json +++ b/src/main/resources/assets/mineralogy/models/block/tuff_smooth_wall_post.json @@ -1,6 +1,6 @@ { "parent": "minecraft:block/template_wall_post", "textures": { - "wall": "mineralogy:blocks/tuff_smooth" + "wall": "minecraft:block/polished_tuff" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/tuff_smooth_wall_side.json b/src/main/resources/assets/mineralogy/models/block/tuff_smooth_wall_side.json index 6baa3eca7..198d2613c 100644 --- a/src/main/resources/assets/mineralogy/models/block/tuff_smooth_wall_side.json +++ b/src/main/resources/assets/mineralogy/models/block/tuff_smooth_wall_side.json @@ -1,6 +1,6 @@ { "parent": "minecraft:block/template_wall_side", "textures": { - "wall": "mineralogy:blocks/tuff_smooth" + "wall": "minecraft:block/polished_tuff" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/tuff_smooth_wall_side_tall.json b/src/main/resources/assets/mineralogy/models/block/tuff_smooth_wall_side_tall.json index 26a57df0e..0119b0da9 100644 --- a/src/main/resources/assets/mineralogy/models/block/tuff_smooth_wall_side_tall.json +++ b/src/main/resources/assets/mineralogy/models/block/tuff_smooth_wall_side_tall.json @@ -1,6 +1,6 @@ { "parent": "minecraft:block/template_wall_side_tall", "textures": { - "wall": "mineralogy:blocks/tuff_smooth" + "wall": "minecraft:block/polished_tuff" } } diff --git a/src/main/resources/assets/mineralogy/models/block/tuff_stairs.json b/src/main/resources/assets/mineralogy/models/block/tuff_stairs.json index dbb7e76d3..b45682547 100644 --- a/src/main/resources/assets/mineralogy/models/block/tuff_stairs.json +++ b/src/main/resources/assets/mineralogy/models/block/tuff_stairs.json @@ -1,7 +1,7 @@ { "parent": "mineralogy:block/stairs_normal", "textures": { - "face": "mineralogy:blocks/tuff", - "side": "mineralogy:blocks/tuff" + "face": "minecraft:block/tuff", + "side": "minecraft:block/tuff" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/tuff_stairs_inner.json b/src/main/resources/assets/mineralogy/models/block/tuff_stairs_inner.json index 2f29a224a..d7dd3b890 100644 --- a/src/main/resources/assets/mineralogy/models/block/tuff_stairs_inner.json +++ b/src/main/resources/assets/mineralogy/models/block/tuff_stairs_inner.json @@ -1,7 +1,7 @@ { "parent": "mineralogy:block/stairs_inner", "textures": { - "face": "mineralogy:blocks/tuff", - "side": "mineralogy:blocks/tuff" + "face": "minecraft:block/tuff", + "side": "minecraft:block/tuff" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/tuff_stairs_outer.json b/src/main/resources/assets/mineralogy/models/block/tuff_stairs_outer.json index 203198ef9..e58df25ef 100644 --- a/src/main/resources/assets/mineralogy/models/block/tuff_stairs_outer.json +++ b/src/main/resources/assets/mineralogy/models/block/tuff_stairs_outer.json @@ -1,7 +1,7 @@ { "parent": "mineralogy:block/stairs_outer", "textures": { - "face": "mineralogy:blocks/tuff", - "side": "mineralogy:blocks/tuff" + "face": "minecraft:block/tuff", + "side": "minecraft:block/tuff" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/tuff_wall_inventory.json b/src/main/resources/assets/mineralogy/models/block/tuff_wall_inventory.json index de8fed039..345874cd0 100644 --- a/src/main/resources/assets/mineralogy/models/block/tuff_wall_inventory.json +++ b/src/main/resources/assets/mineralogy/models/block/tuff_wall_inventory.json @@ -1,6 +1,6 @@ { "parent": "block/wall_inventory", "textures": { - "wall": "mineralogy:blocks/tuff" + "wall": "minecraft:block/tuff" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/tuff_wall_post.json b/src/main/resources/assets/mineralogy/models/block/tuff_wall_post.json index ad66acef8..ca0ee8f17 100644 --- a/src/main/resources/assets/mineralogy/models/block/tuff_wall_post.json +++ b/src/main/resources/assets/mineralogy/models/block/tuff_wall_post.json @@ -1,6 +1,6 @@ { "parent": "minecraft:block/template_wall_post", "textures": { - "wall": "mineralogy:blocks/tuff" + "wall": "minecraft:block/tuff" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/tuff_wall_side.json b/src/main/resources/assets/mineralogy/models/block/tuff_wall_side.json index 4fa9bfcc8..b949ab472 100644 --- a/src/main/resources/assets/mineralogy/models/block/tuff_wall_side.json +++ b/src/main/resources/assets/mineralogy/models/block/tuff_wall_side.json @@ -1,6 +1,6 @@ { "parent": "minecraft:block/template_wall_side", "textures": { - "wall": "mineralogy:blocks/tuff" + "wall": "minecraft:block/tuff" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/tuff_wall_side_tall.json b/src/main/resources/assets/mineralogy/models/block/tuff_wall_side_tall.json index 7f20c097c..9c7a68973 100644 --- a/src/main/resources/assets/mineralogy/models/block/tuff_wall_side_tall.json +++ b/src/main/resources/assets/mineralogy/models/block/tuff_wall_side_tall.json @@ -1,6 +1,6 @@ { "parent": "minecraft:block/template_wall_side_tall", "textures": { - "wall": "mineralogy:blocks/tuff" + "wall": "minecraft:block/tuff" } } diff --git a/src/main/resources/assets/mineralogy/models/block/upper_andesite_slab.json b/src/main/resources/assets/mineralogy/models/block/upper_andesite_slab.json index 12075afd9..626337f40 100644 --- a/src/main/resources/assets/mineralogy/models/block/upper_andesite_slab.json +++ b/src/main/resources/assets/mineralogy/models/block/upper_andesite_slab.json @@ -1,8 +1,8 @@ { "parent": "minecraft:block/slab_top", "textures": { - "bottom": "mineralogy:blocks/andesite", - "top": "mineralogy:blocks/andesite", - "side": "mineralogy:blocks/andesite" + "bottom": "minecraft:block/andesite", + "top": "minecraft:block/andesite", + "side": "minecraft:block/andesite" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/upper_andesite_smooth_slab.json b/src/main/resources/assets/mineralogy/models/block/upper_andesite_smooth_slab.json index e75e9dcdb..6e14c955f 100644 --- a/src/main/resources/assets/mineralogy/models/block/upper_andesite_smooth_slab.json +++ b/src/main/resources/assets/mineralogy/models/block/upper_andesite_smooth_slab.json @@ -1,8 +1,8 @@ { "parent": "minecraft:block/slab_top", "textures": { - "bottom": "mineralogy:blocks/andesite_smooth", - "top": "mineralogy:blocks/andesite_smooth", - "side": "mineralogy:blocks/andesite_smooth" + "bottom": "minecraft:block/polished_andesite", + "top": "minecraft:block/polished_andesite", + "side": "minecraft:block/polished_andesite" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/upper_basalt_slab.json b/src/main/resources/assets/mineralogy/models/block/upper_basalt_slab.json index 3cceb944a..675e68c45 100644 --- a/src/main/resources/assets/mineralogy/models/block/upper_basalt_slab.json +++ b/src/main/resources/assets/mineralogy/models/block/upper_basalt_slab.json @@ -1,8 +1,8 @@ { "parent": "minecraft:block/slab_top", "textures": { - "bottom": "mineralogy:blocks/basalt", - "top": "mineralogy:blocks/basalt", - "side": "mineralogy:blocks/basalt" + "bottom": "minecraft:block/basalt_top", + "top": "minecraft:block/basalt_top", + "side": "minecraft:block/basalt_side" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/upper_basalt_smooth_slab.json b/src/main/resources/assets/mineralogy/models/block/upper_basalt_smooth_slab.json index 6b5e51912..9ffee7d7f 100644 --- a/src/main/resources/assets/mineralogy/models/block/upper_basalt_smooth_slab.json +++ b/src/main/resources/assets/mineralogy/models/block/upper_basalt_smooth_slab.json @@ -1,8 +1,8 @@ { "parent": "minecraft:block/slab_top", "textures": { - "bottom": "mineralogy:blocks/basalt_smooth", - "top": "mineralogy:blocks/basalt_smooth", - "side": "mineralogy:blocks/basalt_smooth" + "bottom": "minecraft:block/polished_basalt_top", + "top": "minecraft:block/polished_basalt_top", + "side": "minecraft:block/polished_basalt_side" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/upper_diorite_slab.json b/src/main/resources/assets/mineralogy/models/block/upper_diorite_slab.json index 15c05cc7f..8442321ad 100644 --- a/src/main/resources/assets/mineralogy/models/block/upper_diorite_slab.json +++ b/src/main/resources/assets/mineralogy/models/block/upper_diorite_slab.json @@ -1,8 +1,8 @@ { "parent": "minecraft:block/slab_top", "textures": { - "bottom": "mineralogy:blocks/diorite", - "top": "mineralogy:blocks/diorite", - "side": "mineralogy:blocks/diorite" + "bottom": "minecraft:block/diorite", + "top": "minecraft:block/diorite", + "side": "minecraft:block/diorite" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/upper_diorite_smooth_slab.json b/src/main/resources/assets/mineralogy/models/block/upper_diorite_smooth_slab.json index 21dd7d6db..add79a165 100644 --- a/src/main/resources/assets/mineralogy/models/block/upper_diorite_smooth_slab.json +++ b/src/main/resources/assets/mineralogy/models/block/upper_diorite_smooth_slab.json @@ -1,8 +1,8 @@ { "parent": "minecraft:block/slab_top", "textures": { - "bottom": "mineralogy:blocks/diorite_smooth", - "top": "mineralogy:blocks/diorite_smooth", - "side": "mineralogy:blocks/diorite_smooth" + "bottom": "minecraft:block/polished_diorite", + "top": "minecraft:block/polished_diorite", + "side": "minecraft:block/polished_diorite" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/upper_granite_slab.json b/src/main/resources/assets/mineralogy/models/block/upper_granite_slab.json index 93a54ad99..4cfba00e0 100644 --- a/src/main/resources/assets/mineralogy/models/block/upper_granite_slab.json +++ b/src/main/resources/assets/mineralogy/models/block/upper_granite_slab.json @@ -1,8 +1,8 @@ { "parent": "minecraft:block/slab_top", "textures": { - "bottom": "mineralogy:blocks/granite", - "top": "mineralogy:blocks/granite", - "side": "mineralogy:blocks/granite" + "bottom": "minecraft:block/granite", + "top": "minecraft:block/granite", + "side": "minecraft:block/granite" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/upper_granite_smooth_slab.json b/src/main/resources/assets/mineralogy/models/block/upper_granite_smooth_slab.json index 7980044d4..0f36cdf53 100644 --- a/src/main/resources/assets/mineralogy/models/block/upper_granite_smooth_slab.json +++ b/src/main/resources/assets/mineralogy/models/block/upper_granite_smooth_slab.json @@ -1,8 +1,8 @@ { "parent": "minecraft:block/slab_top", "textures": { - "bottom": "mineralogy:blocks/granite_smooth", - "top": "mineralogy:blocks/granite_smooth", - "side": "mineralogy:blocks/granite_smooth" + "bottom": "minecraft:block/polished_granite", + "top": "minecraft:block/polished_granite", + "side": "minecraft:block/polished_granite" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/upper_tuff_brick_slab.json b/src/main/resources/assets/mineralogy/models/block/upper_tuff_brick_slab.json index ee75953ad..5777a93b7 100644 --- a/src/main/resources/assets/mineralogy/models/block/upper_tuff_brick_slab.json +++ b/src/main/resources/assets/mineralogy/models/block/upper_tuff_brick_slab.json @@ -1,8 +1,8 @@ { "parent": "minecraft:block/slab_top", "textures": { - "bottom": "mineralogy:blocks/tuff_brick_top", - "top": "mineralogy:blocks/tuff_brick_top", - "side": "mineralogy:blocks/tuff_brick_side" + "bottom": "minecraft:block/tuff_bricks", + "top": "minecraft:block/tuff_bricks", + "side": "minecraft:block/tuff_bricks" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/upper_tuff_slab.json b/src/main/resources/assets/mineralogy/models/block/upper_tuff_slab.json index e5ccbaa48..74dfccf01 100644 --- a/src/main/resources/assets/mineralogy/models/block/upper_tuff_slab.json +++ b/src/main/resources/assets/mineralogy/models/block/upper_tuff_slab.json @@ -1,8 +1,8 @@ { "parent": "minecraft:block/slab_top", "textures": { - "bottom": "mineralogy:blocks/tuff", - "top": "mineralogy:blocks/tuff", - "side": "mineralogy:blocks/tuff" + "bottom": "minecraft:block/tuff", + "top": "minecraft:block/tuff", + "side": "minecraft:block/tuff" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/block/upper_tuff_smooth_slab.json b/src/main/resources/assets/mineralogy/models/block/upper_tuff_smooth_slab.json index d0607c710..2c73ad16b 100644 --- a/src/main/resources/assets/mineralogy/models/block/upper_tuff_smooth_slab.json +++ b/src/main/resources/assets/mineralogy/models/block/upper_tuff_smooth_slab.json @@ -1,8 +1,8 @@ { "parent": "minecraft:block/slab_top", "textures": { - "bottom": "mineralogy:blocks/tuff_smooth", - "top": "mineralogy:blocks/tuff_smooth", - "side": "mineralogy:blocks/tuff_smooth" + "bottom": "minecraft:block/polished_tuff", + "top": "minecraft:block/polished_tuff", + "side": "minecraft:block/polished_tuff" } } \ No newline at end of file diff --git a/src/main/resources/assets/mineralogy/models/item/crude_oil_bucket.json b/src/main/resources/assets/mineralogy/models/item/crude_oil_bucket.json index 01ef09837..7a732b4c1 100644 --- a/src/main/resources/assets/mineralogy/models/item/crude_oil_bucket.json +++ b/src/main/resources/assets/mineralogy/models/item/crude_oil_bucket.json @@ -1,4 +1,6 @@ { - "loader": "neoforge:fluid_container", - "fluid": "mineralogy:crude_oil" + "parent": "minecraft:item/generated", + "textures": { + "layer0": "mineralogy:items/crude_oil_bucket" + } } diff --git a/src/main/resources/coremods/mineralogy_legacy_world_fix.js b/src/main/resources/coremods/mineralogy_legacy_world_fix.js deleted file mode 100644 index 9924f92ea..000000000 --- a/src/main/resources/coremods/mineralogy_legacy_world_fix.js +++ /dev/null @@ -1,151 +0,0 @@ -var Opcodes = Java.type('org.objectweb.asm.Opcodes'); -var ASMAPI = Java.type('net.neoforged.coremod.api.ASMAPI'); -var InsnList = Java.type('org.objectweb.asm.tree.InsnList'); -var IntInsnNode = Java.type('org.objectweb.asm.tree.IntInsnNode'); -var InsnNode = Java.type('org.objectweb.asm.tree.InsnNode'); -var JumpInsnNode = Java.type('org.objectweb.asm.tree.JumpInsnNode'); -var LabelNode = Java.type('org.objectweb.asm.tree.LabelNode'); -var LdcInsnNode = Java.type('org.objectweb.asm.tree.LdcInsnNode'); -var MethodInsnNode = Java.type('org.objectweb.asm.tree.MethodInsnNode'); -var VarInsnNode = Java.type('org.objectweb.asm.tree.VarInsnNode'); - -function previousOpcode(instruction) { - var current = instruction.getPrevious(); - while (current !== null && current.getOpcode() < 0) { - current = current.getPrevious(); - } - return current; -} - -function initializeCoreMod() { - return { - 'mineralogy_legacy_block_state_tables': { - 'target': { - 'type': 'CLASS', - 'name': 'net.minecraft.util.datafix.fixes.BlockStateData' - }, - 'transformer': function(classNode) { - for (var methodIndex = 0; methodIndex < classNode.methods.size(); ++methodIndex) { - var method = classNode.methods.get(methodIndex); - if (method.desc === '(ILjava/lang/String;[Ljava/lang/String;)V') { - method.access = (method.access & ~(Opcodes.ACC_PRIVATE | Opcodes.ACC_PROTECTED)) - | Opcodes.ACC_PUBLIC; - } - if (method.name !== '') { - continue; - } - for (var instruction = method.instructions.getFirst(); instruction !== null; - instruction = instruction.getNext()) { - if (instruction.getOpcode() !== Opcodes.ANEWARRAY - || instruction.desc !== 'com/mojang/serialization/Dynamic') { - continue; - } - var sizeInstruction = previousOpcode(instruction); - if (sizeInstruction !== null && sizeInstruction.getOpcode() === Opcodes.SIPUSH) { - if (sizeInstruction.operand === 4096) { - method.instructions.set(sizeInstruction, new LdcInsnNode(65536)); - } else if (sizeInstruction.operand === 256) { - method.instructions.set(sizeInstruction, new IntInsnNode(Opcodes.SIPUSH, 4096)); - } - } - } - } - return classNode; - } - }, - 'mineralogy_legacy_level_registry': { - 'target': { - 'type': 'CLASS', - 'name': 'net.neoforged.neoforge.common.CommonHooks' - }, - 'transformer': function(classNode) { - for (var methodIndex = 0; methodIndex < classNode.methods.size(); ++methodIndex) { - var method = classNode.methods.get(methodIndex); - if (method.desc !== '(Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/level/storage/LevelStorageSource$LevelDirectory;)V') { - continue; - } - var prefix = new InsnList(); - prefix.add(new VarInsnNode(Opcodes.ALOAD, 0)); - prefix.add(new VarInsnNode(Opcodes.ALOAD, 1)); - prefix.add(new MethodInsnNode( - Opcodes.INVOKESTATIC, - 'zone/moddev/mc/mineralogy/patching/LegacyWorldDataHook', - 'captureLegacyLevelData', - '(Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/level/storage/LevelStorageSource$LevelDirectory;)V', - false)); - method.instructions.insert(prefix); - } - return classNode; - } - }, - 'mineralogy_legacy_worldgen_guard': { - 'target': { - 'type': 'CLASS', - 'name': 'net.minecraft.server.level.WorldGenRegion' - }, - 'transformer': function(classNode) { - var ensureCanWriteName = ASMAPI.mapMethod('m_180807_'); - for (var methodIndex = 0; methodIndex < classNode.methods.size(); ++methodIndex) { - var method = classNode.methods.get(methodIndex); - if (method.name !== ensureCanWriteName - || method.desc !== '(Lnet/minecraft/core/BlockPos;)Z') { - continue; - } - var allowed = new LabelNode(); - var prefix = new InsnList(); - prefix.add(new VarInsnNode(Opcodes.ALOAD, 1)); - prefix.add(new MethodInsnNode( - Opcodes.INVOKESTATIC, - 'zone/moddev/mc/mineralogy/patching/LegacyWorldDataHook', - 'shouldBlockWorldgenWrite', - '(Lnet/minecraft/core/BlockPos;)Z', - false)); - prefix.add(new JumpInsnNode(Opcodes.IFEQ, allowed)); - prefix.add(new InsnNode(Opcodes.ICONST_0)); - prefix.add(new InsnNode(Opcodes.IRETURN)); - prefix.add(allowed); - method.instructions.insert(prefix); - } - return classNode; - } - }, - 'mineralogy_legacy_chunk_data': { - 'target': { - 'type': 'CLASS', - 'name': 'net.minecraft.world.level.chunk.storage.ChunkStorage' - }, - 'transformer': function(classNode) { - for (var methodIndex = 0; methodIndex < classNode.methods.size(); ++methodIndex) { - var method = classNode.methods.get(methodIndex); - if (method.desc.indexOf('Ljava/util/function/Supplier;Lnet/minecraft/nbt/CompoundTag;') < 0 - || !method.desc.endsWith('Lnet/minecraft/nbt/CompoundTag;')) { - continue; - } - - var prefix = new InsnList(); - prefix.add(new VarInsnNode(Opcodes.ALOAD, 3)); - prefix.add(new MethodInsnNode( - Opcodes.INVOKESTATIC, - 'zone/moddev/mc/mineralogy/patching/LegacyWorldDataHook', - 'prepareLegacyChunk', - '(Lnet/minecraft/nbt/CompoundTag;)V', - false)); - method.instructions.insert(prefix); - - for (var instruction = method.instructions.getFirst(); instruction !== null; - instruction = instruction.getNext()) { - if (instruction.getOpcode() === Opcodes.ARETURN) { - method.instructions.insertBefore(instruction, new MethodInsnNode( - Opcodes.INVOKESTATIC, - 'zone/moddev/mc/mineralogy/patching/LegacyWorldDataHook', - 'finalizeLegacyChunk', - '(Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag;', - false)); - } - } - } - return classNode; - } - } - }; -} diff --git a/src/main/resources/data/c/tags/block/cobblestones.json b/src/main/resources/data/c/tags/block/cobblestones.json index 6d067113d..4a747bf9a 100644 --- a/src/main/resources/data/c/tags/block/cobblestones.json +++ b/src/main/resources/data/c/tags/block/cobblestones.json @@ -1,7 +1,7 @@ { - "replace": false, - "values": [ - "mineralogy:chert", - "mineralogy:pumice" - ] + "replace": false, + "values": [ + "mineralogy:chert", + "mineralogy:pumice" + ] } diff --git a/src/main/resources/data/c/tags/block/ores/nitrate.json b/src/main/resources/data/c/tags/block/ores/nitrate.json index 418a5ed1d..abbc7ce54 100644 --- a/src/main/resources/data/c/tags/block/ores/nitrate.json +++ b/src/main/resources/data/c/tags/block/ores/nitrate.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:nitrate_ore" - ] + "replace": false, + "values": [ + "mineralogy:nitrate_ore" + ] } diff --git a/src/main/resources/data/c/tags/block/ores/phosphorous.json b/src/main/resources/data/c/tags/block/ores/phosphorous.json index 48e1a2738..dfe1679de 100644 --- a/src/main/resources/data/c/tags/block/ores/phosphorous.json +++ b/src/main/resources/data/c/tags/block/ores/phosphorous.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:phosphorous_ore" - ] + "replace": false, + "values": [ + "mineralogy:phosphorous_ore" + ] } diff --git a/src/main/resources/data/c/tags/block/ores/sulfur.json b/src/main/resources/data/c/tags/block/ores/sulfur.json index e5f58a881..481c6ac06 100644 --- a/src/main/resources/data/c/tags/block/ores/sulfur.json +++ b/src/main/resources/data/c/tags/block/ores/sulfur.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:sulfur_ore" - ] + "replace": false, + "values": [ + "mineralogy:sulfur_ore" + ] } diff --git a/src/main/resources/data/c/tags/block/storage_blocks/chalk.json b/src/main/resources/data/c/tags/block/storage_blocks/chalk.json index cd50bf66a..360199340 100644 --- a/src/main/resources/data/c/tags/block/storage_blocks/chalk.json +++ b/src/main/resources/data/c/tags/block/storage_blocks/chalk.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:chalk" - ] + "replace": false, + "values": [ + "mineralogy:chalk" + ] } diff --git a/src/main/resources/data/c/tags/block/storage_blocks/gypsum.json b/src/main/resources/data/c/tags/block/storage_blocks/gypsum.json index d3a9d4081..b4d777a53 100644 --- a/src/main/resources/data/c/tags/block/storage_blocks/gypsum.json +++ b/src/main/resources/data/c/tags/block/storage_blocks/gypsum.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:gypsum" - ] + "replace": false, + "values": [ + "mineralogy:gypsum" + ] } diff --git a/src/main/resources/data/c/tags/block/storage_blocks/nitrate.json b/src/main/resources/data/c/tags/block/storage_blocks/nitrate.json index 189bec790..57cb9b6e4 100644 --- a/src/main/resources/data/c/tags/block/storage_blocks/nitrate.json +++ b/src/main/resources/data/c/tags/block/storage_blocks/nitrate.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:nitrate_block" - ] + "replace": false, + "values": [ + "mineralogy:nitrate_block" + ] } diff --git a/src/main/resources/data/c/tags/block/storage_blocks/phosphorous.json b/src/main/resources/data/c/tags/block/storage_blocks/phosphorous.json index 9460538c7..4652ee87f 100644 --- a/src/main/resources/data/c/tags/block/storage_blocks/phosphorous.json +++ b/src/main/resources/data/c/tags/block/storage_blocks/phosphorous.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:phosphorous_block" - ] + "replace": false, + "values": [ + "mineralogy:phosphorous_block" + ] } diff --git a/src/main/resources/data/c/tags/block/storage_blocks/rock_salt.json b/src/main/resources/data/c/tags/block/storage_blocks/rock_salt.json index 24df4c009..8133cee26 100644 --- a/src/main/resources/data/c/tags/block/storage_blocks/rock_salt.json +++ b/src/main/resources/data/c/tags/block/storage_blocks/rock_salt.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:rock_salt" - ] + "replace": false, + "values": [ + "mineralogy:rock_salt" + ] } diff --git a/src/main/resources/data/c/tags/block/storage_blocks/sulfur.json b/src/main/resources/data/c/tags/block/storage_blocks/sulfur.json index c573da5d6..da21f41f1 100644 --- a/src/main/resources/data/c/tags/block/storage_blocks/sulfur.json +++ b/src/main/resources/data/c/tags/block/storage_blocks/sulfur.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:sulfur_block" - ] + "replace": false, + "values": [ + "mineralogy:sulfur_block" + ] } diff --git a/src/main/resources/data/c/tags/fluid/crude_oil.json b/src/main/resources/data/c/tags/fluid/crude_oil.json index 9b9312a8d..e80854f75 100644 --- a/src/main/resources/data/c/tags/fluid/crude_oil.json +++ b/src/main/resources/data/c/tags/fluid/crude_oil.json @@ -1,7 +1,7 @@ { - "replace": false, - "values": [ - "mineralogy:crude_oil", - "mineralogy:flowing_crude_oil" - ] + "replace": false, + "values": [ + "mineralogy:crude_oil", + "mineralogy:flowing_crude_oil" + ] } diff --git a/src/main/resources/data/c/tags/item/buckets/crude_oil.json b/src/main/resources/data/c/tags/item/buckets/crude_oil.json index 6e6cbbb3f..8dd22b7c7 100644 --- a/src/main/resources/data/c/tags/item/buckets/crude_oil.json +++ b/src/main/resources/data/c/tags/item/buckets/crude_oil.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:crude_oil_bucket" - ] + "replace": false, + "values": [ + "mineralogy:crude_oil_bucket" + ] } diff --git a/src/main/resources/data/c/tags/item/cobblestones.json b/src/main/resources/data/c/tags/item/cobblestones.json index 6d067113d..4a747bf9a 100644 --- a/src/main/resources/data/c/tags/item/cobblestones.json +++ b/src/main/resources/data/c/tags/item/cobblestones.json @@ -1,7 +1,7 @@ { - "replace": false, - "values": [ - "mineralogy:chert", - "mineralogy:pumice" - ] + "replace": false, + "values": [ + "mineralogy:chert", + "mineralogy:pumice" + ] } diff --git a/src/main/resources/data/c/tags/item/dusts/carbon.json b/src/main/resources/data/c/tags/item/dusts/carbon.json index 7c1899e51..5d341ba24 100644 --- a/src/main/resources/data/c/tags/item/dusts/carbon.json +++ b/src/main/resources/data/c/tags/item/dusts/carbon.json @@ -1,6 +1,4 @@ { - "replace": false, - "values": [ - - ] + "replace": false, + "values": [] } diff --git a/src/main/resources/data/c/tags/item/dusts/chalk.json b/src/main/resources/data/c/tags/item/dusts/chalk.json index 2e3226fc1..076a4dc21 100644 --- a/src/main/resources/data/c/tags/item/dusts/chalk.json +++ b/src/main/resources/data/c/tags/item/dusts/chalk.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:chalk_dust" - ] + "replace": false, + "values": [ + "mineralogy:chalk_dust" + ] } diff --git a/src/main/resources/data/c/tags/item/dusts/coal.json b/src/main/resources/data/c/tags/item/dusts/coal.json index 7c1899e51..5d341ba24 100644 --- a/src/main/resources/data/c/tags/item/dusts/coal.json +++ b/src/main/resources/data/c/tags/item/dusts/coal.json @@ -1,6 +1,4 @@ { - "replace": false, - "values": [ - - ] + "replace": false, + "values": [] } diff --git a/src/main/resources/data/c/tags/item/dusts/gypsum.json b/src/main/resources/data/c/tags/item/dusts/gypsum.json index 8a9262756..9b3c786b9 100644 --- a/src/main/resources/data/c/tags/item/dusts/gypsum.json +++ b/src/main/resources/data/c/tags/item/dusts/gypsum.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:gypsum_dust" - ] + "replace": false, + "values": [ + "mineralogy:gypsum_dust" + ] } diff --git a/src/main/resources/data/c/tags/item/dusts/nitrate.json b/src/main/resources/data/c/tags/item/dusts/nitrate.json index 99d3cba6e..ebd9bc723 100644 --- a/src/main/resources/data/c/tags/item/dusts/nitrate.json +++ b/src/main/resources/data/c/tags/item/dusts/nitrate.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:nitrate_dust" - ] + "replace": false, + "values": [ + "mineralogy:nitrate_dust" + ] } diff --git a/src/main/resources/data/c/tags/item/dusts/phosphorous.json b/src/main/resources/data/c/tags/item/dusts/phosphorous.json index 7e604d278..ccf060e68 100644 --- a/src/main/resources/data/c/tags/item/dusts/phosphorous.json +++ b/src/main/resources/data/c/tags/item/dusts/phosphorous.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:phosphorous_dust" - ] + "replace": false, + "values": [ + "mineralogy:phosphorous_dust" + ] } diff --git a/src/main/resources/data/c/tags/item/dusts/rock_salt.json b/src/main/resources/data/c/tags/item/dusts/rock_salt.json index 19fd46a5e..889382bb0 100644 --- a/src/main/resources/data/c/tags/item/dusts/rock_salt.json +++ b/src/main/resources/data/c/tags/item/dusts/rock_salt.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:rock_salt_dust" - ] + "replace": false, + "values": [ + "mineralogy:rock_salt_dust" + ] } diff --git a/src/main/resources/data/c/tags/item/dusts/sulfur.json b/src/main/resources/data/c/tags/item/dusts/sulfur.json index 57a8834f1..74fe3a1e8 100644 --- a/src/main/resources/data/c/tags/item/dusts/sulfur.json +++ b/src/main/resources/data/c/tags/item/dusts/sulfur.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:sulfur_dust" - ] + "replace": false, + "values": [ + "mineralogy:sulfur_dust" + ] } diff --git a/src/main/resources/data/c/tags/item/lamps/rock_salt.json b/src/main/resources/data/c/tags/item/lamps/rock_salt.json new file mode 100644 index 000000000..6aac0fa0d --- /dev/null +++ b/src/main/resources/data/c/tags/item/lamps/rock_salt.json @@ -0,0 +1,6 @@ +{ + "replace": false, + "values": [ + "mineralogy:rocksaltlamp" + ] +} diff --git a/src/main/resources/data/c/tags/item/ores/nitrate.json b/src/main/resources/data/c/tags/item/ores/nitrate.json index 418a5ed1d..abbc7ce54 100644 --- a/src/main/resources/data/c/tags/item/ores/nitrate.json +++ b/src/main/resources/data/c/tags/item/ores/nitrate.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:nitrate_ore" - ] + "replace": false, + "values": [ + "mineralogy:nitrate_ore" + ] } diff --git a/src/main/resources/data/c/tags/item/ores/phosphorous.json b/src/main/resources/data/c/tags/item/ores/phosphorous.json index 48e1a2738..dfe1679de 100644 --- a/src/main/resources/data/c/tags/item/ores/phosphorous.json +++ b/src/main/resources/data/c/tags/item/ores/phosphorous.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:phosphorous_ore" - ] + "replace": false, + "values": [ + "mineralogy:phosphorous_ore" + ] } diff --git a/src/main/resources/data/c/tags/item/ores/sulfur.json b/src/main/resources/data/c/tags/item/ores/sulfur.json index e5f58a881..481c6ac06 100644 --- a/src/main/resources/data/c/tags/item/ores/sulfur.json +++ b/src/main/resources/data/c/tags/item/ores/sulfur.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:sulfur_ore" - ] + "replace": false, + "values": [ + "mineralogy:sulfur_ore" + ] } diff --git a/src/main/resources/data/c/tags/item/paper.json b/src/main/resources/data/c/tags/item/paper.json new file mode 100644 index 000000000..521196bf4 --- /dev/null +++ b/src/main/resources/data/c/tags/item/paper.json @@ -0,0 +1,6 @@ +{ + "replace": false, + "values": [ + "minecraft:paper" + ] +} diff --git a/src/main/resources/data/c/tags/item/storage_blocks/chalk.json b/src/main/resources/data/c/tags/item/storage_blocks/chalk.json index cd50bf66a..360199340 100644 --- a/src/main/resources/data/c/tags/item/storage_blocks/chalk.json +++ b/src/main/resources/data/c/tags/item/storage_blocks/chalk.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:chalk" - ] + "replace": false, + "values": [ + "mineralogy:chalk" + ] } diff --git a/src/main/resources/data/c/tags/item/storage_blocks/gypsum.json b/src/main/resources/data/c/tags/item/storage_blocks/gypsum.json index d3a9d4081..b4d777a53 100644 --- a/src/main/resources/data/c/tags/item/storage_blocks/gypsum.json +++ b/src/main/resources/data/c/tags/item/storage_blocks/gypsum.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:gypsum" - ] + "replace": false, + "values": [ + "mineralogy:gypsum" + ] } diff --git a/src/main/resources/data/c/tags/item/storage_blocks/nitrate.json b/src/main/resources/data/c/tags/item/storage_blocks/nitrate.json index 189bec790..57cb9b6e4 100644 --- a/src/main/resources/data/c/tags/item/storage_blocks/nitrate.json +++ b/src/main/resources/data/c/tags/item/storage_blocks/nitrate.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:nitrate_block" - ] + "replace": false, + "values": [ + "mineralogy:nitrate_block" + ] } diff --git a/src/main/resources/data/c/tags/item/storage_blocks/phosphorous.json b/src/main/resources/data/c/tags/item/storage_blocks/phosphorous.json index 9460538c7..4652ee87f 100644 --- a/src/main/resources/data/c/tags/item/storage_blocks/phosphorous.json +++ b/src/main/resources/data/c/tags/item/storage_blocks/phosphorous.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:phosphorous_block" - ] + "replace": false, + "values": [ + "mineralogy:phosphorous_block" + ] } diff --git a/src/main/resources/data/c/tags/item/storage_blocks/rock_salt.json b/src/main/resources/data/c/tags/item/storage_blocks/rock_salt.json index 24df4c009..8133cee26 100644 --- a/src/main/resources/data/c/tags/item/storage_blocks/rock_salt.json +++ b/src/main/resources/data/c/tags/item/storage_blocks/rock_salt.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:rock_salt" - ] + "replace": false, + "values": [ + "mineralogy:rock_salt" + ] } diff --git a/src/main/resources/data/c/tags/item/storage_blocks/sulfur.json b/src/main/resources/data/c/tags/item/storage_blocks/sulfur.json index c573da5d6..da21f41f1 100644 --- a/src/main/resources/data/c/tags/item/storage_blocks/sulfur.json +++ b/src/main/resources/data/c/tags/item/storage_blocks/sulfur.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:sulfur_block" - ] + "replace": false, + "values": [ + "mineralogy:sulfur_block" + ] } diff --git a/src/main/resources/data/forge/tags/block/cobblestone.json b/src/main/resources/data/forge/tags/block/cobblestone.json index d27e00aee..0f1e722bb 100644 --- a/src/main/resources/data/forge/tags/block/cobblestone.json +++ b/src/main/resources/data/forge/tags/block/cobblestone.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "#c:cobblestones" - ] + "replace": false, + "values": [ + "#c:cobblestones" + ] } diff --git a/src/main/resources/data/forge/tags/block/ores/nitrate.json b/src/main/resources/data/forge/tags/block/ores/nitrate.json index 9ffbe8662..eef2e2a8b 100644 --- a/src/main/resources/data/forge/tags/block/ores/nitrate.json +++ b/src/main/resources/data/forge/tags/block/ores/nitrate.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "#c:ores/nitrate" - ] + "replace": false, + "values": [ + "#c:ores/nitrate" + ] } diff --git a/src/main/resources/data/forge/tags/block/ores/phosphorous.json b/src/main/resources/data/forge/tags/block/ores/phosphorous.json index 7b1f65ebd..1bf1b600f 100644 --- a/src/main/resources/data/forge/tags/block/ores/phosphorous.json +++ b/src/main/resources/data/forge/tags/block/ores/phosphorous.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "#c:ores/phosphorous" - ] + "replace": false, + "values": [ + "#c:ores/phosphorous" + ] } diff --git a/src/main/resources/data/forge/tags/block/ores/sulfur.json b/src/main/resources/data/forge/tags/block/ores/sulfur.json index 92eeb3714..5bad0ec9b 100644 --- a/src/main/resources/data/forge/tags/block/ores/sulfur.json +++ b/src/main/resources/data/forge/tags/block/ores/sulfur.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "#c:ores/sulfur" - ] + "replace": false, + "values": [ + "#c:ores/sulfur" + ] } diff --git a/src/main/resources/data/forge/tags/block/storage_blocks/chalk.json b/src/main/resources/data/forge/tags/block/storage_blocks/chalk.json index 5e0742c26..d3bc43eed 100644 --- a/src/main/resources/data/forge/tags/block/storage_blocks/chalk.json +++ b/src/main/resources/data/forge/tags/block/storage_blocks/chalk.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "#c:storage_blocks/chalk" - ] + "replace": false, + "values": [ + "#c:storage_blocks/chalk" + ] } diff --git a/src/main/resources/data/forge/tags/block/storage_blocks/gypsum.json b/src/main/resources/data/forge/tags/block/storage_blocks/gypsum.json index dfa4e0d58..6b0462623 100644 --- a/src/main/resources/data/forge/tags/block/storage_blocks/gypsum.json +++ b/src/main/resources/data/forge/tags/block/storage_blocks/gypsum.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "#c:storage_blocks/gypsum" - ] + "replace": false, + "values": [ + "#c:storage_blocks/gypsum" + ] } diff --git a/src/main/resources/data/forge/tags/block/storage_blocks/nitrate.json b/src/main/resources/data/forge/tags/block/storage_blocks/nitrate.json index 786110679..577dd7cbd 100644 --- a/src/main/resources/data/forge/tags/block/storage_blocks/nitrate.json +++ b/src/main/resources/data/forge/tags/block/storage_blocks/nitrate.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "#c:storage_blocks/nitrate" - ] + "replace": false, + "values": [ + "#c:storage_blocks/nitrate" + ] } diff --git a/src/main/resources/data/forge/tags/block/storage_blocks/phosphorous.json b/src/main/resources/data/forge/tags/block/storage_blocks/phosphorous.json index 76986440b..fa2a942df 100644 --- a/src/main/resources/data/forge/tags/block/storage_blocks/phosphorous.json +++ b/src/main/resources/data/forge/tags/block/storage_blocks/phosphorous.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "#c:storage_blocks/phosphorous" - ] + "replace": false, + "values": [ + "#c:storage_blocks/phosphorous" + ] } diff --git a/src/main/resources/data/forge/tags/block/storage_blocks/rock_salt.json b/src/main/resources/data/forge/tags/block/storage_blocks/rock_salt.json index 27355c21d..b8777a991 100644 --- a/src/main/resources/data/forge/tags/block/storage_blocks/rock_salt.json +++ b/src/main/resources/data/forge/tags/block/storage_blocks/rock_salt.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "#c:storage_blocks/rock_salt" - ] + "replace": false, + "values": [ + "#c:storage_blocks/rock_salt" + ] } diff --git a/src/main/resources/data/forge/tags/block/storage_blocks/sulfur.json b/src/main/resources/data/forge/tags/block/storage_blocks/sulfur.json index c8f602257..4d7814580 100644 --- a/src/main/resources/data/forge/tags/block/storage_blocks/sulfur.json +++ b/src/main/resources/data/forge/tags/block/storage_blocks/sulfur.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "#c:storage_blocks/sulfur" - ] + "replace": false, + "values": [ + "#c:storage_blocks/sulfur" + ] } diff --git a/src/main/resources/data/forge/tags/fluid/crude_oil.json b/src/main/resources/data/forge/tags/fluid/crude_oil.json index dc38eb051..51d77e807 100644 --- a/src/main/resources/data/forge/tags/fluid/crude_oil.json +++ b/src/main/resources/data/forge/tags/fluid/crude_oil.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "#c:crude_oil" - ] + "replace": false, + "values": [ + "#c:crude_oil" + ] } diff --git a/src/main/resources/data/forge/tags/item/buckets/crude_oil.json b/src/main/resources/data/forge/tags/item/buckets/crude_oil.json index 913d2b5b1..fa2a63b3f 100644 --- a/src/main/resources/data/forge/tags/item/buckets/crude_oil.json +++ b/src/main/resources/data/forge/tags/item/buckets/crude_oil.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "#c:buckets/crude_oil" - ] + "replace": false, + "values": [ + "#c:buckets/crude_oil" + ] } diff --git a/src/main/resources/data/forge/tags/item/cobblestone.json b/src/main/resources/data/forge/tags/item/cobblestone.json index d27e00aee..0f1e722bb 100644 --- a/src/main/resources/data/forge/tags/item/cobblestone.json +++ b/src/main/resources/data/forge/tags/item/cobblestone.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "#c:cobblestones" - ] + "replace": false, + "values": [ + "#c:cobblestones" + ] } diff --git a/src/main/resources/data/forge/tags/item/dusts/carbon.json b/src/main/resources/data/forge/tags/item/dusts/carbon.json index 8fdd55fb3..5826da2f1 100644 --- a/src/main/resources/data/forge/tags/item/dusts/carbon.json +++ b/src/main/resources/data/forge/tags/item/dusts/carbon.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "#c:dusts/carbon" - ] + "replace": false, + "values": [ + "#c:dusts/carbon" + ] } diff --git a/src/main/resources/data/forge/tags/item/dusts/chalk.json b/src/main/resources/data/forge/tags/item/dusts/chalk.json index 8136800e4..27dd048db 100644 --- a/src/main/resources/data/forge/tags/item/dusts/chalk.json +++ b/src/main/resources/data/forge/tags/item/dusts/chalk.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "#c:dusts/chalk" - ] + "replace": false, + "values": [ + "#c:dusts/chalk" + ] } diff --git a/src/main/resources/data/forge/tags/item/dusts/coal.json b/src/main/resources/data/forge/tags/item/dusts/coal.json index f07d1be4a..19606dd54 100644 --- a/src/main/resources/data/forge/tags/item/dusts/coal.json +++ b/src/main/resources/data/forge/tags/item/dusts/coal.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "#c:dusts/coal" - ] + "replace": false, + "values": [ + "#c:dusts/coal" + ] } diff --git a/src/main/resources/data/forge/tags/item/dusts/gypsum.json b/src/main/resources/data/forge/tags/item/dusts/gypsum.json index 85f46d90d..c23b9ecad 100644 --- a/src/main/resources/data/forge/tags/item/dusts/gypsum.json +++ b/src/main/resources/data/forge/tags/item/dusts/gypsum.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "#c:dusts/gypsum" - ] + "replace": false, + "values": [ + "#c:dusts/gypsum" + ] } diff --git a/src/main/resources/data/forge/tags/item/dusts/nitrate.json b/src/main/resources/data/forge/tags/item/dusts/nitrate.json index 4c842c7c3..3b1bbb36b 100644 --- a/src/main/resources/data/forge/tags/item/dusts/nitrate.json +++ b/src/main/resources/data/forge/tags/item/dusts/nitrate.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "#c:dusts/nitrate" - ] + "replace": false, + "values": [ + "#c:dusts/nitrate" + ] } diff --git a/src/main/resources/data/forge/tags/item/dusts/phosphorous.json b/src/main/resources/data/forge/tags/item/dusts/phosphorous.json index 7fe933a17..d1409fdb9 100644 --- a/src/main/resources/data/forge/tags/item/dusts/phosphorous.json +++ b/src/main/resources/data/forge/tags/item/dusts/phosphorous.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "#c:dusts/phosphorous" - ] + "replace": false, + "values": [ + "#c:dusts/phosphorous" + ] } diff --git a/src/main/resources/data/forge/tags/item/dusts/rock_salt.json b/src/main/resources/data/forge/tags/item/dusts/rock_salt.json index f1024cd3c..0fa964563 100644 --- a/src/main/resources/data/forge/tags/item/dusts/rock_salt.json +++ b/src/main/resources/data/forge/tags/item/dusts/rock_salt.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "#c:dusts/rock_salt" - ] + "replace": false, + "values": [ + "#c:dusts/rock_salt" + ] } diff --git a/src/main/resources/data/forge/tags/item/dusts/sulfur.json b/src/main/resources/data/forge/tags/item/dusts/sulfur.json index bc7a156ae..d0e287ba6 100644 --- a/src/main/resources/data/forge/tags/item/dusts/sulfur.json +++ b/src/main/resources/data/forge/tags/item/dusts/sulfur.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "#c:dusts/sulfur" - ] + "replace": false, + "values": [ + "#c:dusts/sulfur" + ] } diff --git a/src/main/resources/data/forge/tags/item/lamps/rock_salt.json b/src/main/resources/data/forge/tags/item/lamps/rock_salt.json index 79b746ba6..0ec079adf 100644 --- a/src/main/resources/data/forge/tags/item/lamps/rock_salt.json +++ b/src/main/resources/data/forge/tags/item/lamps/rock_salt.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:rocksaltlamp" - ] + "replace": false, + "values": [ + "#c:lamps/rock_salt" + ] } diff --git a/src/main/resources/data/forge/tags/item/ores/nitrate.json b/src/main/resources/data/forge/tags/item/ores/nitrate.json index 9ffbe8662..eef2e2a8b 100644 --- a/src/main/resources/data/forge/tags/item/ores/nitrate.json +++ b/src/main/resources/data/forge/tags/item/ores/nitrate.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "#c:ores/nitrate" - ] + "replace": false, + "values": [ + "#c:ores/nitrate" + ] } diff --git a/src/main/resources/data/forge/tags/item/ores/phosphorous.json b/src/main/resources/data/forge/tags/item/ores/phosphorous.json index 7b1f65ebd..1bf1b600f 100644 --- a/src/main/resources/data/forge/tags/item/ores/phosphorous.json +++ b/src/main/resources/data/forge/tags/item/ores/phosphorous.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "#c:ores/phosphorous" - ] + "replace": false, + "values": [ + "#c:ores/phosphorous" + ] } diff --git a/src/main/resources/data/forge/tags/item/ores/sulfur.json b/src/main/resources/data/forge/tags/item/ores/sulfur.json index 92eeb3714..5bad0ec9b 100644 --- a/src/main/resources/data/forge/tags/item/ores/sulfur.json +++ b/src/main/resources/data/forge/tags/item/ores/sulfur.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "#c:ores/sulfur" - ] + "replace": false, + "values": [ + "#c:ores/sulfur" + ] } diff --git a/src/main/resources/data/forge/tags/item/paper.json b/src/main/resources/data/forge/tags/item/paper.json index 521196bf4..edad32885 100644 --- a/src/main/resources/data/forge/tags/item/paper.json +++ b/src/main/resources/data/forge/tags/item/paper.json @@ -1,6 +1,6 @@ { "replace": false, "values": [ - "minecraft:paper" + "#c:paper" ] } diff --git a/src/main/resources/data/forge/tags/item/storage_blocks/chalk.json b/src/main/resources/data/forge/tags/item/storage_blocks/chalk.json index 5e0742c26..d3bc43eed 100644 --- a/src/main/resources/data/forge/tags/item/storage_blocks/chalk.json +++ b/src/main/resources/data/forge/tags/item/storage_blocks/chalk.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "#c:storage_blocks/chalk" - ] + "replace": false, + "values": [ + "#c:storage_blocks/chalk" + ] } diff --git a/src/main/resources/data/forge/tags/item/storage_blocks/gypsum.json b/src/main/resources/data/forge/tags/item/storage_blocks/gypsum.json index dfa4e0d58..6b0462623 100644 --- a/src/main/resources/data/forge/tags/item/storage_blocks/gypsum.json +++ b/src/main/resources/data/forge/tags/item/storage_blocks/gypsum.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "#c:storage_blocks/gypsum" - ] + "replace": false, + "values": [ + "#c:storage_blocks/gypsum" + ] } diff --git a/src/main/resources/data/forge/tags/item/storage_blocks/nitrate.json b/src/main/resources/data/forge/tags/item/storage_blocks/nitrate.json index 786110679..577dd7cbd 100644 --- a/src/main/resources/data/forge/tags/item/storage_blocks/nitrate.json +++ b/src/main/resources/data/forge/tags/item/storage_blocks/nitrate.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "#c:storage_blocks/nitrate" - ] + "replace": false, + "values": [ + "#c:storage_blocks/nitrate" + ] } diff --git a/src/main/resources/data/forge/tags/item/storage_blocks/phosphorous.json b/src/main/resources/data/forge/tags/item/storage_blocks/phosphorous.json index 76986440b..fa2a942df 100644 --- a/src/main/resources/data/forge/tags/item/storage_blocks/phosphorous.json +++ b/src/main/resources/data/forge/tags/item/storage_blocks/phosphorous.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "#c:storage_blocks/phosphorous" - ] + "replace": false, + "values": [ + "#c:storage_blocks/phosphorous" + ] } diff --git a/src/main/resources/data/forge/tags/item/storage_blocks/rock_salt.json b/src/main/resources/data/forge/tags/item/storage_blocks/rock_salt.json index 27355c21d..b8777a991 100644 --- a/src/main/resources/data/forge/tags/item/storage_blocks/rock_salt.json +++ b/src/main/resources/data/forge/tags/item/storage_blocks/rock_salt.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "#c:storage_blocks/rock_salt" - ] + "replace": false, + "values": [ + "#c:storage_blocks/rock_salt" + ] } diff --git a/src/main/resources/data/forge/tags/item/storage_blocks/sulfur.json b/src/main/resources/data/forge/tags/item/storage_blocks/sulfur.json index c8f602257..4d7814580 100644 --- a/src/main/resources/data/forge/tags/item/storage_blocks/sulfur.json +++ b/src/main/resources/data/forge/tags/item/storage_blocks/sulfur.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "#c:storage_blocks/sulfur" - ] + "replace": false, + "values": [ + "#c:storage_blocks/sulfur" + ] } diff --git a/src/main/resources/data/minecraft/advancement/recipes/brewing/brewing_stand.json b/src/main/resources/data/minecraft/advancement/recipes/brewing/brewing_stand.json index 54e6af3d4..92b3a35f9 100644 --- a/src/main/resources/data/minecraft/advancement/recipes/brewing/brewing_stand.json +++ b/src/main/resources/data/minecraft/advancement/recipes/brewing/brewing_stand.json @@ -1,33 +1,33 @@ { - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "minecraft:brewing_stand" - ] - }, - "criteria": { - "has_blaze_rod": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "minecraft:blaze_rod" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "minecraft:brewing_stand" - } - } - }, - "requirements": [ - [ - "has_blaze_rod", - "has_the_recipe" - ] - ], - "sends_telemetry_event": false + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "minecraft:brewing_stand" + ] + }, + "criteria": { + "has_blaze_rod": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:blaze_rod" + } + ] + } + }, + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "minecraft:brewing_stand" + } + } + }, + "requirements": [ + [ + "has_blaze_rod", + "has_the_recipe" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/andesite.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/andesite.json index 741cc524a..f332a418d 100644 --- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/andesite.json +++ b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/andesite.json @@ -1,33 +1,33 @@ { - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "minecraft:andesite" - ] - }, - "criteria": { - "has_stone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "minecraft:diorite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "minecraft:andesite" - } - } - }, - "requirements": [ - [ - "has_stone", - "has_the_recipe" - ] - ], - "sends_telemetry_event": false + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "minecraft:andesite" + ] + }, + "criteria": { + "has_stone": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:diorite" + } + ] + } + }, + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "minecraft:andesite" + } + } + }, + "requirements": [ + [ + "has_stone", + "has_the_recipe" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/diorite.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/diorite.json index 0fa1b8598..f7bc464fd 100644 --- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/diorite.json +++ b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/diorite.json @@ -1,33 +1,33 @@ { - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "minecraft:diorite" - ] - }, - "criteria": { - "has_quartz": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "minecraft:quartz" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "minecraft:diorite" - } - } - }, - "requirements": [ - [ - "has_quartz", - "has_the_recipe" - ] - ], - "sends_telemetry_event": false + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "minecraft:diorite" + ] + }, + "criteria": { + "has_quartz": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:quartz" + } + ] + } + }, + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "minecraft:diorite" + } + } + }, + "requirements": [ + [ + "has_quartz", + "has_the_recipe" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/mossy_cobblestone_from_moss_block.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/mossy_cobblestone_from_moss_block.json index 206f0727d..246e232f1 100644 --- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/mossy_cobblestone_from_moss_block.json +++ b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/mossy_cobblestone_from_moss_block.json @@ -1,33 +1,33 @@ { - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "minecraft:mossy_cobblestone_from_moss_block" - ] - }, - "criteria": { - "has_moss_block": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "minecraft:moss_block" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "minecraft:mossy_cobblestone_from_moss_block" - } - } - }, - "requirements": [ - [ - "has_moss_block", - "has_the_recipe" - ] - ], - "sends_telemetry_event": false + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "minecraft:mossy_cobblestone_from_moss_block" + ] + }, + "criteria": { + "has_moss_block": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:moss_block" + } + ] + } + }, + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "minecraft:mossy_cobblestone_from_moss_block" + } + } + }, + "requirements": [ + [ + "has_moss_block", + "has_the_recipe" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/mossy_cobblestone_from_vine.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/mossy_cobblestone_from_vine.json index 4960b4d7f..a2dd29e51 100644 --- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/mossy_cobblestone_from_vine.json +++ b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/mossy_cobblestone_from_vine.json @@ -1,33 +1,33 @@ { - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "minecraft:mossy_cobblestone_from_vine" - ] - }, - "criteria": { - "has_vine": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "minecraft:vine" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "minecraft:mossy_cobblestone_from_vine" - } - } - }, - "requirements": [ - [ - "has_vine", - "has_the_recipe" - ] - ], - "sends_telemetry_event": false + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "minecraft:mossy_cobblestone_from_vine" + ] + }, + "criteria": { + "has_vine": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:vine" + } + ] + } + }, + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "minecraft:mossy_cobblestone_from_vine" + } + } + }, + "requirements": [ + [ + "has_vine", + "has_the_recipe" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_andesite.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_andesite.json index 545f0dbd8..283446818 100644 --- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_andesite.json +++ b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_andesite.json @@ -1,47 +1,47 @@ { - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "minecraft:polished_andesite" - ] - }, - "criteria": { - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "minecraft:andesite" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "minecraft:sand" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "minecraft:polished_andesite" - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand" - ] - ], - "sends_telemetry_event": false + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "minecraft:polished_andesite" + ] + }, + "criteria": { + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:andesite" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "minecraft:polished_andesite" + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_basalt.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_basalt.json index 79ee3f1c9..23fbad195 100644 --- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_basalt.json +++ b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_basalt.json @@ -1,47 +1,47 @@ { - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "minecraft:polished_basalt" - ] - }, - "criteria": { - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "minecraft:basalt" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "minecraft:sand" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "minecraft:polished_basalt" - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand" - ] - ], - "sends_telemetry_event": false + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "minecraft:polished_basalt" + ] + }, + "criteria": { + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:basalt" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "minecraft:polished_basalt" + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_diorite.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_diorite.json index 1da463c15..3b309308d 100644 --- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_diorite.json +++ b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_diorite.json @@ -1,47 +1,47 @@ { - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "minecraft:polished_diorite" - ] - }, - "criteria": { - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "minecraft:diorite" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "minecraft:sand" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "minecraft:polished_diorite" - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand" - ] - ], - "sends_telemetry_event": false + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "minecraft:polished_diorite" + ] + }, + "criteria": { + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:diorite" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "minecraft:polished_diorite" + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_granite.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_granite.json index d76a05e94..185b5c1e0 100644 --- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_granite.json +++ b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_granite.json @@ -1,47 +1,47 @@ { - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "minecraft:polished_granite" - ] - }, - "criteria": { - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "minecraft:granite" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "minecraft:sand" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "minecraft:polished_granite" - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand" - ] - ], - "sends_telemetry_event": false + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "minecraft:polished_granite" + ] + }, + "criteria": { + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:granite" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "minecraft:polished_granite" + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_tuff.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_tuff.json index 9c6497e1d..eae8b1d33 100644 --- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_tuff.json +++ b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_tuff.json @@ -1,47 +1,47 @@ { - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "minecraft:polished_tuff" - ] - }, - "criteria": { - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "minecraft:tuff" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "minecraft:sand" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "minecraft:polished_tuff" - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand" - ] - ], - "sends_telemetry_event": false + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "minecraft:polished_tuff" + ] + }, + "criteria": { + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:tuff" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "minecraft:polished_tuff" + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/minecraft/advancement/recipes/combat/stone_sword.json b/src/main/resources/data/minecraft/advancement/recipes/combat/stone_sword.json index b1e9d44cd..6314fbe0a 100644 --- a/src/main/resources/data/minecraft/advancement/recipes/combat/stone_sword.json +++ b/src/main/resources/data/minecraft/advancement/recipes/combat/stone_sword.json @@ -1,33 +1,33 @@ { - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "minecraft:stone_sword" - ] - }, - "criteria": { - "has_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stone_tool_materials" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "minecraft:stone_sword" - } - } - }, - "requirements": [ - [ - "has_cobblestone", - "has_the_recipe" - ] - ], - "sends_telemetry_event": false + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "minecraft:stone_sword" + ] + }, + "criteria": { + "has_cobblestone": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stone_tool_materials" + } + ] + } + }, + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "minecraft:stone_sword" + } + } + }, + "requirements": [ + [ + "has_cobblestone", + "has_the_recipe" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/furnace.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/furnace.json index 0d7dcaa45..57e91a699 100644 --- a/src/main/resources/data/minecraft/advancement/recipes/decorations/furnace.json +++ b/src/main/resources/data/minecraft/advancement/recipes/decorations/furnace.json @@ -1,33 +1,33 @@ { - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "minecraft:furnace" - ] - }, - "criteria": { - "has_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stone_crafting_materials" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "minecraft:furnace" - } - } - }, - "requirements": [ - [ - "has_cobblestone", - "has_the_recipe" - ] - ], - "sends_telemetry_event": false + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "minecraft:furnace" + ] + }, + "criteria": { + "has_cobblestone": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stone_crafting_materials" + } + ] + } + }, + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "minecraft:furnace" + } + } + }, + "requirements": [ + [ + "has_cobblestone", + "has_the_recipe" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/minecraft/advancement/recipes/redstone/dispenser.json b/src/main/resources/data/minecraft/advancement/recipes/redstone/dispenser.json index 253a2588b..fc5247db2 100644 --- a/src/main/resources/data/minecraft/advancement/recipes/redstone/dispenser.json +++ b/src/main/resources/data/minecraft/advancement/recipes/redstone/dispenser.json @@ -1,33 +1,33 @@ { - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "minecraft:dispenser" - ] - }, - "criteria": { - "has_bow": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "minecraft:bow" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "minecraft:dispenser" - } - } - }, - "requirements": [ - [ - "has_bow", - "has_the_recipe" - ] - ], - "sends_telemetry_event": false + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "minecraft:dispenser" + ] + }, + "criteria": { + "has_bow": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:bow" + } + ] + } + }, + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "minecraft:dispenser" + } + } + }, + "requirements": [ + [ + "has_bow", + "has_the_recipe" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/minecraft/advancement/recipes/redstone/dropper.json b/src/main/resources/data/minecraft/advancement/recipes/redstone/dropper.json index 27c4c48b5..f8b7fb3b2 100644 --- a/src/main/resources/data/minecraft/advancement/recipes/redstone/dropper.json +++ b/src/main/resources/data/minecraft/advancement/recipes/redstone/dropper.json @@ -1,33 +1,33 @@ { - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "minecraft:dropper" - ] - }, - "criteria": { - "has_redstone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "minecraft:redstone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "minecraft:dropper" - } - } - }, - "requirements": [ - [ - "has_redstone", - "has_the_recipe" - ] - ], - "sends_telemetry_event": false + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "minecraft:dropper" + ] + }, + "criteria": { + "has_redstone": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:redstone" + } + ] + } + }, + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "minecraft:dropper" + } + } + }, + "requirements": [ + [ + "has_redstone", + "has_the_recipe" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/minecraft/advancement/recipes/redstone/lever.json b/src/main/resources/data/minecraft/advancement/recipes/redstone/lever.json index be85d9605..d81d23f04 100644 --- a/src/main/resources/data/minecraft/advancement/recipes/redstone/lever.json +++ b/src/main/resources/data/minecraft/advancement/recipes/redstone/lever.json @@ -1,33 +1,33 @@ { - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "minecraft:lever" - ] - }, - "criteria": { - "has_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:cobblestone_equivalents" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "minecraft:lever" - } - } - }, - "requirements": [ - [ - "has_cobblestone", - "has_the_recipe" - ] - ], - "sends_telemetry_event": false + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "minecraft:lever" + ] + }, + "criteria": { + "has_cobblestone": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:cobblestone_equivalents" + } + ] + } + }, + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "minecraft:lever" + } + } + }, + "requirements": [ + [ + "has_cobblestone", + "has_the_recipe" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/minecraft/advancement/recipes/redstone/observer.json b/src/main/resources/data/minecraft/advancement/recipes/redstone/observer.json index ed7782757..f1bfe8940 100644 --- a/src/main/resources/data/minecraft/advancement/recipes/redstone/observer.json +++ b/src/main/resources/data/minecraft/advancement/recipes/redstone/observer.json @@ -1,33 +1,33 @@ { - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "minecraft:observer" - ] - }, - "criteria": { - "has_quartz": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "minecraft:quartz" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "minecraft:observer" - } - } - }, - "requirements": [ - [ - "has_quartz", - "has_the_recipe" - ] - ], - "sends_telemetry_event": false + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "minecraft:observer" + ] + }, + "criteria": { + "has_quartz": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:quartz" + } + ] + } + }, + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "minecraft:observer" + } + } + }, + "requirements": [ + [ + "has_quartz", + "has_the_recipe" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/minecraft/advancement/recipes/redstone/piston.json b/src/main/resources/data/minecraft/advancement/recipes/redstone/piston.json index 0cba16c1c..8d2aa9a60 100644 --- a/src/main/resources/data/minecraft/advancement/recipes/redstone/piston.json +++ b/src/main/resources/data/minecraft/advancement/recipes/redstone/piston.json @@ -1,33 +1,33 @@ { - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "minecraft:piston" - ] - }, - "criteria": { - "has_redstone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "minecraft:redstone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "minecraft:piston" - } - } - }, - "requirements": [ - [ - "has_redstone", - "has_the_recipe" - ] - ], - "sends_telemetry_event": false + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "minecraft:piston" + ] + }, + "criteria": { + "has_redstone": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:redstone" + } + ] + } + }, + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "minecraft:piston" + } + } + }, + "requirements": [ + [ + "has_redstone", + "has_the_recipe" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/minecraft/advancement/recipes/tools/stone_axe.json b/src/main/resources/data/minecraft/advancement/recipes/tools/stone_axe.json index 12a6aab0a..35a897baf 100644 --- a/src/main/resources/data/minecraft/advancement/recipes/tools/stone_axe.json +++ b/src/main/resources/data/minecraft/advancement/recipes/tools/stone_axe.json @@ -1,33 +1,33 @@ { - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "minecraft:stone_axe" - ] - }, - "criteria": { - "has_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stone_tool_materials" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "minecraft:stone_axe" - } - } - }, - "requirements": [ - [ - "has_cobblestone", - "has_the_recipe" - ] - ], - "sends_telemetry_event": false + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "minecraft:stone_axe" + ] + }, + "criteria": { + "has_cobblestone": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stone_tool_materials" + } + ] + } + }, + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "minecraft:stone_axe" + } + } + }, + "requirements": [ + [ + "has_cobblestone", + "has_the_recipe" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/minecraft/advancement/recipes/tools/stone_hoe.json b/src/main/resources/data/minecraft/advancement/recipes/tools/stone_hoe.json index 9d1cc4817..a57ad995b 100644 --- a/src/main/resources/data/minecraft/advancement/recipes/tools/stone_hoe.json +++ b/src/main/resources/data/minecraft/advancement/recipes/tools/stone_hoe.json @@ -1,33 +1,33 @@ { - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "minecraft:stone_hoe" - ] - }, - "criteria": { - "has_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stone_tool_materials" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "minecraft:stone_hoe" - } - } - }, - "requirements": [ - [ - "has_cobblestone", - "has_the_recipe" - ] - ], - "sends_telemetry_event": false + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "minecraft:stone_hoe" + ] + }, + "criteria": { + "has_cobblestone": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stone_tool_materials" + } + ] + } + }, + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "minecraft:stone_hoe" + } + } + }, + "requirements": [ + [ + "has_cobblestone", + "has_the_recipe" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/minecraft/advancement/recipes/tools/stone_pickaxe.json b/src/main/resources/data/minecraft/advancement/recipes/tools/stone_pickaxe.json index b9b9d01cb..2072eabcf 100644 --- a/src/main/resources/data/minecraft/advancement/recipes/tools/stone_pickaxe.json +++ b/src/main/resources/data/minecraft/advancement/recipes/tools/stone_pickaxe.json @@ -1,33 +1,33 @@ { - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "minecraft:stone_pickaxe" - ] - }, - "criteria": { - "has_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stone_tool_materials" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "minecraft:stone_pickaxe" - } - } - }, - "requirements": [ - [ - "has_cobblestone", - "has_the_recipe" - ] - ], - "sends_telemetry_event": false + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "minecraft:stone_pickaxe" + ] + }, + "criteria": { + "has_cobblestone": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stone_tool_materials" + } + ] + } + }, + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "minecraft:stone_pickaxe" + } + } + }, + "requirements": [ + [ + "has_cobblestone", + "has_the_recipe" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/minecraft/advancement/recipes/tools/stone_shovel.json b/src/main/resources/data/minecraft/advancement/recipes/tools/stone_shovel.json index 8b5a22cc7..e953db0f3 100644 --- a/src/main/resources/data/minecraft/advancement/recipes/tools/stone_shovel.json +++ b/src/main/resources/data/minecraft/advancement/recipes/tools/stone_shovel.json @@ -1,33 +1,33 @@ { - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "minecraft:stone_shovel" - ] - }, - "criteria": { - "has_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stone_tool_materials" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "minecraft:stone_shovel" - } - } - }, - "requirements": [ - [ - "has_cobblestone", - "has_the_recipe" - ] - ], - "sends_telemetry_event": false + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "minecraft:stone_shovel" + ] + }, + "criteria": { + "has_cobblestone": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stone_tool_materials" + } + ] + } + }, + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "minecraft:stone_shovel" + } + } + }, + "requirements": [ + [ + "has_cobblestone", + "has_the_recipe" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/minecraft/recipe/andesite.json b/src/main/resources/data/minecraft/recipe/andesite.json index 57a1cce1a..8643481c9 100644 --- a/src/main/resources/data/minecraft/recipe/andesite.json +++ b/src/main/resources/data/minecraft/recipe/andesite.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "minecraft:diorite" - }, - { - "tag": "mineralogy:cobblestone_equivalents" - } - ], - "result": { - "id": "minecraft:andesite", - "count": 2 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "minecraft:diorite", + "#mineralogy:cobblestone_equivalents" + ], + "result": { + "id": "minecraft:andesite", + "count": 2 + } } diff --git a/src/main/resources/data/minecraft/recipe/andesite_slab.json b/src/main/resources/data/minecraft/recipe/andesite_slab.json index abfebdaeb..dbcae9960 100644 --- a/src/main/resources/data/minecraft/recipe/andesite_slab.json +++ b/src/main/resources/data/minecraft/recipe/andesite_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:andesite" - } - }, - "result": { - "id": "mineralogy:andesite_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "###" + ], + "key": { + "#": "minecraft:andesite" + }, + "result": { + "id": "mineralogy:andesite_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/minecraft/recipe/andesite_slab_from_andesite_stonecutting.json b/src/main/resources/data/minecraft/recipe/andesite_slab_from_andesite_stonecutting.json index f5ab7af70..dc6407dc3 100644 --- a/src/main/resources/data/minecraft/recipe/andesite_slab_from_andesite_stonecutting.json +++ b/src/main/resources/data/minecraft/recipe/andesite_slab_from_andesite_stonecutting.json @@ -1,10 +1,8 @@ { - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:andesite" - }, - "result": { - "id": "mineralogy:andesite_slab", - "count": 2 - } + "type": "minecraft:stonecutting", + "ingredient": "minecraft:andesite", + "result": { + "id": "mineralogy:andesite_slab", + "count": 2 + } } diff --git a/src/main/resources/data/minecraft/recipe/brewing_stand.json b/src/main/resources/data/minecraft/recipe/brewing_stand.json index aa7fd357a..814854fd8 100644 --- a/src/main/resources/data/minecraft/recipe/brewing_stand.json +++ b/src/main/resources/data/minecraft/recipe/brewing_stand.json @@ -1,20 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - " B ", - "###" - ], - "key": { - "B": { - "item": "minecraft:blaze_rod" - }, - "#": { - "tag": "mineralogy:stone_crafting_materials" - } - }, - "result": { - "id": "minecraft:brewing_stand" - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + " B ", + "###" + ], + "key": { + "B": "minecraft:blaze_rod", + "#": "#mineralogy:stone_crafting_materials" + }, + "result": { + "id": "minecraft:brewing_stand" + }, + "show_notification": true } diff --git a/src/main/resources/data/minecraft/recipe/coast_armor_trim_smithing_template.json b/src/main/resources/data/minecraft/recipe/coast_armor_trim_smithing_template.json index 6b9388a97..2b8e1a104 100644 --- a/src/main/resources/data/minecraft/recipe/coast_armor_trim_smithing_template.json +++ b/src/main/resources/data/minecraft/recipe/coast_armor_trim_smithing_template.json @@ -1,25 +1,19 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "#S#", - "#C#", - "###" - ], - "key": { - "#": { - "item": "minecraft:diamond" - }, - "C": { - "tag": "mineralogy:cobblestone_equivalents" - }, - "S": { - "item": "minecraft:coast_armor_trim_smithing_template" - } - }, - "result": { - "id": "minecraft:coast_armor_trim_smithing_template", - "count": 2 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "#S#", + "#C#", + "###" + ], + "key": { + "#": "minecraft:diamond", + "C": "#mineralogy:cobblestone_equivalents", + "S": "minecraft:coast_armor_trim_smithing_template" + }, + "result": { + "id": "minecraft:coast_armor_trim_smithing_template", + "count": 2 + }, + "show_notification": true } diff --git a/src/main/resources/data/minecraft/recipe/diorite.json b/src/main/resources/data/minecraft/recipe/diorite.json index 873db4f5c..7e010c315 100644 --- a/src/main/resources/data/minecraft/recipe/diorite.json +++ b/src/main/resources/data/minecraft/recipe/diorite.json @@ -1,21 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "CQ", - "QC" - ], - "key": { - "Q": { - "item": "minecraft:quartz" - }, - "C": { - "tag": "mineralogy:cobblestone_equivalents" - } - }, - "result": { - "id": "minecraft:diorite", - "count": 2 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "CQ", + "QC" + ], + "key": { + "Q": "minecraft:quartz", + "C": "#mineralogy:cobblestone_equivalents" + }, + "result": { + "id": "minecraft:diorite", + "count": 2 + }, + "show_notification": true } diff --git a/src/main/resources/data/minecraft/recipe/diorite_slab.json b/src/main/resources/data/minecraft/recipe/diorite_slab.json index f889a79c1..2499c0134 100644 --- a/src/main/resources/data/minecraft/recipe/diorite_slab.json +++ b/src/main/resources/data/minecraft/recipe/diorite_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:diorite" - } - }, - "result": { - "id": "mineralogy:diorite_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "###" + ], + "key": { + "#": "minecraft:diorite" + }, + "result": { + "id": "mineralogy:diorite_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/minecraft/recipe/diorite_slab_from_diorite_stonecutting.json b/src/main/resources/data/minecraft/recipe/diorite_slab_from_diorite_stonecutting.json index f622778dd..28f81c822 100644 --- a/src/main/resources/data/minecraft/recipe/diorite_slab_from_diorite_stonecutting.json +++ b/src/main/resources/data/minecraft/recipe/diorite_slab_from_diorite_stonecutting.json @@ -1,10 +1,8 @@ { - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:diorite" - }, - "result": { - "id": "mineralogy:diorite_slab", - "count": 2 - } + "type": "minecraft:stonecutting", + "ingredient": "minecraft:diorite", + "result": { + "id": "mineralogy:diorite_slab", + "count": 2 + } } diff --git a/src/main/resources/data/minecraft/recipe/dispenser.json b/src/main/resources/data/minecraft/recipe/dispenser.json index 29bb5a1cd..7e82d5162 100644 --- a/src/main/resources/data/minecraft/recipe/dispenser.json +++ b/src/main/resources/data/minecraft/recipe/dispenser.json @@ -1,24 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "category": "redstone", - "pattern": [ - "###", - "#X#", - "#R#" - ], - "key": { - "R": { - "item": "minecraft:redstone" - }, - "#": { - "tag": "mineralogy:cobblestone_equivalents" - }, - "X": { - "item": "minecraft:bow" - } - }, - "result": { - "id": "minecraft:dispenser" - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "redstone", + "pattern": [ + "###", + "#X#", + "#R#" + ], + "key": { + "R": "minecraft:redstone", + "#": "#mineralogy:cobblestone_equivalents", + "X": "minecraft:bow" + }, + "result": { + "id": "minecraft:dispenser" + }, + "show_notification": true } diff --git a/src/main/resources/data/minecraft/recipe/dropper.json b/src/main/resources/data/minecraft/recipe/dropper.json index ac45259d8..724bbb0f3 100644 --- a/src/main/resources/data/minecraft/recipe/dropper.json +++ b/src/main/resources/data/minecraft/recipe/dropper.json @@ -1,21 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "redstone", - "pattern": [ - "###", - "# #", - "#R#" - ], - "key": { - "R": { - "item": "minecraft:redstone" - }, - "#": { - "tag": "mineralogy:cobblestone_equivalents" - } - }, - "result": { - "id": "minecraft:dropper" - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "redstone", + "pattern": [ + "###", + "# #", + "#R#" + ], + "key": { + "R": "minecraft:redstone", + "#": "#mineralogy:cobblestone_equivalents" + }, + "result": { + "id": "minecraft:dropper" + }, + "show_notification": true } diff --git a/src/main/resources/data/minecraft/recipe/furnace.json b/src/main/resources/data/minecraft/recipe/furnace.json index f89c76b56..ad43e6fea 100644 --- a/src/main/resources/data/minecraft/recipe/furnace.json +++ b/src/main/resources/data/minecraft/recipe/furnace.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "###", - "# #", - "###" - ], - "key": { - "#": { - "tag": "mineralogy:stone_crafting_materials" - } - }, - "result": { - "id": "minecraft:furnace" - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "###", + "# #", + "###" + ], + "key": { + "#": "#mineralogy:stone_crafting_materials" + }, + "result": { + "id": "minecraft:furnace" + }, + "show_notification": true } diff --git a/src/main/resources/data/minecraft/recipe/granite_slab.json b/src/main/resources/data/minecraft/recipe/granite_slab.json index 077a16736..64d6700aa 100644 --- a/src/main/resources/data/minecraft/recipe/granite_slab.json +++ b/src/main/resources/data/minecraft/recipe/granite_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:granite" - } - }, - "result": { - "id": "mineralogy:granite_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "###" + ], + "key": { + "#": "minecraft:granite" + }, + "result": { + "id": "mineralogy:granite_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/minecraft/recipe/granite_slab_from_granite_stonecutting.json b/src/main/resources/data/minecraft/recipe/granite_slab_from_granite_stonecutting.json index 01ae27e09..12bc9f633 100644 --- a/src/main/resources/data/minecraft/recipe/granite_slab_from_granite_stonecutting.json +++ b/src/main/resources/data/minecraft/recipe/granite_slab_from_granite_stonecutting.json @@ -1,10 +1,8 @@ { - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:granite" - }, - "result": { - "id": "mineralogy:granite_slab", - "count": 2 - } + "type": "minecraft:stonecutting", + "ingredient": "minecraft:granite", + "result": { + "id": "mineralogy:granite_slab", + "count": 2 + } } diff --git a/src/main/resources/data/minecraft/recipe/lever.json b/src/main/resources/data/minecraft/recipe/lever.json index bfd0c28b4..3fefe7c8d 100644 --- a/src/main/resources/data/minecraft/recipe/lever.json +++ b/src/main/resources/data/minecraft/recipe/lever.json @@ -1,20 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "redstone", - "pattern": [ - "X", - "#" - ], - "key": { - "#": { - "tag": "mineralogy:cobblestone_equivalents" - }, - "X": { - "item": "minecraft:stick" - } - }, - "result": { - "id": "minecraft:lever" - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "redstone", + "pattern": [ + "X", + "#" + ], + "key": { + "#": "#mineralogy:cobblestone_equivalents", + "X": "minecraft:stick" + }, + "result": { + "id": "minecraft:lever" + }, + "show_notification": true } diff --git a/src/main/resources/data/minecraft/recipe/mossy_cobblestone_from_moss_block.json b/src/main/resources/data/minecraft/recipe/mossy_cobblestone_from_moss_block.json index 37cbd74d7..770aa4b77 100644 --- a/src/main/resources/data/minecraft/recipe/mossy_cobblestone_from_moss_block.json +++ b/src/main/resources/data/minecraft/recipe/mossy_cobblestone_from_moss_block.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "group": "mossy_cobblestone", - "category": "building", - "ingredients": [ - { - "tag": "mineralogy:cobblestone_equivalents" - }, - { - "item": "minecraft:moss_block" - } - ], - "result": { - "id": "minecraft:mossy_cobblestone" - } + "type": "minecraft:crafting_shapeless", + "group": "mossy_cobblestone", + "category": "building", + "ingredients": [ + "#mineralogy:cobblestone_equivalents", + "minecraft:moss_block" + ], + "result": { + "id": "minecraft:mossy_cobblestone" + } } diff --git a/src/main/resources/data/minecraft/recipe/mossy_cobblestone_from_vine.json b/src/main/resources/data/minecraft/recipe/mossy_cobblestone_from_vine.json index 0803a5cbb..0638434d1 100644 --- a/src/main/resources/data/minecraft/recipe/mossy_cobblestone_from_vine.json +++ b/src/main/resources/data/minecraft/recipe/mossy_cobblestone_from_vine.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "group": "mossy_cobblestone", - "category": "building", - "ingredients": [ - { - "tag": "mineralogy:cobblestone_equivalents" - }, - { - "item": "minecraft:vine" - } - ], - "result": { - "id": "minecraft:mossy_cobblestone" - } + "type": "minecraft:crafting_shapeless", + "group": "mossy_cobblestone", + "category": "building", + "ingredients": [ + "#mineralogy:cobblestone_equivalents", + "minecraft:vine" + ], + "result": { + "id": "minecraft:mossy_cobblestone" + } } diff --git a/src/main/resources/data/minecraft/recipe/observer.json b/src/main/resources/data/minecraft/recipe/observer.json index 9a82a68b4..4d27b969e 100644 --- a/src/main/resources/data/minecraft/recipe/observer.json +++ b/src/main/resources/data/minecraft/recipe/observer.json @@ -1,24 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "category": "redstone", - "pattern": [ - "###", - "RRQ", - "###" - ], - "key": { - "Q": { - "item": "minecraft:quartz" - }, - "R": { - "item": "minecraft:redstone" - }, - "#": { - "tag": "mineralogy:cobblestone_equivalents" - } - }, - "result": { - "id": "minecraft:observer" - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "redstone", + "pattern": [ + "###", + "RRQ", + "###" + ], + "key": { + "Q": "minecraft:quartz", + "R": "minecraft:redstone", + "#": "#mineralogy:cobblestone_equivalents" + }, + "result": { + "id": "minecraft:observer" + }, + "show_notification": true } diff --git a/src/main/resources/data/minecraft/recipe/piston.json b/src/main/resources/data/minecraft/recipe/piston.json index a196542a6..bc5905296 100644 --- a/src/main/resources/data/minecraft/recipe/piston.json +++ b/src/main/resources/data/minecraft/recipe/piston.json @@ -1,27 +1,19 @@ { - "type": "minecraft:crafting_shaped", - "category": "redstone", - "pattern": [ - "TTT", - "#X#", - "#R#" - ], - "key": { - "R": { - "item": "minecraft:redstone" - }, - "#": { - "tag": "mineralogy:cobblestone_equivalents" - }, - "T": { - "tag": "minecraft:planks" - }, - "X": { - "item": "minecraft:iron_ingot" - } - }, - "result": { - "id": "minecraft:piston" - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "redstone", + "pattern": [ + "TTT", + "#X#", + "#R#" + ], + "key": { + "R": "minecraft:redstone", + "#": "#mineralogy:cobblestone_equivalents", + "T": "#minecraft:planks", + "X": "minecraft:iron_ingot" + }, + "result": { + "id": "minecraft:piston" + }, + "show_notification": true } diff --git a/src/main/resources/data/minecraft/recipe/polished_andesite.json b/src/main/resources/data/minecraft/recipe/polished_andesite.json index 36f57b698..fca937f23 100644 --- a/src/main/resources/data/minecraft/recipe/polished_andesite.json +++ b/src/main/resources/data/minecraft/recipe/polished_andesite.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "minecraft:andesite" - }, - { - "item": "minecraft:sand" - } - ], - "result": { - "id": "minecraft:polished_andesite", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "minecraft:andesite", + "minecraft:sand" + ], + "result": { + "id": "minecraft:polished_andesite", + "count": 1 + } } diff --git a/src/main/resources/data/minecraft/recipe/polished_andesite_slab.json b/src/main/resources/data/minecraft/recipe/polished_andesite_slab.json index 006008b5e..8142d5758 100644 --- a/src/main/resources/data/minecraft/recipe/polished_andesite_slab.json +++ b/src/main/resources/data/minecraft/recipe/polished_andesite_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:polished_andesite" - } - }, - "result": { - "id": "mineralogy:andesite_smooth_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "###" + ], + "key": { + "#": "minecraft:polished_andesite" + }, + "result": { + "id": "mineralogy:andesite_smooth_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/minecraft/recipe/polished_andesite_slab_from_andesite_stonecutting.json b/src/main/resources/data/minecraft/recipe/polished_andesite_slab_from_andesite_stonecutting.json index ad81d80e3..504a1e64c 100644 --- a/src/main/resources/data/minecraft/recipe/polished_andesite_slab_from_andesite_stonecutting.json +++ b/src/main/resources/data/minecraft/recipe/polished_andesite_slab_from_andesite_stonecutting.json @@ -1,10 +1,8 @@ { - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:andesite" - }, - "result": { - "id": "mineralogy:andesite_smooth_slab", - "count": 2 - } + "type": "minecraft:stonecutting", + "ingredient": "minecraft:andesite", + "result": { + "id": "mineralogy:andesite_smooth_slab", + "count": 2 + } } diff --git a/src/main/resources/data/minecraft/recipe/polished_andesite_slab_from_polished_andesite_stonecutting.json b/src/main/resources/data/minecraft/recipe/polished_andesite_slab_from_polished_andesite_stonecutting.json index 4a0703d6e..86e86b850 100644 --- a/src/main/resources/data/minecraft/recipe/polished_andesite_slab_from_polished_andesite_stonecutting.json +++ b/src/main/resources/data/minecraft/recipe/polished_andesite_slab_from_polished_andesite_stonecutting.json @@ -1,10 +1,8 @@ { - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:polished_andesite" - }, - "result": { - "id": "mineralogy:andesite_smooth_slab", - "count": 2 - } + "type": "minecraft:stonecutting", + "ingredient": "minecraft:polished_andesite", + "result": { + "id": "mineralogy:andesite_smooth_slab", + "count": 2 + } } diff --git a/src/main/resources/data/minecraft/recipe/polished_basalt.json b/src/main/resources/data/minecraft/recipe/polished_basalt.json index daa846ea2..cdda9a21c 100644 --- a/src/main/resources/data/minecraft/recipe/polished_basalt.json +++ b/src/main/resources/data/minecraft/recipe/polished_basalt.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "minecraft:basalt" - }, - { - "item": "minecraft:sand" - } - ], - "result": { - "id": "minecraft:polished_basalt", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "minecraft:basalt", + "minecraft:sand" + ], + "result": { + "id": "minecraft:polished_basalt", + "count": 1 + } } diff --git a/src/main/resources/data/minecraft/recipe/polished_diorite.json b/src/main/resources/data/minecraft/recipe/polished_diorite.json index e59610385..832bcc978 100644 --- a/src/main/resources/data/minecraft/recipe/polished_diorite.json +++ b/src/main/resources/data/minecraft/recipe/polished_diorite.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "minecraft:diorite" - }, - { - "item": "minecraft:sand" - } - ], - "result": { - "id": "minecraft:polished_diorite", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "minecraft:diorite", + "minecraft:sand" + ], + "result": { + "id": "minecraft:polished_diorite", + "count": 1 + } } diff --git a/src/main/resources/data/minecraft/recipe/polished_diorite_slab.json b/src/main/resources/data/minecraft/recipe/polished_diorite_slab.json index 2ffb8b7e8..ccd24b1c6 100644 --- a/src/main/resources/data/minecraft/recipe/polished_diorite_slab.json +++ b/src/main/resources/data/minecraft/recipe/polished_diorite_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:polished_diorite" - } - }, - "result": { - "id": "mineralogy:diorite_smooth_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "###" + ], + "key": { + "#": "minecraft:polished_diorite" + }, + "result": { + "id": "mineralogy:diorite_smooth_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/minecraft/recipe/polished_diorite_slab_from_diorite_stonecutting.json b/src/main/resources/data/minecraft/recipe/polished_diorite_slab_from_diorite_stonecutting.json index 7b15a4c90..7709fa7b1 100644 --- a/src/main/resources/data/minecraft/recipe/polished_diorite_slab_from_diorite_stonecutting.json +++ b/src/main/resources/data/minecraft/recipe/polished_diorite_slab_from_diorite_stonecutting.json @@ -1,10 +1,8 @@ { - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:diorite" - }, - "result": { - "id": "mineralogy:diorite_smooth_slab", - "count": 2 - } + "type": "minecraft:stonecutting", + "ingredient": "minecraft:diorite", + "result": { + "id": "mineralogy:diorite_smooth_slab", + "count": 2 + } } diff --git a/src/main/resources/data/minecraft/recipe/polished_diorite_slab_from_polished_diorite_stonecutting.json b/src/main/resources/data/minecraft/recipe/polished_diorite_slab_from_polished_diorite_stonecutting.json index afcc75f6e..a1a0c4e1a 100644 --- a/src/main/resources/data/minecraft/recipe/polished_diorite_slab_from_polished_diorite_stonecutting.json +++ b/src/main/resources/data/minecraft/recipe/polished_diorite_slab_from_polished_diorite_stonecutting.json @@ -1,10 +1,8 @@ { - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:polished_diorite" - }, - "result": { - "id": "mineralogy:diorite_smooth_slab", - "count": 2 - } + "type": "minecraft:stonecutting", + "ingredient": "minecraft:polished_diorite", + "result": { + "id": "mineralogy:diorite_smooth_slab", + "count": 2 + } } diff --git a/src/main/resources/data/minecraft/recipe/polished_granite.json b/src/main/resources/data/minecraft/recipe/polished_granite.json index be76c3325..a4f8b2587 100644 --- a/src/main/resources/data/minecraft/recipe/polished_granite.json +++ b/src/main/resources/data/minecraft/recipe/polished_granite.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "minecraft:granite" - }, - { - "item": "minecraft:sand" - } - ], - "result": { - "id": "minecraft:polished_granite", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "minecraft:granite", + "minecraft:sand" + ], + "result": { + "id": "minecraft:polished_granite", + "count": 1 + } } diff --git a/src/main/resources/data/minecraft/recipe/polished_granite_slab.json b/src/main/resources/data/minecraft/recipe/polished_granite_slab.json index 716cb1d56..9b631833b 100644 --- a/src/main/resources/data/minecraft/recipe/polished_granite_slab.json +++ b/src/main/resources/data/minecraft/recipe/polished_granite_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:polished_granite" - } - }, - "result": { - "id": "mineralogy:granite_smooth_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "###" + ], + "key": { + "#": "minecraft:polished_granite" + }, + "result": { + "id": "mineralogy:granite_smooth_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/minecraft/recipe/polished_granite_slab_from_granite_stonecutting.json b/src/main/resources/data/minecraft/recipe/polished_granite_slab_from_granite_stonecutting.json index 5c1d90178..4a14d6e49 100644 --- a/src/main/resources/data/minecraft/recipe/polished_granite_slab_from_granite_stonecutting.json +++ b/src/main/resources/data/minecraft/recipe/polished_granite_slab_from_granite_stonecutting.json @@ -1,10 +1,8 @@ { - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:granite" - }, - "result": { - "id": "mineralogy:granite_smooth_slab", - "count": 2 - } + "type": "minecraft:stonecutting", + "ingredient": "minecraft:granite", + "result": { + "id": "mineralogy:granite_smooth_slab", + "count": 2 + } } diff --git a/src/main/resources/data/minecraft/recipe/polished_granite_slab_from_polished_granite_stonecutting.json b/src/main/resources/data/minecraft/recipe/polished_granite_slab_from_polished_granite_stonecutting.json index 5202c12ff..7747d4a98 100644 --- a/src/main/resources/data/minecraft/recipe/polished_granite_slab_from_polished_granite_stonecutting.json +++ b/src/main/resources/data/minecraft/recipe/polished_granite_slab_from_polished_granite_stonecutting.json @@ -1,10 +1,8 @@ { - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:polished_granite" - }, - "result": { - "id": "mineralogy:granite_smooth_slab", - "count": 2 - } + "type": "minecraft:stonecutting", + "ingredient": "minecraft:polished_granite", + "result": { + "id": "mineralogy:granite_smooth_slab", + "count": 2 + } } diff --git a/src/main/resources/data/minecraft/recipe/polished_tuff.json b/src/main/resources/data/minecraft/recipe/polished_tuff.json index 5a0e1596e..c4426b839 100644 --- a/src/main/resources/data/minecraft/recipe/polished_tuff.json +++ b/src/main/resources/data/minecraft/recipe/polished_tuff.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "minecraft:tuff" - }, - { - "item": "minecraft:sand" - } - ], - "result": { - "id": "minecraft:polished_tuff", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "minecraft:tuff", + "minecraft:sand" + ], + "result": { + "id": "minecraft:polished_tuff", + "count": 1 + } } diff --git a/src/main/resources/data/minecraft/recipe/polished_tuff_slab.json b/src/main/resources/data/minecraft/recipe/polished_tuff_slab.json index c6542c29b..b80175367 100644 --- a/src/main/resources/data/minecraft/recipe/polished_tuff_slab.json +++ b/src/main/resources/data/minecraft/recipe/polished_tuff_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:polished_tuff" - } - }, - "result": { - "id": "mineralogy:tuff_smooth_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "###" + ], + "key": { + "#": "minecraft:polished_tuff" + }, + "result": { + "id": "mineralogy:tuff_smooth_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/minecraft/recipe/polished_tuff_slab_from_polished_tuff_stonecutting.json b/src/main/resources/data/minecraft/recipe/polished_tuff_slab_from_polished_tuff_stonecutting.json index 7c0006313..ad09f0bb4 100644 --- a/src/main/resources/data/minecraft/recipe/polished_tuff_slab_from_polished_tuff_stonecutting.json +++ b/src/main/resources/data/minecraft/recipe/polished_tuff_slab_from_polished_tuff_stonecutting.json @@ -1,10 +1,8 @@ { - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:polished_tuff" - }, - "result": { - "id": "mineralogy:tuff_smooth_slab", - "count": 2 - } + "type": "minecraft:stonecutting", + "ingredient": "minecraft:polished_tuff", + "result": { + "id": "mineralogy:tuff_smooth_slab", + "count": 2 + } } diff --git a/src/main/resources/data/minecraft/recipe/polished_tuff_slab_from_tuff_stonecutting.json b/src/main/resources/data/minecraft/recipe/polished_tuff_slab_from_tuff_stonecutting.json index 679f95ed6..68ff14840 100644 --- a/src/main/resources/data/minecraft/recipe/polished_tuff_slab_from_tuff_stonecutting.json +++ b/src/main/resources/data/minecraft/recipe/polished_tuff_slab_from_tuff_stonecutting.json @@ -1,10 +1,8 @@ { - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:tuff" - }, - "result": { - "id": "mineralogy:tuff_smooth_slab", - "count": 2 - } + "type": "minecraft:stonecutting", + "ingredient": "minecraft:tuff", + "result": { + "id": "mineralogy:tuff_smooth_slab", + "count": 2 + } } diff --git a/src/main/resources/data/minecraft/recipe/sentry_armor_trim_smithing_template.json b/src/main/resources/data/minecraft/recipe/sentry_armor_trim_smithing_template.json index a8a704ae7..95c849330 100644 --- a/src/main/resources/data/minecraft/recipe/sentry_armor_trim_smithing_template.json +++ b/src/main/resources/data/minecraft/recipe/sentry_armor_trim_smithing_template.json @@ -1,25 +1,19 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "#S#", - "#C#", - "###" - ], - "key": { - "#": { - "item": "minecraft:diamond" - }, - "C": { - "tag": "mineralogy:cobblestone_equivalents" - }, - "S": { - "item": "minecraft:sentry_armor_trim_smithing_template" - } - }, - "result": { - "id": "minecraft:sentry_armor_trim_smithing_template", - "count": 2 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "#S#", + "#C#", + "###" + ], + "key": { + "#": "minecraft:diamond", + "C": "#mineralogy:cobblestone_equivalents", + "S": "minecraft:sentry_armor_trim_smithing_template" + }, + "result": { + "id": "minecraft:sentry_armor_trim_smithing_template", + "count": 2 + }, + "show_notification": true } diff --git a/src/main/resources/data/minecraft/recipe/stone_axe.json b/src/main/resources/data/minecraft/recipe/stone_axe.json index 646543fd2..228179894 100644 --- a/src/main/resources/data/minecraft/recipe/stone_axe.json +++ b/src/main/resources/data/minecraft/recipe/stone_axe.json @@ -1,21 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "equipment", - "pattern": [ - "XX", - "X#", - " #" - ], - "key": { - "#": { - "item": "minecraft:stick" - }, - "X": { - "tag": "mineralogy:stone_tool_materials" - } - }, - "result": { - "id": "minecraft:stone_axe" - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "equipment", + "pattern": [ + "XX", + "X#", + " #" + ], + "key": { + "#": "minecraft:stick", + "X": "#mineralogy:stone_tool_materials" + }, + "result": { + "id": "minecraft:stone_axe" + }, + "show_notification": true } diff --git a/src/main/resources/data/minecraft/recipe/stone_hoe.json b/src/main/resources/data/minecraft/recipe/stone_hoe.json index 7ce585f0b..1beef0f98 100644 --- a/src/main/resources/data/minecraft/recipe/stone_hoe.json +++ b/src/main/resources/data/minecraft/recipe/stone_hoe.json @@ -1,21 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "equipment", - "pattern": [ - "XX", - " #", - " #" - ], - "key": { - "#": { - "item": "minecraft:stick" - }, - "X": { - "tag": "mineralogy:stone_tool_materials" - } - }, - "result": { - "id": "minecraft:stone_hoe" - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "equipment", + "pattern": [ + "XX", + " #", + " #" + ], + "key": { + "#": "minecraft:stick", + "X": "#mineralogy:stone_tool_materials" + }, + "result": { + "id": "minecraft:stone_hoe" + }, + "show_notification": true } diff --git a/src/main/resources/data/minecraft/recipe/stone_pickaxe.json b/src/main/resources/data/minecraft/recipe/stone_pickaxe.json index 0d6579693..1ff51f686 100644 --- a/src/main/resources/data/minecraft/recipe/stone_pickaxe.json +++ b/src/main/resources/data/minecraft/recipe/stone_pickaxe.json @@ -1,21 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "equipment", - "pattern": [ - "XXX", - " # ", - " # " - ], - "key": { - "#": { - "item": "minecraft:stick" - }, - "X": { - "tag": "mineralogy:stone_tool_materials" - } - }, - "result": { - "id": "minecraft:stone_pickaxe" - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "equipment", + "pattern": [ + "XXX", + " # ", + " # " + ], + "key": { + "#": "minecraft:stick", + "X": "#mineralogy:stone_tool_materials" + }, + "result": { + "id": "minecraft:stone_pickaxe" + }, + "show_notification": true } diff --git a/src/main/resources/data/minecraft/recipe/stone_shovel.json b/src/main/resources/data/minecraft/recipe/stone_shovel.json index 13ed028f8..9b958ebf1 100644 --- a/src/main/resources/data/minecraft/recipe/stone_shovel.json +++ b/src/main/resources/data/minecraft/recipe/stone_shovel.json @@ -1,21 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "equipment", - "pattern": [ - "X", - "#", - "#" - ], - "key": { - "#": { - "item": "minecraft:stick" - }, - "X": { - "tag": "mineralogy:stone_tool_materials" - } - }, - "result": { - "id": "minecraft:stone_shovel" - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "equipment", + "pattern": [ + "X", + "#", + "#" + ], + "key": { + "#": "minecraft:stick", + "X": "#mineralogy:stone_tool_materials" + }, + "result": { + "id": "minecraft:stone_shovel" + }, + "show_notification": true } diff --git a/src/main/resources/data/minecraft/recipe/stone_sword.json b/src/main/resources/data/minecraft/recipe/stone_sword.json index ad4883388..5f13af66e 100644 --- a/src/main/resources/data/minecraft/recipe/stone_sword.json +++ b/src/main/resources/data/minecraft/recipe/stone_sword.json @@ -1,21 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "equipment", - "pattern": [ - "X", - "X", - "#" - ], - "key": { - "#": { - "item": "minecraft:stick" - }, - "X": { - "tag": "mineralogy:stone_tool_materials" - } - }, - "result": { - "id": "minecraft:stone_sword" - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "equipment", + "pattern": [ + "X", + "X", + "#" + ], + "key": { + "#": "minecraft:stick", + "X": "#mineralogy:stone_tool_materials" + }, + "result": { + "id": "minecraft:stone_sword" + }, + "show_notification": true } diff --git a/src/main/resources/data/minecraft/recipe/tuff_brick_slab.json b/src/main/resources/data/minecraft/recipe/tuff_brick_slab.json index 96e276c8f..92d3d43b8 100644 --- a/src/main/resources/data/minecraft/recipe/tuff_brick_slab.json +++ b/src/main/resources/data/minecraft/recipe/tuff_brick_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:tuff_bricks" - } - }, - "result": { - "id": "mineralogy:tuff_brick_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "###" + ], + "key": { + "#": "minecraft:tuff_bricks" + }, + "result": { + "id": "mineralogy:tuff_brick_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/minecraft/recipe/tuff_brick_slab_from_polished_tuff_stonecutting.json b/src/main/resources/data/minecraft/recipe/tuff_brick_slab_from_polished_tuff_stonecutting.json index 985b2254d..90beaa47e 100644 --- a/src/main/resources/data/minecraft/recipe/tuff_brick_slab_from_polished_tuff_stonecutting.json +++ b/src/main/resources/data/minecraft/recipe/tuff_brick_slab_from_polished_tuff_stonecutting.json @@ -1,10 +1,8 @@ { - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:polished_tuff" - }, - "result": { - "id": "mineralogy:tuff_brick_slab", - "count": 2 - } + "type": "minecraft:stonecutting", + "ingredient": "minecraft:polished_tuff", + "result": { + "id": "mineralogy:tuff_brick_slab", + "count": 2 + } } diff --git a/src/main/resources/data/minecraft/recipe/tuff_brick_slab_from_tuff_bricks_stonecutting.json b/src/main/resources/data/minecraft/recipe/tuff_brick_slab_from_tuff_bricks_stonecutting.json index 593de99e5..c6b2876b9 100644 --- a/src/main/resources/data/minecraft/recipe/tuff_brick_slab_from_tuff_bricks_stonecutting.json +++ b/src/main/resources/data/minecraft/recipe/tuff_brick_slab_from_tuff_bricks_stonecutting.json @@ -1,10 +1,8 @@ { - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:tuff_bricks" - }, - "result": { - "id": "mineralogy:tuff_brick_slab", - "count": 2 - } + "type": "minecraft:stonecutting", + "ingredient": "minecraft:tuff_bricks", + "result": { + "id": "mineralogy:tuff_brick_slab", + "count": 2 + } } diff --git a/src/main/resources/data/minecraft/recipe/tuff_brick_slab_from_tuff_stonecutting.json b/src/main/resources/data/minecraft/recipe/tuff_brick_slab_from_tuff_stonecutting.json index 7a1dbee8b..10015efb7 100644 --- a/src/main/resources/data/minecraft/recipe/tuff_brick_slab_from_tuff_stonecutting.json +++ b/src/main/resources/data/minecraft/recipe/tuff_brick_slab_from_tuff_stonecutting.json @@ -1,10 +1,8 @@ { - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:tuff" - }, - "result": { - "id": "mineralogy:tuff_brick_slab", - "count": 2 - } + "type": "minecraft:stonecutting", + "ingredient": "minecraft:tuff", + "result": { + "id": "mineralogy:tuff_brick_slab", + "count": 2 + } } diff --git a/src/main/resources/data/minecraft/recipe/tuff_slab.json b/src/main/resources/data/minecraft/recipe/tuff_slab.json index 407cf0c9e..775900f90 100644 --- a/src/main/resources/data/minecraft/recipe/tuff_slab.json +++ b/src/main/resources/data/minecraft/recipe/tuff_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:tuff" - } - }, - "result": { - "id": "mineralogy:tuff_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "###" + ], + "key": { + "#": "minecraft:tuff" + }, + "result": { + "id": "mineralogy:tuff_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/minecraft/recipe/tuff_slab_from_tuff_stonecutting.json b/src/main/resources/data/minecraft/recipe/tuff_slab_from_tuff_stonecutting.json index deec1a8c2..488822565 100644 --- a/src/main/resources/data/minecraft/recipe/tuff_slab_from_tuff_stonecutting.json +++ b/src/main/resources/data/minecraft/recipe/tuff_slab_from_tuff_stonecutting.json @@ -1,10 +1,8 @@ { - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:tuff" - }, - "result": { - "id": "mineralogy:tuff_slab", - "count": 2 - } + "type": "minecraft:stonecutting", + "ingredient": "minecraft:tuff", + "result": { + "id": "mineralogy:tuff_slab", + "count": 2 + } } diff --git a/src/main/resources/data/minecraft/recipe/vex_armor_trim_smithing_template.json b/src/main/resources/data/minecraft/recipe/vex_armor_trim_smithing_template.json index 9104806c5..3ce493bce 100644 --- a/src/main/resources/data/minecraft/recipe/vex_armor_trim_smithing_template.json +++ b/src/main/resources/data/minecraft/recipe/vex_armor_trim_smithing_template.json @@ -1,25 +1,19 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "#S#", - "#C#", - "###" - ], - "key": { - "#": { - "item": "minecraft:diamond" - }, - "C": { - "tag": "mineralogy:cobblestone_equivalents" - }, - "S": { - "item": "minecraft:vex_armor_trim_smithing_template" - } - }, - "result": { - "id": "minecraft:vex_armor_trim_smithing_template", - "count": 2 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "#S#", + "#C#", + "###" + ], + "key": { + "#": "minecraft:diamond", + "C": "#mineralogy:cobblestone_equivalents", + "S": "minecraft:vex_armor_trim_smithing_template" + }, + "result": { + "id": "minecraft:vex_armor_trim_smithing_template", + "count": 2 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_brick.json index e7f007aff..b5b4228e8 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:amphibolite_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:amphibolite_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/amphibolite" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:amphibolite_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:amphibolite_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/amphibolite" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_brick_block_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_brick_block_polishing.json index 5cdeef622..d78817706 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_brick_block_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_brick_block_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:amphibolite_brick_block_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:amphibolite_brick_block_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:amphibolite_brick" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:amphibolite_brick_block_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:amphibolite_brick_block_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:amphibolite_brick" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_brick_furnace.json b/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_brick_furnace.json index 024aaef0a..5255e6f3d 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_brick_furnace.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_brick_furnace.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:amphibolite_brick_furnace" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:amphibolite_brick_furnace" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:slabs/amphibolite/brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:amphibolite_brick_furnace" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:amphibolite_brick_furnace" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:slabs/amphibolite/brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_brick_slab.json b/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_brick_slab.json index 22a17fcfc..9e970fb05 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_brick_slab.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_brick_slab.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:amphibolite_brick_slab" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:amphibolite_brick_slab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:amphibolite_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:amphibolite_brick_slab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:amphibolite_brick_slab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:amphibolite_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_brick_slab_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_brick_slab_polishing.json index cd79d2168..68bf03285 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_brick_slab_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_brick_slab_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:amphibolite_brick_slab_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:amphibolite_brick_slab_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:amphibolite_brick_slab" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:amphibolite_brick_slab_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:amphibolite_brick_slab_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:amphibolite_brick_slab" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_brick_slab_recombination.json b/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_brick_slab_recombination.json index d76e1495c..cea3f707d 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_brick_slab_recombination.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_brick_slab_recombination.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:amphibolite_brick_slab_recombination" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:amphibolite_brick_slab_recombination" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:amphibolite_brick_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:amphibolite_brick_slab_recombination" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:amphibolite_brick_slab_recombination" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:amphibolite_brick_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_brick_stairs.json b/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_brick_stairs.json index a013edd08..f91591238 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_brick_stairs.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_brick_stairs.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:amphibolite_brick_stairs" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:amphibolite_brick_stairs" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/amphibolite/brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:amphibolite_brick_stairs" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:amphibolite_brick_stairs" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/amphibolite/brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_brick_stairs_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_brick_stairs_polishing.json index d5012f8c2..5ec8e47d0 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_brick_stairs_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_brick_stairs_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:amphibolite_brick_stairs_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:amphibolite_brick_stairs_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:amphibolite_brick_stairs" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:amphibolite_brick_stairs_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:amphibolite_brick_stairs_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:amphibolite_brick_stairs" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_brick_wall.json b/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_brick_wall.json index 55116ba10..29210e8ba 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_brick_wall.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_brick_wall.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:amphibolite_brick_wall" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:amphibolite_brick_wall" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/amphibolite/brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:amphibolite_brick_wall" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:amphibolite_brick_wall" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/amphibolite/brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_brick_wall_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_brick_wall_polishing.json index 4b222a88c..81bf7c9a7 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_brick_wall_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_brick_wall_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:amphibolite_brick_wall_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:amphibolite_brick_wall_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:amphibolite_brick_wall" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:amphibolite_brick_wall_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:amphibolite_brick_wall_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:amphibolite_brick_wall" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_cobblestone.json b/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_cobblestone.json index 688447d97..28f823076 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_cobblestone.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_cobblestone.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:amphibolite_cobblestone" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:amphibolite_cobblestone" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/amphibolite" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:amphibolite_cobblestone" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:amphibolite_cobblestone" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/amphibolite" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_furnace.json b/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_furnace.json index 613e4ce23..4717e5a83 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_furnace.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_furnace.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:amphibolite_furnace" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:amphibolite_furnace" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:slabs/amphibolite" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:amphibolite_furnace" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:amphibolite_furnace" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:slabs/amphibolite" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_polished_brick_slab_recombination.json b/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_polished_brick_slab_recombination.json index 039fb6eb0..6d0f08c76 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_polished_brick_slab_recombination.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_polished_brick_slab_recombination.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:amphibolite_polished_brick_slab_recombination" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:amphibolite_polished_brick_slab_recombination" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:amphibolite_smooth_brick_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:amphibolite_polished_brick_slab_recombination" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:amphibolite_polished_brick_slab_recombination" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:amphibolite_smooth_brick_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_polished_slab_recombination.json b/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_polished_slab_recombination.json index 680eef699..dd037838e 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_polished_slab_recombination.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_polished_slab_recombination.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:amphibolite_polished_slab_recombination" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:amphibolite_polished_slab_recombination" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:amphibolite_smooth_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:amphibolite_polished_slab_recombination" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:amphibolite_polished_slab_recombination" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:amphibolite_smooth_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_polished_slabs_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_polished_slabs_to_brick.json index aa1f82939..7e7a4ae1c 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_polished_slabs_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_polished_slabs_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:amphibolite_polished_slabs_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:amphibolite_polished_slabs_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:amphibolite_smooth_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:amphibolite_polished_slabs_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:amphibolite_polished_slabs_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:amphibolite_smooth_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_polished_stairs_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_polished_stairs_to_brick.json index 9044fbec4..608c5613f 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_polished_stairs_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_polished_stairs_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:amphibolite_polished_stairs_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:amphibolite_polished_stairs_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:amphibolite_smooth_stairs" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:amphibolite_polished_stairs_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:amphibolite_polished_stairs_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:amphibolite_smooth_stairs" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_polished_walls_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_polished_walls_to_brick.json index 346911abd..3ca6c998f 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_polished_walls_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_polished_walls_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:amphibolite_polished_walls_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:amphibolite_polished_walls_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:amphibolite_smooth_wall" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:amphibolite_polished_walls_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:amphibolite_polished_walls_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:amphibolite_smooth_wall" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_raw_slab_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_raw_slab_polishing.json index 201dcfa80..c0cd427e2 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_raw_slab_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_raw_slab_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:amphibolite_raw_slab_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:amphibolite_raw_slab_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:amphibolite_slab" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:amphibolite_raw_slab_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:amphibolite_raw_slab_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:amphibolite_slab" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_raw_slab_recombination.json b/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_raw_slab_recombination.json index 1e340e10a..fcc9c5fa6 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_raw_slab_recombination.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_raw_slab_recombination.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:amphibolite_raw_slab_recombination" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:amphibolite_raw_slab_recombination" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:amphibolite_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:amphibolite_raw_slab_recombination" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:amphibolite_raw_slab_recombination" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:amphibolite_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_raw_slabs_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_raw_slabs_to_brick.json index 320b9267c..8269a372f 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_raw_slabs_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_raw_slabs_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:amphibolite_raw_slabs_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:amphibolite_raw_slabs_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:amphibolite_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:amphibolite_raw_slabs_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:amphibolite_raw_slabs_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:amphibolite_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_raw_stairs_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_raw_stairs_polishing.json index 81d20cb13..aa51cc37e 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_raw_stairs_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_raw_stairs_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:amphibolite_raw_stairs_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:amphibolite_raw_stairs_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:amphibolite_stairs" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:amphibolite_raw_stairs_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:amphibolite_raw_stairs_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:amphibolite_stairs" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_raw_stairs_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_raw_stairs_to_brick.json index 376ebec41..cdbbd9bcb 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_raw_stairs_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_raw_stairs_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:amphibolite_raw_stairs_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:amphibolite_raw_stairs_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:amphibolite_stairs" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:amphibolite_raw_stairs_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:amphibolite_raw_stairs_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:amphibolite_stairs" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_raw_wall_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_raw_wall_polishing.json index 910ccec62..1e7b37105 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_raw_wall_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_raw_wall_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:amphibolite_raw_wall_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:amphibolite_raw_wall_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:amphibolite_wall" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:amphibolite_raw_wall_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:amphibolite_raw_wall_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:amphibolite_wall" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_raw_walls_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_raw_walls_to_brick.json index ef347158b..af32e33b3 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_raw_walls_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_raw_walls_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:amphibolite_raw_walls_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:amphibolite_raw_walls_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:amphibolite_wall" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:amphibolite_raw_walls_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:amphibolite_raw_walls_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:amphibolite_wall" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_relief_axe.json b/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_relief_axe.json index 29605910c..1516194d9 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_relief_axe.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_relief_axe.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:amphibolite_relief_axe" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:amphibolite_relief_axe" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:amphibolite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:amphibolite_relief_axe" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:amphibolite_relief_axe" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:amphibolite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_relief_blank.json b/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_relief_blank.json index 24728cb49..5342ebe45 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_relief_blank.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_relief_blank.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:amphibolite_relief_blank" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:amphibolite_relief_blank" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:amphibolite_smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:amphibolite_relief_blank" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:amphibolite_relief_blank" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:amphibolite_smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_relief_cross.json b/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_relief_cross.json index 0d6223545..b99a1bdda 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_relief_cross.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_relief_cross.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:amphibolite_relief_cross" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:amphibolite_relief_cross" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:amphibolite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:amphibolite_relief_cross" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:amphibolite_relief_cross" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:amphibolite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_relief_hammer.json b/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_relief_hammer.json index 8d53fcc7c..47678f9d1 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_relief_hammer.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_relief_hammer.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:amphibolite_relief_hammer" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:amphibolite_relief_hammer" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:amphibolite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:amphibolite_relief_hammer" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:amphibolite_relief_hammer" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:amphibolite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_relief_hoe.json b/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_relief_hoe.json index c95a65483..e7d71634f 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_relief_hoe.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_relief_hoe.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:amphibolite_relief_hoe" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:amphibolite_relief_hoe" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:amphibolite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:amphibolite_relief_hoe" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:amphibolite_relief_hoe" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:amphibolite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_relief_horizontal.json b/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_relief_horizontal.json index 87610ee19..463daa755 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_relief_horizontal.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_relief_horizontal.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:amphibolite_relief_horizontal" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:amphibolite_relief_horizontal" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:amphibolite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:amphibolite_relief_horizontal" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:amphibolite_relief_horizontal" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:amphibolite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_relief_i.json b/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_relief_i.json index 2b3c17c59..9f29198f4 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_relief_i.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_relief_i.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:amphibolite_relief_i" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:amphibolite_relief_i" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:amphibolite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:amphibolite_relief_i" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:amphibolite_relief_i" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:amphibolite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_relief_left.json b/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_relief_left.json index 8ef913cb5..cf777c738 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_relief_left.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_relief_left.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:amphibolite_relief_left" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:amphibolite_relief_left" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:amphibolite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:amphibolite_relief_left" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:amphibolite_relief_left" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:amphibolite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_relief_pickaxe.json b/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_relief_pickaxe.json index 72c314d99..5fc87b3e1 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_relief_pickaxe.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_relief_pickaxe.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:amphibolite_relief_pickaxe" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:amphibolite_relief_pickaxe" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:amphibolite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:amphibolite_relief_pickaxe" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:amphibolite_relief_pickaxe" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:amphibolite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_relief_plus.json b/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_relief_plus.json index ba4d7231b..013109111 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_relief_plus.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_relief_plus.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:amphibolite_relief_plus" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:amphibolite_relief_plus" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:amphibolite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:amphibolite_relief_plus" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:amphibolite_relief_plus" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:amphibolite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_relief_right.json b/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_relief_right.json index cf81a4214..2663cec20 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_relief_right.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_relief_right.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:amphibolite_relief_right" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:amphibolite_relief_right" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:amphibolite_relief_left" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:amphibolite_relief_right" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:amphibolite_relief_right" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:amphibolite_relief_left" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_relief_sword.json b/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_relief_sword.json index 6d10584de..2583fb2c1 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_relief_sword.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_relief_sword.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:amphibolite_relief_sword" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:amphibolite_relief_sword" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:amphibolite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:amphibolite_relief_sword" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:amphibolite_relief_sword" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:amphibolite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_relief_vertical.json b/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_relief_vertical.json index f2a9259b2..d50809910 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_relief_vertical.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_relief_vertical.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:amphibolite_relief_vertical" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:amphibolite_relief_vertical" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:amphibolite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:amphibolite_relief_vertical" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:amphibolite_relief_vertical" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:amphibolite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_slab.json b/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_slab.json index 80e4c83fe..5764dbebf 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_slab.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_slab.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:amphibolite_slab" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:amphibolite_slab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:amphibolite" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:amphibolite_slab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:amphibolite_slab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:amphibolite" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_smooth.json b/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_smooth.json index 84eb9a03e..edaeadc69 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_smooth.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_smooth.json @@ -1,48 +1,46 @@ { - "rewards": { - "recipes": [ - "mineralogy:amphibolite_smooth" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:amphibolite_smooth" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/amphibolite" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:amphibolite_smooth" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:amphibolite_smooth" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/amphibolite" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_smooth_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_smooth_brick.json index b63013a2c..dc6bfc6c9 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_smooth_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_smooth_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:amphibolite_smooth_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:amphibolite_smooth_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/amphibolite/smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:amphibolite_smooth_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:amphibolite_smooth_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/amphibolite/smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_smooth_brick_furnace.json b/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_smooth_brick_furnace.json index 3c7519dca..11a9ed2fe 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_smooth_brick_furnace.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_smooth_brick_furnace.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:amphibolite_smooth_brick_furnace" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:amphibolite_smooth_brick_furnace" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:slabs/amphibolite/smooth_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:amphibolite_smooth_brick_furnace" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:amphibolite_smooth_brick_furnace" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:slabs/amphibolite/smooth_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_smooth_brick_slab.json b/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_smooth_brick_slab.json index a9db9d4ed..ac3dcc86f 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_smooth_brick_slab.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_smooth_brick_slab.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:amphibolite_smooth_brick_slab" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:amphibolite_smooth_brick_slab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:amphibolite_smooth_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:amphibolite_smooth_brick_slab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:amphibolite_smooth_brick_slab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:amphibolite_smooth_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_smooth_brick_stairs.json b/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_smooth_brick_stairs.json index 85a12868b..578ba87d4 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_smooth_brick_stairs.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_smooth_brick_stairs.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:amphibolite_smooth_brick_stairs" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:amphibolite_smooth_brick_stairs" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/amphibolite/smooth_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:amphibolite_smooth_brick_stairs" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:amphibolite_smooth_brick_stairs" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/amphibolite/smooth_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_smooth_brick_wall.json b/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_smooth_brick_wall.json index 292761b13..a21465fb8 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_smooth_brick_wall.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_smooth_brick_wall.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:amphibolite_smooth_brick_wall" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:amphibolite_smooth_brick_wall" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/amphibolite/smooth_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:amphibolite_smooth_brick_wall" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:amphibolite_smooth_brick_wall" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/amphibolite/smooth_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_smooth_furnace.json b/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_smooth_furnace.json index 52b7a151a..34e4bdd14 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_smooth_furnace.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_smooth_furnace.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:amphibolite_smooth_furnace" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:amphibolite_smooth_furnace" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:slabs/amphibolite/smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:amphibolite_smooth_furnace" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:amphibolite_smooth_furnace" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:slabs/amphibolite/smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_smooth_slab.json b/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_smooth_slab.json index 482b215fb..e326fc520 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_smooth_slab.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_smooth_slab.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:amphibolite_smooth_slab" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:amphibolite_smooth_slab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:amphibolite_smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:amphibolite_smooth_slab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:amphibolite_smooth_slab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:amphibolite_smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_smooth_stairs.json b/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_smooth_stairs.json index f08885353..c868baf02 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_smooth_stairs.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_smooth_stairs.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:amphibolite_smooth_stairs" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:amphibolite_smooth_stairs" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/amphibolite/smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:amphibolite_smooth_stairs" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:amphibolite_smooth_stairs" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/amphibolite/smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_smooth_wall.json b/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_smooth_wall.json index 6362db343..e77a0f9d5 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_smooth_wall.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_smooth_wall.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:amphibolite_smooth_wall" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:amphibolite_smooth_wall" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/amphibolite/smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:amphibolite_smooth_wall" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:amphibolite_smooth_wall" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/amphibolite/smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_stairs.json b/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_stairs.json index b694b6983..748b330eb 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_stairs.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_stairs.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:amphibolite_stairs" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:amphibolite_stairs" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/amphibolite" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:amphibolite_stairs" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:amphibolite_stairs" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/amphibolite" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_to_stone.json b/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_to_stone.json index bf0c821cb..9b003e986 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_to_stone.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_to_stone.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:amphibolite_to_stone" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:amphibolite_to_stone" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:amphibolite" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:amphibolite_to_stone" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:amphibolite_to_stone" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:amphibolite" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_wall.json b/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_wall.json index 4cabc91dc..bd5b21af9 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_wall.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/amphibolite_wall.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:amphibolite_wall" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:amphibolite_wall" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/amphibolite" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:amphibolite_wall" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:amphibolite_wall" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/amphibolite" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/andesite_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/andesite_brick.json index a82e3fc43..5408a97df 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/andesite_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/andesite_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:andesite_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:andesite_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/andesite" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:andesite_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:andesite_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/andesite" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/andesite_brick_block_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/andesite_brick_block_polishing.json index c7cb16fd2..0111ef209 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/andesite_brick_block_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/andesite_brick_block_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:andesite_brick_block_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:andesite_brick_block_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:andesite_brick" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:andesite_brick_block_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:andesite_brick_block_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:andesite_brick" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/andesite_brick_furnace.json b/src/main/resources/data/mineralogy/advancement/recipes/andesite_brick_furnace.json index 23b077878..9dc0551b3 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/andesite_brick_furnace.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/andesite_brick_furnace.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:andesite_brick_furnace" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:andesite_brick_furnace" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:slabs/andesite/brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:andesite_brick_furnace" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:andesite_brick_furnace" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:slabs/andesite/brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/andesite_brick_slab.json b/src/main/resources/data/mineralogy/advancement/recipes/andesite_brick_slab.json index 0ed77d7a5..9c03b3a0f 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/andesite_brick_slab.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/andesite_brick_slab.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:andesite_brick_slab" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:andesite_brick_slab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:andesite_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:andesite_brick_slab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:andesite_brick_slab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:andesite_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/andesite_brick_slab_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/andesite_brick_slab_polishing.json index 3ea656a84..301879a89 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/andesite_brick_slab_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/andesite_brick_slab_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:andesite_brick_slab_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:andesite_brick_slab_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:andesite_brick_slab" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:andesite_brick_slab_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:andesite_brick_slab_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:andesite_brick_slab" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/andesite_brick_slab_recombination.json b/src/main/resources/data/mineralogy/advancement/recipes/andesite_brick_slab_recombination.json index 531ae4b87..bf914ffd5 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/andesite_brick_slab_recombination.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/andesite_brick_slab_recombination.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:andesite_brick_slab_recombination" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:andesite_brick_slab_recombination" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:andesite_brick_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:andesite_brick_slab_recombination" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:andesite_brick_slab_recombination" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:andesite_brick_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/andesite_brick_stairs.json b/src/main/resources/data/mineralogy/advancement/recipes/andesite_brick_stairs.json index 20d4c2f4b..a386e7493 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/andesite_brick_stairs.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/andesite_brick_stairs.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:andesite_brick_stairs" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:andesite_brick_stairs" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/andesite/brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:andesite_brick_stairs" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:andesite_brick_stairs" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/andesite/brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/andesite_brick_stairs_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/andesite_brick_stairs_polishing.json index 55db18c57..3c59d40d1 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/andesite_brick_stairs_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/andesite_brick_stairs_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:andesite_brick_stairs_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:andesite_brick_stairs_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:andesite_brick_stairs" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:andesite_brick_stairs_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:andesite_brick_stairs_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:andesite_brick_stairs" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/andesite_brick_wall.json b/src/main/resources/data/mineralogy/advancement/recipes/andesite_brick_wall.json index d8f253458..593d7a18d 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/andesite_brick_wall.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/andesite_brick_wall.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:andesite_brick_wall" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:andesite_brick_wall" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/andesite/brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:andesite_brick_wall" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:andesite_brick_wall" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/andesite/brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/andesite_brick_wall_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/andesite_brick_wall_polishing.json index bd4952ed6..2f42f49bd 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/andesite_brick_wall_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/andesite_brick_wall_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:andesite_brick_wall_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:andesite_brick_wall_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:andesite_brick_wall" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:andesite_brick_wall_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:andesite_brick_wall_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:andesite_brick_wall" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/andesite_cobblestone.json b/src/main/resources/data/mineralogy/advancement/recipes/andesite_cobblestone.json index 97c668861..95ac6a67b 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/andesite_cobblestone.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/andesite_cobblestone.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:andesite_cobblestone" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:andesite_cobblestone" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/andesite" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:andesite_cobblestone" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:andesite_cobblestone" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/andesite" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/andesite_furnace.json b/src/main/resources/data/mineralogy/advancement/recipes/andesite_furnace.json index 549f1a809..6acde0915 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/andesite_furnace.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/andesite_furnace.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:andesite_furnace" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:andesite_furnace" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:slabs/andesite" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:andesite_furnace" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:andesite_furnace" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:slabs/andesite" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/andesite_polished_brick_slab_recombination.json b/src/main/resources/data/mineralogy/advancement/recipes/andesite_polished_brick_slab_recombination.json index df3f565e9..b5a3063c4 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/andesite_polished_brick_slab_recombination.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/andesite_polished_brick_slab_recombination.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:andesite_polished_brick_slab_recombination" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:andesite_polished_brick_slab_recombination" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:andesite_smooth_brick_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:andesite_polished_brick_slab_recombination" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:andesite_polished_brick_slab_recombination" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:andesite_smooth_brick_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/andesite_polished_slab_recombination.json b/src/main/resources/data/mineralogy/advancement/recipes/andesite_polished_slab_recombination.json index 461083486..4a7e93704 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/andesite_polished_slab_recombination.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/andesite_polished_slab_recombination.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:andesite_polished_slab_recombination" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:andesite_polished_slab_recombination" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:andesite_smooth_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:andesite_polished_slab_recombination" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:andesite_polished_slab_recombination" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:andesite_smooth_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/andesite_polished_slabs_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/andesite_polished_slabs_to_brick.json index cf4d7571d..552cc5940 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/andesite_polished_slabs_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/andesite_polished_slabs_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:andesite_polished_slabs_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:andesite_polished_slabs_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:andesite_smooth_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:andesite_polished_slabs_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:andesite_polished_slabs_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:andesite_smooth_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/andesite_polished_stairs_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/andesite_polished_stairs_to_brick.json index 4763fde17..427b1219e 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/andesite_polished_stairs_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/andesite_polished_stairs_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:andesite_polished_stairs_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:andesite_polished_stairs_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:andesite_smooth_stairs" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:andesite_polished_stairs_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:andesite_polished_stairs_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:andesite_smooth_stairs" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/andesite_polished_walls_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/andesite_polished_walls_to_brick.json index 148ae5c01..4cab26a5a 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/andesite_polished_walls_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/andesite_polished_walls_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:andesite_polished_walls_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:andesite_polished_walls_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:andesite_smooth_wall" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:andesite_polished_walls_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:andesite_polished_walls_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:andesite_smooth_wall" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/andesite_raw_slab_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/andesite_raw_slab_polishing.json index 638649ec9..64f61ad2c 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/andesite_raw_slab_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/andesite_raw_slab_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:andesite_raw_slab_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:andesite_raw_slab_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:andesite_slab" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:andesite_raw_slab_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:andesite_raw_slab_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:andesite_slab" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/andesite_raw_slab_recombination.json b/src/main/resources/data/mineralogy/advancement/recipes/andesite_raw_slab_recombination.json index eaafed80f..352b3b011 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/andesite_raw_slab_recombination.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/andesite_raw_slab_recombination.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:andesite_raw_slab_recombination" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:andesite_raw_slab_recombination" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:andesite_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:andesite_raw_slab_recombination" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:andesite_raw_slab_recombination" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:andesite_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/andesite_raw_slabs_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/andesite_raw_slabs_to_brick.json index 001c1d5e7..971d59992 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/andesite_raw_slabs_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/andesite_raw_slabs_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:andesite_raw_slabs_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:andesite_raw_slabs_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:andesite_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:andesite_raw_slabs_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:andesite_raw_slabs_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:andesite_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/andesite_raw_stairs_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/andesite_raw_stairs_polishing.json index 30806edaa..c106cb5ff 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/andesite_raw_stairs_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/andesite_raw_stairs_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:andesite_raw_stairs_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:andesite_raw_stairs_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:andesite_stairs" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:andesite_raw_stairs_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:andesite_raw_stairs_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:andesite_stairs" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/andesite_raw_stairs_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/andesite_raw_stairs_to_brick.json index 6f2ba0f01..38ad57a49 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/andesite_raw_stairs_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/andesite_raw_stairs_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:andesite_raw_stairs_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:andesite_raw_stairs_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:andesite_stairs" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:andesite_raw_stairs_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:andesite_raw_stairs_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:andesite_stairs" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/andesite_raw_wall_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/andesite_raw_wall_polishing.json index 7a5b40981..b84759157 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/andesite_raw_wall_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/andesite_raw_wall_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:andesite_raw_wall_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:andesite_raw_wall_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:andesite_wall" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:andesite_raw_wall_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:andesite_raw_wall_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:andesite_wall" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/andesite_raw_walls_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/andesite_raw_walls_to_brick.json index 51b000380..7d10772a2 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/andesite_raw_walls_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/andesite_raw_walls_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:andesite_raw_walls_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:andesite_raw_walls_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:andesite_wall" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:andesite_raw_walls_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:andesite_raw_walls_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:andesite_wall" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/andesite_relief_axe.json b/src/main/resources/data/mineralogy/advancement/recipes/andesite_relief_axe.json index 03d7b0764..633e95a39 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/andesite_relief_axe.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/andesite_relief_axe.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:andesite_relief_axe" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:andesite_relief_axe" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:andesite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:andesite_relief_axe" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:andesite_relief_axe" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:andesite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/andesite_relief_blank.json b/src/main/resources/data/mineralogy/advancement/recipes/andesite_relief_blank.json index c3c49b2e8..4f687a807 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/andesite_relief_blank.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/andesite_relief_blank.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:andesite_relief_blank" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:andesite_relief_blank" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/andesite/smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:andesite_relief_blank" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:andesite_relief_blank" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/andesite/smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/andesite_relief_cross.json b/src/main/resources/data/mineralogy/advancement/recipes/andesite_relief_cross.json index 29b67e89d..4abc56dd8 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/andesite_relief_cross.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/andesite_relief_cross.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:andesite_relief_cross" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:andesite_relief_cross" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:andesite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:andesite_relief_cross" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:andesite_relief_cross" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:andesite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/andesite_relief_hammer.json b/src/main/resources/data/mineralogy/advancement/recipes/andesite_relief_hammer.json index 248914b92..a16fe22b2 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/andesite_relief_hammer.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/andesite_relief_hammer.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:andesite_relief_hammer" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:andesite_relief_hammer" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:andesite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:andesite_relief_hammer" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:andesite_relief_hammer" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:andesite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/andesite_relief_hoe.json b/src/main/resources/data/mineralogy/advancement/recipes/andesite_relief_hoe.json index 53463db4a..b2cb91ac1 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/andesite_relief_hoe.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/andesite_relief_hoe.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:andesite_relief_hoe" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:andesite_relief_hoe" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:andesite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:andesite_relief_hoe" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:andesite_relief_hoe" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:andesite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/andesite_relief_horizontal.json b/src/main/resources/data/mineralogy/advancement/recipes/andesite_relief_horizontal.json index fe390eb2d..8b44736a7 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/andesite_relief_horizontal.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/andesite_relief_horizontal.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:andesite_relief_horizontal" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:andesite_relief_horizontal" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:andesite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:andesite_relief_horizontal" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:andesite_relief_horizontal" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:andesite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/andesite_relief_i.json b/src/main/resources/data/mineralogy/advancement/recipes/andesite_relief_i.json index 962ee17ad..a8e17e731 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/andesite_relief_i.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/andesite_relief_i.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:andesite_relief_i" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:andesite_relief_i" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:andesite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:andesite_relief_i" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:andesite_relief_i" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:andesite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/andesite_relief_left.json b/src/main/resources/data/mineralogy/advancement/recipes/andesite_relief_left.json index 0af113ed0..341f4d3ff 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/andesite_relief_left.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/andesite_relief_left.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:andesite_relief_left" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:andesite_relief_left" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:andesite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:andesite_relief_left" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:andesite_relief_left" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:andesite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/andesite_relief_pickaxe.json b/src/main/resources/data/mineralogy/advancement/recipes/andesite_relief_pickaxe.json index a9adcbb42..a2da9071c 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/andesite_relief_pickaxe.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/andesite_relief_pickaxe.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:andesite_relief_pickaxe" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:andesite_relief_pickaxe" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:andesite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:andesite_relief_pickaxe" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:andesite_relief_pickaxe" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:andesite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/andesite_relief_plus.json b/src/main/resources/data/mineralogy/advancement/recipes/andesite_relief_plus.json index 17621efce..a4fb4ec93 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/andesite_relief_plus.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/andesite_relief_plus.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:andesite_relief_plus" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:andesite_relief_plus" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:andesite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:andesite_relief_plus" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:andesite_relief_plus" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:andesite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/andesite_relief_right.json b/src/main/resources/data/mineralogy/advancement/recipes/andesite_relief_right.json index a49aa88ac..07f3bbe2c 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/andesite_relief_right.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/andesite_relief_right.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:andesite_relief_right" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:andesite_relief_right" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:andesite_relief_left" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:andesite_relief_right" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:andesite_relief_right" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:andesite_relief_left" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/andesite_relief_sword.json b/src/main/resources/data/mineralogy/advancement/recipes/andesite_relief_sword.json index af90be148..743fd92c6 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/andesite_relief_sword.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/andesite_relief_sword.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:andesite_relief_sword" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:andesite_relief_sword" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:andesite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:andesite_relief_sword" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:andesite_relief_sword" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:andesite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/andesite_relief_vertical.json b/src/main/resources/data/mineralogy/advancement/recipes/andesite_relief_vertical.json index d7ef721c0..da588b4cc 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/andesite_relief_vertical.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/andesite_relief_vertical.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:andesite_relief_vertical" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:andesite_relief_vertical" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:andesite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:andesite_relief_vertical" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:andesite_relief_vertical" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:andesite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/andesite_slab.json b/src/main/resources/data/mineralogy/advancement/recipes/andesite_slab.json index afddf2194..c2c645afc 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/andesite_slab.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/andesite_slab.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:andesite_slab" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:andesite_slab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:andesite" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:andesite_slab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:andesite_slab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:andesite" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/andesite_slab_from_vanilla.json b/src/main/resources/data/mineralogy/advancement/recipes/andesite_slab_from_vanilla.json index 9ec9b76e7..ebb879282 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/andesite_slab_from_vanilla.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/andesite_slab_from_vanilla.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:andesite_slab_from_vanilla" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:andesite_slab_from_vanilla" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "minecraft:andesite_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:andesite_slab_from_vanilla" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:andesite_slab_from_vanilla" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:andesite_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/andesite_slab_to_vanilla.json b/src/main/resources/data/mineralogy/advancement/recipes/andesite_slab_to_vanilla.json index f717a5dd1..b9be0ec42 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/andesite_slab_to_vanilla.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/andesite_slab_to_vanilla.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:andesite_slab_to_vanilla" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:andesite_slab_to_vanilla" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:andesite_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:andesite_slab_to_vanilla" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:andesite_slab_to_vanilla" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:andesite_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/andesite_smooth.json b/src/main/resources/data/mineralogy/advancement/recipes/andesite_smooth.json index 740befe85..c69932aa1 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/andesite_smooth.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/andesite_smooth.json @@ -1,48 +1,46 @@ { - "rewards": { - "recipes": [ - "mineralogy:andesite_smooth" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:andesite_smooth" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:andesite" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:andesite_smooth" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:andesite_smooth" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:andesite" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/andesite_smooth_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/andesite_smooth_brick.json index f27f2a4cc..b4c463b6f 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/andesite_smooth_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/andesite_smooth_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:andesite_smooth_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:andesite_smooth_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/andesite/smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:andesite_smooth_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:andesite_smooth_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/andesite/smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/andesite_smooth_brick_furnace.json b/src/main/resources/data/mineralogy/advancement/recipes/andesite_smooth_brick_furnace.json index f1d2d2385..22eb7f993 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/andesite_smooth_brick_furnace.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/andesite_smooth_brick_furnace.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:andesite_smooth_brick_furnace" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:andesite_smooth_brick_furnace" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:slabs/andesite/smooth_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:andesite_smooth_brick_furnace" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:andesite_smooth_brick_furnace" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:slabs/andesite/smooth_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/andesite_smooth_brick_slab.json b/src/main/resources/data/mineralogy/advancement/recipes/andesite_smooth_brick_slab.json index 3add35bbe..4fa518e2f 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/andesite_smooth_brick_slab.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/andesite_smooth_brick_slab.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:andesite_smooth_brick_slab" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:andesite_smooth_brick_slab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:andesite_smooth_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:andesite_smooth_brick_slab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:andesite_smooth_brick_slab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:andesite_smooth_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/andesite_smooth_brick_stairs.json b/src/main/resources/data/mineralogy/advancement/recipes/andesite_smooth_brick_stairs.json index 312655fd8..0ff977637 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/andesite_smooth_brick_stairs.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/andesite_smooth_brick_stairs.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:andesite_smooth_brick_stairs" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:andesite_smooth_brick_stairs" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/andesite/smooth_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:andesite_smooth_brick_stairs" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:andesite_smooth_brick_stairs" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/andesite/smooth_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/andesite_smooth_brick_wall.json b/src/main/resources/data/mineralogy/advancement/recipes/andesite_smooth_brick_wall.json index 84e243abb..da04ca13f 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/andesite_smooth_brick_wall.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/andesite_smooth_brick_wall.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:andesite_smooth_brick_wall" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:andesite_smooth_brick_wall" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/andesite/smooth_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:andesite_smooth_brick_wall" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:andesite_smooth_brick_wall" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/andesite/smooth_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/andesite_smooth_furnace.json b/src/main/resources/data/mineralogy/advancement/recipes/andesite_smooth_furnace.json index 020088878..7e7ecad6b 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/andesite_smooth_furnace.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/andesite_smooth_furnace.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:andesite_smooth_furnace" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:andesite_smooth_furnace" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:slabs/andesite/smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:andesite_smooth_furnace" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:andesite_smooth_furnace" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:slabs/andesite/smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/andesite_smooth_slab.json b/src/main/resources/data/mineralogy/advancement/recipes/andesite_smooth_slab.json index 19d0e2974..0147ddc6c 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/andesite_smooth_slab.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/andesite_smooth_slab.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:andesite_smooth_slab" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:andesite_smooth_slab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:andesite_smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:andesite_smooth_slab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:andesite_smooth_slab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:andesite_smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/andesite_smooth_slab_from_vanilla.json b/src/main/resources/data/mineralogy/advancement/recipes/andesite_smooth_slab_from_vanilla.json index ba164769c..284c3a77c 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/andesite_smooth_slab_from_vanilla.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/andesite_smooth_slab_from_vanilla.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:andesite_smooth_slab_from_vanilla" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:andesite_smooth_slab_from_vanilla" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "minecraft:polished_andesite_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:andesite_smooth_slab_from_vanilla" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:andesite_smooth_slab_from_vanilla" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:polished_andesite_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/andesite_smooth_slab_to_vanilla.json b/src/main/resources/data/mineralogy/advancement/recipes/andesite_smooth_slab_to_vanilla.json index 51fe0f060..14d66dd43 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/andesite_smooth_slab_to_vanilla.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/andesite_smooth_slab_to_vanilla.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:andesite_smooth_slab_to_vanilla" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:andesite_smooth_slab_to_vanilla" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:andesite_smooth_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:andesite_smooth_slab_to_vanilla" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:andesite_smooth_slab_to_vanilla" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:andesite_smooth_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/andesite_smooth_stairs.json b/src/main/resources/data/mineralogy/advancement/recipes/andesite_smooth_stairs.json index ea167f6c4..295e78c06 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/andesite_smooth_stairs.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/andesite_smooth_stairs.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:andesite_smooth_stairs" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:andesite_smooth_stairs" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:andesite_smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:andesite_smooth_stairs" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:andesite_smooth_stairs" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:andesite_smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/andesite_smooth_wall.json b/src/main/resources/data/mineralogy/advancement/recipes/andesite_smooth_wall.json index 5d477a837..6ee4111be 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/andesite_smooth_wall.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/andesite_smooth_wall.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:andesite_smooth_wall" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:andesite_smooth_wall" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/andesite/smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:andesite_smooth_wall" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:andesite_smooth_wall" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/andesite/smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/andesite_stairs.json b/src/main/resources/data/mineralogy/advancement/recipes/andesite_stairs.json index 82c5ea3ae..86cbe751f 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/andesite_stairs.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/andesite_stairs.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:andesite_stairs" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:andesite_stairs" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:andesite" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:andesite_stairs" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:andesite_stairs" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:andesite" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/andesite_to_stone.json b/src/main/resources/data/mineralogy/advancement/recipes/andesite_to_stone.json index ba84f16b2..efe262f1b 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/andesite_to_stone.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/andesite_to_stone.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:andesite_to_stone" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:andesite_to_stone" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:andesite" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:andesite_to_stone" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:andesite_to_stone" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:andesite" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/andesite_wall.json b/src/main/resources/data/mineralogy/advancement/recipes/andesite_wall.json index 3554f17ef..aae999ccf 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/andesite_wall.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/andesite_wall.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:andesite_wall" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:andesite_wall" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:andesite" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:andesite_wall" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:andesite_wall" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:andesite" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/basalt_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/basalt_brick.json index a86b469f2..e55937147 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/basalt_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/basalt_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:basalt_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:basalt_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/basalt" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:basalt_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:basalt_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/basalt" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/basalt_brick_block_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/basalt_brick_block_polishing.json index 5a49d7b26..8d5c3105e 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/basalt_brick_block_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/basalt_brick_block_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:basalt_brick_block_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:basalt_brick_block_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:basalt_brick" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:basalt_brick_block_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:basalt_brick_block_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:basalt_brick" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/basalt_brick_furnace.json b/src/main/resources/data/mineralogy/advancement/recipes/basalt_brick_furnace.json index 2697feae7..4a8dc1401 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/basalt_brick_furnace.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/basalt_brick_furnace.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:basalt_brick_furnace" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:basalt_brick_furnace" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:slabs/basalt/brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:basalt_brick_furnace" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:basalt_brick_furnace" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:slabs/basalt/brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/basalt_brick_slab.json b/src/main/resources/data/mineralogy/advancement/recipes/basalt_brick_slab.json index ea025b06c..8bb395fef 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/basalt_brick_slab.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/basalt_brick_slab.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:basalt_brick_slab" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:basalt_brick_slab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:basalt_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:basalt_brick_slab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:basalt_brick_slab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:basalt_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/basalt_brick_slab_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/basalt_brick_slab_polishing.json index c9cb0dd51..7b6879873 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/basalt_brick_slab_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/basalt_brick_slab_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:basalt_brick_slab_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:basalt_brick_slab_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:basalt_brick_slab" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:basalt_brick_slab_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:basalt_brick_slab_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:basalt_brick_slab" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/basalt_brick_slab_recombination.json b/src/main/resources/data/mineralogy/advancement/recipes/basalt_brick_slab_recombination.json index b1f239e8e..e4ebed614 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/basalt_brick_slab_recombination.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/basalt_brick_slab_recombination.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:basalt_brick_slab_recombination" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:basalt_brick_slab_recombination" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:basalt_brick_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:basalt_brick_slab_recombination" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:basalt_brick_slab_recombination" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:basalt_brick_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/basalt_brick_stairs.json b/src/main/resources/data/mineralogy/advancement/recipes/basalt_brick_stairs.json index 7d9bfa549..c6d8ff1fe 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/basalt_brick_stairs.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/basalt_brick_stairs.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:basalt_brick_stairs" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:basalt_brick_stairs" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/basalt/brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:basalt_brick_stairs" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:basalt_brick_stairs" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/basalt/brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/basalt_brick_stairs_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/basalt_brick_stairs_polishing.json index afb49ee7a..e5b1e4ce5 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/basalt_brick_stairs_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/basalt_brick_stairs_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:basalt_brick_stairs_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:basalt_brick_stairs_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:basalt_brick_stairs" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:basalt_brick_stairs_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:basalt_brick_stairs_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:basalt_brick_stairs" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/basalt_brick_wall.json b/src/main/resources/data/mineralogy/advancement/recipes/basalt_brick_wall.json index e69ce0f14..186ecf718 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/basalt_brick_wall.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/basalt_brick_wall.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:basalt_brick_wall" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:basalt_brick_wall" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/basalt/brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:basalt_brick_wall" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:basalt_brick_wall" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/basalt/brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/basalt_brick_wall_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/basalt_brick_wall_polishing.json index b6bb9b43e..9bb4826ef 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/basalt_brick_wall_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/basalt_brick_wall_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:basalt_brick_wall_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:basalt_brick_wall_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:basalt_brick_wall" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:basalt_brick_wall_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:basalt_brick_wall_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:basalt_brick_wall" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/basalt_cobblestone.json b/src/main/resources/data/mineralogy/advancement/recipes/basalt_cobblestone.json index 3c5c28d57..5daca7e3a 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/basalt_cobblestone.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/basalt_cobblestone.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:basalt_cobblestone" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:basalt_cobblestone" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/basalt" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:basalt_cobblestone" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:basalt_cobblestone" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/basalt" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/basalt_furnace.json b/src/main/resources/data/mineralogy/advancement/recipes/basalt_furnace.json index 5f2feb236..e363f74a3 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/basalt_furnace.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/basalt_furnace.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:basalt_furnace" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:basalt_furnace" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:slabs/basalt" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:basalt_furnace" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:basalt_furnace" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:slabs/basalt" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/basalt_polished_brick_slab_recombination.json b/src/main/resources/data/mineralogy/advancement/recipes/basalt_polished_brick_slab_recombination.json index fdba77068..6a7f51c9e 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/basalt_polished_brick_slab_recombination.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/basalt_polished_brick_slab_recombination.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:basalt_polished_brick_slab_recombination" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:basalt_polished_brick_slab_recombination" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:basalt_smooth_brick_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:basalt_polished_brick_slab_recombination" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:basalt_polished_brick_slab_recombination" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:basalt_smooth_brick_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/basalt_polished_slab_recombination.json b/src/main/resources/data/mineralogy/advancement/recipes/basalt_polished_slab_recombination.json index b1beab40b..735fa1bf4 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/basalt_polished_slab_recombination.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/basalt_polished_slab_recombination.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:basalt_polished_slab_recombination" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:basalt_polished_slab_recombination" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:basalt_smooth_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:basalt_polished_slab_recombination" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:basalt_polished_slab_recombination" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:basalt_smooth_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/basalt_polished_slabs_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/basalt_polished_slabs_to_brick.json index 8fa3b25f7..fbff8e8ce 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/basalt_polished_slabs_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/basalt_polished_slabs_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:basalt_polished_slabs_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:basalt_polished_slabs_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:basalt_smooth_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:basalt_polished_slabs_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:basalt_polished_slabs_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:basalt_smooth_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/basalt_polished_stairs_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/basalt_polished_stairs_to_brick.json index 5297b65f7..c09556230 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/basalt_polished_stairs_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/basalt_polished_stairs_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:basalt_polished_stairs_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:basalt_polished_stairs_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:basalt_smooth_stairs" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:basalt_polished_stairs_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:basalt_polished_stairs_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:basalt_smooth_stairs" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/basalt_polished_walls_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/basalt_polished_walls_to_brick.json index b899ac1ea..de98a32df 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/basalt_polished_walls_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/basalt_polished_walls_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:basalt_polished_walls_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:basalt_polished_walls_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:basalt_smooth_wall" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:basalt_polished_walls_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:basalt_polished_walls_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:basalt_smooth_wall" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/basalt_raw_slab_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/basalt_raw_slab_polishing.json index 18aa07933..0bd496f20 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/basalt_raw_slab_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/basalt_raw_slab_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:basalt_raw_slab_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:basalt_raw_slab_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:basalt_slab" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:basalt_raw_slab_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:basalt_raw_slab_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:basalt_slab" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/basalt_raw_slab_recombination.json b/src/main/resources/data/mineralogy/advancement/recipes/basalt_raw_slab_recombination.json index 70d3b112c..9c3f9d1b1 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/basalt_raw_slab_recombination.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/basalt_raw_slab_recombination.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:basalt_raw_slab_recombination" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:basalt_raw_slab_recombination" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:basalt_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:basalt_raw_slab_recombination" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:basalt_raw_slab_recombination" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:basalt_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/basalt_raw_slabs_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/basalt_raw_slabs_to_brick.json index 85166fce7..8262e52f0 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/basalt_raw_slabs_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/basalt_raw_slabs_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:basalt_raw_slabs_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:basalt_raw_slabs_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:basalt_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:basalt_raw_slabs_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:basalt_raw_slabs_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:basalt_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/basalt_raw_stairs_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/basalt_raw_stairs_polishing.json index 87057c6c8..aa5542e65 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/basalt_raw_stairs_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/basalt_raw_stairs_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:basalt_raw_stairs_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:basalt_raw_stairs_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:basalt_stairs" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:basalt_raw_stairs_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:basalt_raw_stairs_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:basalt_stairs" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/basalt_raw_stairs_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/basalt_raw_stairs_to_brick.json index bda9a8a74..575ca95da 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/basalt_raw_stairs_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/basalt_raw_stairs_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:basalt_raw_stairs_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:basalt_raw_stairs_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:basalt_stairs" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:basalt_raw_stairs_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:basalt_raw_stairs_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:basalt_stairs" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/basalt_raw_wall_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/basalt_raw_wall_polishing.json index 3b99b5f7e..a81604531 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/basalt_raw_wall_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/basalt_raw_wall_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:basalt_raw_wall_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:basalt_raw_wall_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:basalt_wall" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:basalt_raw_wall_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:basalt_raw_wall_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:basalt_wall" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/basalt_raw_walls_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/basalt_raw_walls_to_brick.json index fee6812f7..7299044b8 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/basalt_raw_walls_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/basalt_raw_walls_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:basalt_raw_walls_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:basalt_raw_walls_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:basalt_wall" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:basalt_raw_walls_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:basalt_raw_walls_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:basalt_wall" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/basalt_relief_axe.json b/src/main/resources/data/mineralogy/advancement/recipes/basalt_relief_axe.json index c70845288..13bef265d 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/basalt_relief_axe.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/basalt_relief_axe.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:basalt_relief_axe" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:basalt_relief_axe" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:basalt_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:basalt_relief_axe" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:basalt_relief_axe" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:basalt_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/basalt_relief_blank.json b/src/main/resources/data/mineralogy/advancement/recipes/basalt_relief_blank.json index 5cfa9062b..4840f9085 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/basalt_relief_blank.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/basalt_relief_blank.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:basalt_relief_blank" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:basalt_relief_blank" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/basalt/smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:basalt_relief_blank" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:basalt_relief_blank" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/basalt/smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/basalt_relief_cross.json b/src/main/resources/data/mineralogy/advancement/recipes/basalt_relief_cross.json index 4522fbff6..6cd0eabb7 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/basalt_relief_cross.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/basalt_relief_cross.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:basalt_relief_cross" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:basalt_relief_cross" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:basalt_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:basalt_relief_cross" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:basalt_relief_cross" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:basalt_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/basalt_relief_hammer.json b/src/main/resources/data/mineralogy/advancement/recipes/basalt_relief_hammer.json index 0efd66c0a..2bac9f815 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/basalt_relief_hammer.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/basalt_relief_hammer.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:basalt_relief_hammer" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:basalt_relief_hammer" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:basalt_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:basalt_relief_hammer" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:basalt_relief_hammer" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:basalt_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/basalt_relief_hoe.json b/src/main/resources/data/mineralogy/advancement/recipes/basalt_relief_hoe.json index 454640931..928b0f9fb 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/basalt_relief_hoe.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/basalt_relief_hoe.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:basalt_relief_hoe" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:basalt_relief_hoe" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:basalt_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:basalt_relief_hoe" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:basalt_relief_hoe" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:basalt_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/basalt_relief_horizontal.json b/src/main/resources/data/mineralogy/advancement/recipes/basalt_relief_horizontal.json index 2c47563f3..7c050c488 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/basalt_relief_horizontal.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/basalt_relief_horizontal.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:basalt_relief_horizontal" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:basalt_relief_horizontal" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:basalt_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:basalt_relief_horizontal" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:basalt_relief_horizontal" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:basalt_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/basalt_relief_i.json b/src/main/resources/data/mineralogy/advancement/recipes/basalt_relief_i.json index 5bd0fbd49..be2e494cc 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/basalt_relief_i.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/basalt_relief_i.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:basalt_relief_i" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:basalt_relief_i" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:basalt_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:basalt_relief_i" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:basalt_relief_i" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:basalt_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/basalt_relief_left.json b/src/main/resources/data/mineralogy/advancement/recipes/basalt_relief_left.json index db9bd861e..7ea0e137d 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/basalt_relief_left.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/basalt_relief_left.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:basalt_relief_left" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:basalt_relief_left" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:basalt_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:basalt_relief_left" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:basalt_relief_left" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:basalt_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/basalt_relief_pickaxe.json b/src/main/resources/data/mineralogy/advancement/recipes/basalt_relief_pickaxe.json index bea1410db..3d80d37f4 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/basalt_relief_pickaxe.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/basalt_relief_pickaxe.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:basalt_relief_pickaxe" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:basalt_relief_pickaxe" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:basalt_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:basalt_relief_pickaxe" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:basalt_relief_pickaxe" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:basalt_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/basalt_relief_plus.json b/src/main/resources/data/mineralogy/advancement/recipes/basalt_relief_plus.json index b58b87787..04801624e 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/basalt_relief_plus.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/basalt_relief_plus.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:basalt_relief_plus" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:basalt_relief_plus" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:basalt_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:basalt_relief_plus" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:basalt_relief_plus" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:basalt_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/basalt_relief_right.json b/src/main/resources/data/mineralogy/advancement/recipes/basalt_relief_right.json index cad99bb6a..66c9747a6 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/basalt_relief_right.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/basalt_relief_right.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:basalt_relief_right" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:basalt_relief_right" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:basalt_relief_left" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:basalt_relief_right" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:basalt_relief_right" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:basalt_relief_left" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/basalt_relief_sword.json b/src/main/resources/data/mineralogy/advancement/recipes/basalt_relief_sword.json index d6116f461..35cc32735 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/basalt_relief_sword.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/basalt_relief_sword.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:basalt_relief_sword" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:basalt_relief_sword" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:basalt_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:basalt_relief_sword" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:basalt_relief_sword" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:basalt_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/basalt_relief_vertical.json b/src/main/resources/data/mineralogy/advancement/recipes/basalt_relief_vertical.json index a99c8f20f..f231d6f6e 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/basalt_relief_vertical.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/basalt_relief_vertical.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:basalt_relief_vertical" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:basalt_relief_vertical" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:basalt_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:basalt_relief_vertical" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:basalt_relief_vertical" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:basalt_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/basalt_slab.json b/src/main/resources/data/mineralogy/advancement/recipes/basalt_slab.json index 00bc356c0..2c06b4de0 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/basalt_slab.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/basalt_slab.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:basalt_slab" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:basalt_slab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/basalt" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:basalt_slab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:basalt_slab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/basalt" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/basalt_smooth.json b/src/main/resources/data/mineralogy/advancement/recipes/basalt_smooth.json index 9b7b48307..e303d4d70 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/basalt_smooth.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/basalt_smooth.json @@ -1,48 +1,46 @@ { - "rewards": { - "recipes": [ - "mineralogy:basalt_smooth" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:basalt_smooth" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:basalt" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:basalt_smooth" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:basalt_smooth" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:basalt" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/basalt_smooth_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/basalt_smooth_brick.json index af3afb6d1..d1cdd8f65 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/basalt_smooth_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/basalt_smooth_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:basalt_smooth_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:basalt_smooth_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/basalt/smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:basalt_smooth_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:basalt_smooth_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/basalt/smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/basalt_smooth_brick_furnace.json b/src/main/resources/data/mineralogy/advancement/recipes/basalt_smooth_brick_furnace.json index f43b9534e..ae1bf960c 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/basalt_smooth_brick_furnace.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/basalt_smooth_brick_furnace.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:basalt_smooth_brick_furnace" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:basalt_smooth_brick_furnace" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:slabs/basalt/smooth_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:basalt_smooth_brick_furnace" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:basalt_smooth_brick_furnace" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:slabs/basalt/smooth_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/basalt_smooth_brick_slab.json b/src/main/resources/data/mineralogy/advancement/recipes/basalt_smooth_brick_slab.json index e31857a98..6b9a3a3fb 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/basalt_smooth_brick_slab.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/basalt_smooth_brick_slab.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:basalt_smooth_brick_slab" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:basalt_smooth_brick_slab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:basalt_smooth_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:basalt_smooth_brick_slab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:basalt_smooth_brick_slab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:basalt_smooth_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/basalt_smooth_brick_stairs.json b/src/main/resources/data/mineralogy/advancement/recipes/basalt_smooth_brick_stairs.json index ab56a3950..eed09afa1 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/basalt_smooth_brick_stairs.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/basalt_smooth_brick_stairs.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:basalt_smooth_brick_stairs" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:basalt_smooth_brick_stairs" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/basalt/smooth_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:basalt_smooth_brick_stairs" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:basalt_smooth_brick_stairs" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/basalt/smooth_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/basalt_smooth_brick_wall.json b/src/main/resources/data/mineralogy/advancement/recipes/basalt_smooth_brick_wall.json index 619736da6..632d043b2 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/basalt_smooth_brick_wall.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/basalt_smooth_brick_wall.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:basalt_smooth_brick_wall" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:basalt_smooth_brick_wall" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/basalt/smooth_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:basalt_smooth_brick_wall" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:basalt_smooth_brick_wall" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/basalt/smooth_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/basalt_smooth_furnace.json b/src/main/resources/data/mineralogy/advancement/recipes/basalt_smooth_furnace.json index 8b6179c65..74e2eacf4 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/basalt_smooth_furnace.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/basalt_smooth_furnace.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:basalt_smooth_furnace" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:basalt_smooth_furnace" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:slabs/basalt/smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:basalt_smooth_furnace" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:basalt_smooth_furnace" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:slabs/basalt/smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/basalt_smooth_slab.json b/src/main/resources/data/mineralogy/advancement/recipes/basalt_smooth_slab.json index 291b83cdd..92fc232b9 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/basalt_smooth_slab.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/basalt_smooth_slab.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:basalt_smooth_slab" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:basalt_smooth_slab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/basalt/smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:basalt_smooth_slab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:basalt_smooth_slab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/basalt/smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/basalt_smooth_stairs.json b/src/main/resources/data/mineralogy/advancement/recipes/basalt_smooth_stairs.json index 9e4207e3d..51903714d 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/basalt_smooth_stairs.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/basalt_smooth_stairs.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:basalt_smooth_stairs" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:basalt_smooth_stairs" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/basalt/smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:basalt_smooth_stairs" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:basalt_smooth_stairs" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/basalt/smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/basalt_smooth_wall.json b/src/main/resources/data/mineralogy/advancement/recipes/basalt_smooth_wall.json index 36cb303e0..14d50bfa6 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/basalt_smooth_wall.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/basalt_smooth_wall.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:basalt_smooth_wall" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:basalt_smooth_wall" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/basalt/smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:basalt_smooth_wall" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:basalt_smooth_wall" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/basalt/smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/basalt_stairs.json b/src/main/resources/data/mineralogy/advancement/recipes/basalt_stairs.json index 180bc0bfc..9a1618870 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/basalt_stairs.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/basalt_stairs.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:basalt_stairs" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:basalt_stairs" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/basalt" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:basalt_stairs" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:basalt_stairs" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/basalt" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/basalt_to_stone.json b/src/main/resources/data/mineralogy/advancement/recipes/basalt_to_stone.json index 159634247..47d4d59ba 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/basalt_to_stone.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/basalt_to_stone.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:basalt_to_stone" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:basalt_to_stone" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:basalt" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:basalt_to_stone" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:basalt_to_stone" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:basalt" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/basalt_wall.json b/src/main/resources/data/mineralogy/advancement/recipes/basalt_wall.json index 411eb2b15..3f5a95cee 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/basalt_wall.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/basalt_wall.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:basalt_wall" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:basalt_wall" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/basalt" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:basalt_wall" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:basalt_wall" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/basalt" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_brick.json index 7586dfd3e..9c936f98e 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:basaltic_glass_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:basaltic_glass_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/basaltic_glass" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:basaltic_glass_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:basaltic_glass_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/basaltic_glass" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_brick_block_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_brick_block_polishing.json index f1f9ef5da..cebb7e695 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_brick_block_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_brick_block_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:basaltic_glass_brick_block_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:basaltic_glass_brick_block_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:basaltic_glass_brick" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:basaltic_glass_brick_block_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:basaltic_glass_brick_block_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:basaltic_glass_brick" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_brick_furnace.json b/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_brick_furnace.json index 6b15b1e5d..5e93defc3 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_brick_furnace.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_brick_furnace.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:basaltic_glass_brick_furnace" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:basaltic_glass_brick_furnace" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:slabs/basaltic_glass/brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:basaltic_glass_brick_furnace" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:basaltic_glass_brick_furnace" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:slabs/basaltic_glass/brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_brick_slab.json b/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_brick_slab.json index 98cf62406..f7f1f3dc1 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_brick_slab.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_brick_slab.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:basaltic_glass_brick_slab" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:basaltic_glass_brick_slab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:basaltic_glass_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:basaltic_glass_brick_slab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:basaltic_glass_brick_slab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:basaltic_glass_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_brick_slab_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_brick_slab_polishing.json index ace9153a0..1c845a3a6 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_brick_slab_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_brick_slab_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:basaltic_glass_brick_slab_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:basaltic_glass_brick_slab_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:basaltic_glass_brick_slab" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:basaltic_glass_brick_slab_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:basaltic_glass_brick_slab_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:basaltic_glass_brick_slab" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_brick_slab_recombination.json b/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_brick_slab_recombination.json index 772bbde45..651e5c484 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_brick_slab_recombination.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_brick_slab_recombination.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:basaltic_glass_brick_slab_recombination" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:basaltic_glass_brick_slab_recombination" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:basaltic_glass_brick_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:basaltic_glass_brick_slab_recombination" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:basaltic_glass_brick_slab_recombination" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:basaltic_glass_brick_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_brick_stairs.json b/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_brick_stairs.json index f82d0a803..27a0b119a 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_brick_stairs.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_brick_stairs.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:basaltic_glass_brick_stairs" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:basaltic_glass_brick_stairs" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/basaltic_glass/brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:basaltic_glass_brick_stairs" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:basaltic_glass_brick_stairs" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/basaltic_glass/brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_brick_stairs_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_brick_stairs_polishing.json index 5eed7876a..1dddaa524 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_brick_stairs_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_brick_stairs_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:basaltic_glass_brick_stairs_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:basaltic_glass_brick_stairs_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:basaltic_glass_brick_stairs" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:basaltic_glass_brick_stairs_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:basaltic_glass_brick_stairs_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:basaltic_glass_brick_stairs" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_brick_wall.json b/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_brick_wall.json index 9ce494c74..baecd5b60 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_brick_wall.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_brick_wall.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:basaltic_glass_brick_wall" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:basaltic_glass_brick_wall" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/basaltic_glass/brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:basaltic_glass_brick_wall" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:basaltic_glass_brick_wall" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/basaltic_glass/brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_brick_wall_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_brick_wall_polishing.json index 4e79361e8..e993f6770 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_brick_wall_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_brick_wall_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:basaltic_glass_brick_wall_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:basaltic_glass_brick_wall_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:basaltic_glass_brick_wall" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:basaltic_glass_brick_wall_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:basaltic_glass_brick_wall_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:basaltic_glass_brick_wall" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_cobblestone.json b/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_cobblestone.json index 484b957b7..6f14cfe8f 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_cobblestone.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_cobblestone.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:basaltic_glass_cobblestone" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:basaltic_glass_cobblestone" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/basaltic_glass" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:basaltic_glass_cobblestone" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:basaltic_glass_cobblestone" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/basaltic_glass" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_furnace.json b/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_furnace.json index be50b1625..a1876f536 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_furnace.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_furnace.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:basaltic_glass_furnace" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:basaltic_glass_furnace" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:slabs/basaltic_glass" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:basaltic_glass_furnace" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:basaltic_glass_furnace" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:slabs/basaltic_glass" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_polished_brick_slab_recombination.json b/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_polished_brick_slab_recombination.json index 73e0feea1..e048b5441 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_polished_brick_slab_recombination.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_polished_brick_slab_recombination.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:basaltic_glass_polished_brick_slab_recombination" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:basaltic_glass_polished_brick_slab_recombination" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:basaltic_glass_smooth_brick_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:basaltic_glass_polished_brick_slab_recombination" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:basaltic_glass_polished_brick_slab_recombination" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:basaltic_glass_smooth_brick_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_polished_slab_recombination.json b/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_polished_slab_recombination.json index 07a790703..8bc911059 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_polished_slab_recombination.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_polished_slab_recombination.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:basaltic_glass_polished_slab_recombination" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:basaltic_glass_polished_slab_recombination" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:basaltic_glass_smooth_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:basaltic_glass_polished_slab_recombination" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:basaltic_glass_polished_slab_recombination" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:basaltic_glass_smooth_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_polished_slabs_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_polished_slabs_to_brick.json index d095fac64..4d84c44e6 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_polished_slabs_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_polished_slabs_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:basaltic_glass_polished_slabs_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:basaltic_glass_polished_slabs_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:basaltic_glass_smooth_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:basaltic_glass_polished_slabs_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:basaltic_glass_polished_slabs_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:basaltic_glass_smooth_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_polished_stairs_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_polished_stairs_to_brick.json index 040ce0180..9c0a6f9c2 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_polished_stairs_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_polished_stairs_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:basaltic_glass_polished_stairs_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:basaltic_glass_polished_stairs_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:basaltic_glass_smooth_stairs" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:basaltic_glass_polished_stairs_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:basaltic_glass_polished_stairs_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:basaltic_glass_smooth_stairs" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_polished_walls_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_polished_walls_to_brick.json index 96bbf0002..b5c065df8 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_polished_walls_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_polished_walls_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:basaltic_glass_polished_walls_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:basaltic_glass_polished_walls_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:basaltic_glass_smooth_wall" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:basaltic_glass_polished_walls_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:basaltic_glass_polished_walls_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:basaltic_glass_smooth_wall" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_raw_slab_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_raw_slab_polishing.json index db1f2a203..57ce02351 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_raw_slab_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_raw_slab_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:basaltic_glass_raw_slab_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:basaltic_glass_raw_slab_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:basaltic_glass_slab" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:basaltic_glass_raw_slab_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:basaltic_glass_raw_slab_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:basaltic_glass_slab" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_raw_slab_recombination.json b/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_raw_slab_recombination.json index 019de1c64..d35b1d917 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_raw_slab_recombination.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_raw_slab_recombination.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:basaltic_glass_raw_slab_recombination" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:basaltic_glass_raw_slab_recombination" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:basaltic_glass_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:basaltic_glass_raw_slab_recombination" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:basaltic_glass_raw_slab_recombination" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:basaltic_glass_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_raw_slabs_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_raw_slabs_to_brick.json index 6c66c57e8..158632295 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_raw_slabs_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_raw_slabs_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:basaltic_glass_raw_slabs_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:basaltic_glass_raw_slabs_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:basaltic_glass_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:basaltic_glass_raw_slabs_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:basaltic_glass_raw_slabs_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:basaltic_glass_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_raw_stairs_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_raw_stairs_polishing.json index f39bee271..09178457a 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_raw_stairs_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_raw_stairs_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:basaltic_glass_raw_stairs_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:basaltic_glass_raw_stairs_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:basaltic_glass_stairs" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:basaltic_glass_raw_stairs_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:basaltic_glass_raw_stairs_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:basaltic_glass_stairs" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_raw_stairs_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_raw_stairs_to_brick.json index 435a539ef..bdde81923 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_raw_stairs_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_raw_stairs_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:basaltic_glass_raw_stairs_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:basaltic_glass_raw_stairs_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:basaltic_glass_stairs" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:basaltic_glass_raw_stairs_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:basaltic_glass_raw_stairs_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:basaltic_glass_stairs" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_raw_wall_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_raw_wall_polishing.json index 77e8e9b5c..7b6b12ec5 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_raw_wall_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_raw_wall_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:basaltic_glass_raw_wall_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:basaltic_glass_raw_wall_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:basaltic_glass_wall" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:basaltic_glass_raw_wall_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:basaltic_glass_raw_wall_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:basaltic_glass_wall" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_raw_walls_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_raw_walls_to_brick.json index 77b769f44..2d6b81eac 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_raw_walls_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_raw_walls_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:basaltic_glass_raw_walls_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:basaltic_glass_raw_walls_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:basaltic_glass_wall" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:basaltic_glass_raw_walls_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:basaltic_glass_raw_walls_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:basaltic_glass_wall" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_relief_axe.json b/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_relief_axe.json index a915dc361..615dcde49 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_relief_axe.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_relief_axe.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:basaltic_glass_relief_axe" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:basaltic_glass_relief_axe" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:basaltic_glass_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:basaltic_glass_relief_axe" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:basaltic_glass_relief_axe" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:basaltic_glass_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_relief_blank.json b/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_relief_blank.json index 4772570e2..15d84e7b7 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_relief_blank.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_relief_blank.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:basaltic_glass_relief_blank" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:basaltic_glass_relief_blank" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:basaltic_glass_smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:basaltic_glass_relief_blank" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:basaltic_glass_relief_blank" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:basaltic_glass_smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_relief_cross.json b/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_relief_cross.json index 97c1b1817..8efe321bb 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_relief_cross.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_relief_cross.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:basaltic_glass_relief_cross" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:basaltic_glass_relief_cross" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:basaltic_glass_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:basaltic_glass_relief_cross" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:basaltic_glass_relief_cross" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:basaltic_glass_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_relief_hammer.json b/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_relief_hammer.json index e3029dc80..ab53ebcd6 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_relief_hammer.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_relief_hammer.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:basaltic_glass_relief_hammer" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:basaltic_glass_relief_hammer" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:basaltic_glass_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:basaltic_glass_relief_hammer" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:basaltic_glass_relief_hammer" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:basaltic_glass_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_relief_hoe.json b/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_relief_hoe.json index 0d79c4d91..c4fc76aa4 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_relief_hoe.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_relief_hoe.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:basaltic_glass_relief_hoe" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:basaltic_glass_relief_hoe" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:basaltic_glass_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:basaltic_glass_relief_hoe" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:basaltic_glass_relief_hoe" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:basaltic_glass_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_relief_horizontal.json b/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_relief_horizontal.json index b360180c8..621901286 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_relief_horizontal.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_relief_horizontal.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:basaltic_glass_relief_horizontal" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:basaltic_glass_relief_horizontal" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:basaltic_glass_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:basaltic_glass_relief_horizontal" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:basaltic_glass_relief_horizontal" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:basaltic_glass_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_relief_i.json b/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_relief_i.json index f6979e5b3..ee50e099c 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_relief_i.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_relief_i.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:basaltic_glass_relief_i" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:basaltic_glass_relief_i" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:basaltic_glass_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:basaltic_glass_relief_i" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:basaltic_glass_relief_i" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:basaltic_glass_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_relief_left.json b/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_relief_left.json index b7570af91..8c42c0138 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_relief_left.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_relief_left.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:basaltic_glass_relief_left" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:basaltic_glass_relief_left" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:basaltic_glass_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:basaltic_glass_relief_left" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:basaltic_glass_relief_left" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:basaltic_glass_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_relief_pickaxe.json b/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_relief_pickaxe.json index b6ec52bea..4261f9337 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_relief_pickaxe.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_relief_pickaxe.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:basaltic_glass_relief_pickaxe" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:basaltic_glass_relief_pickaxe" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:basaltic_glass_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:basaltic_glass_relief_pickaxe" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:basaltic_glass_relief_pickaxe" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:basaltic_glass_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_relief_plus.json b/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_relief_plus.json index 4215a7afe..57c84e4d4 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_relief_plus.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_relief_plus.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:basaltic_glass_relief_plus" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:basaltic_glass_relief_plus" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:basaltic_glass_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:basaltic_glass_relief_plus" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:basaltic_glass_relief_plus" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:basaltic_glass_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_relief_right.json b/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_relief_right.json index 24967ec46..7524414fe 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_relief_right.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_relief_right.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:basaltic_glass_relief_right" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:basaltic_glass_relief_right" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:basaltic_glass_relief_left" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:basaltic_glass_relief_right" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:basaltic_glass_relief_right" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:basaltic_glass_relief_left" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_relief_sword.json b/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_relief_sword.json index 2d244f703..c59a55ed1 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_relief_sword.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_relief_sword.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:basaltic_glass_relief_sword" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:basaltic_glass_relief_sword" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:basaltic_glass_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:basaltic_glass_relief_sword" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:basaltic_glass_relief_sword" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:basaltic_glass_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_relief_vertical.json b/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_relief_vertical.json index 89ce8195c..5635d4f5a 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_relief_vertical.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_relief_vertical.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:basaltic_glass_relief_vertical" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:basaltic_glass_relief_vertical" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:basaltic_glass_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:basaltic_glass_relief_vertical" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:basaltic_glass_relief_vertical" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:basaltic_glass_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_slab.json b/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_slab.json index b4dfb40b9..3b9bc4fce 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_slab.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_slab.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:basaltic_glass_slab" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:basaltic_glass_slab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:basaltic_glass" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:basaltic_glass_slab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:basaltic_glass_slab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:basaltic_glass" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_smooth.json b/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_smooth.json index ce3ea527b..995a60174 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_smooth.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_smooth.json @@ -1,48 +1,46 @@ { - "rewards": { - "recipes": [ - "mineralogy:basaltic_glass_smooth" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:basaltic_glass_smooth" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/basaltic_glass" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:basaltic_glass_smooth" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:basaltic_glass_smooth" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/basaltic_glass" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_smooth_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_smooth_brick.json index c81c11daf..62ab32104 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_smooth_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_smooth_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:basaltic_glass_smooth_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:basaltic_glass_smooth_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/basaltic_glass/smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:basaltic_glass_smooth_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:basaltic_glass_smooth_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/basaltic_glass/smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_smooth_brick_furnace.json b/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_smooth_brick_furnace.json index 3b26d6e30..241ee0cf9 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_smooth_brick_furnace.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_smooth_brick_furnace.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:basaltic_glass_smooth_brick_furnace" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:basaltic_glass_smooth_brick_furnace" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:slabs/basaltic_glass/smooth_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:basaltic_glass_smooth_brick_furnace" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:basaltic_glass_smooth_brick_furnace" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:slabs/basaltic_glass/smooth_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_smooth_brick_slab.json b/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_smooth_brick_slab.json index eab4ad1ba..a50008665 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_smooth_brick_slab.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_smooth_brick_slab.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:basaltic_glass_smooth_brick_slab" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:basaltic_glass_smooth_brick_slab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:basaltic_glass_smooth_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:basaltic_glass_smooth_brick_slab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:basaltic_glass_smooth_brick_slab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:basaltic_glass_smooth_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_smooth_brick_stairs.json b/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_smooth_brick_stairs.json index a1057346d..a81b30bf7 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_smooth_brick_stairs.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_smooth_brick_stairs.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:basaltic_glass_smooth_brick_stairs" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:basaltic_glass_smooth_brick_stairs" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/basaltic_glass/smooth_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:basaltic_glass_smooth_brick_stairs" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:basaltic_glass_smooth_brick_stairs" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/basaltic_glass/smooth_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_smooth_brick_wall.json b/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_smooth_brick_wall.json index be80ca07e..146540079 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_smooth_brick_wall.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_smooth_brick_wall.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:basaltic_glass_smooth_brick_wall" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:basaltic_glass_smooth_brick_wall" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/basaltic_glass/smooth_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:basaltic_glass_smooth_brick_wall" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:basaltic_glass_smooth_brick_wall" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/basaltic_glass/smooth_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_smooth_furnace.json b/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_smooth_furnace.json index 9866ecc68..04ed17749 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_smooth_furnace.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_smooth_furnace.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:basaltic_glass_smooth_furnace" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:basaltic_glass_smooth_furnace" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:slabs/basaltic_glass/smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:basaltic_glass_smooth_furnace" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:basaltic_glass_smooth_furnace" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:slabs/basaltic_glass/smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_smooth_slab.json b/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_smooth_slab.json index c8fc282db..fae3e6ea9 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_smooth_slab.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_smooth_slab.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:basaltic_glass_smooth_slab" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:basaltic_glass_smooth_slab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:basaltic_glass_smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:basaltic_glass_smooth_slab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:basaltic_glass_smooth_slab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:basaltic_glass_smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_smooth_stairs.json b/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_smooth_stairs.json index db4ad425b..78996ee9e 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_smooth_stairs.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_smooth_stairs.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:basaltic_glass_smooth_stairs" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:basaltic_glass_smooth_stairs" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/basaltic_glass/smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:basaltic_glass_smooth_stairs" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:basaltic_glass_smooth_stairs" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/basaltic_glass/smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_smooth_wall.json b/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_smooth_wall.json index 096c7d378..6885c9459 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_smooth_wall.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_smooth_wall.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:basaltic_glass_smooth_wall" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:basaltic_glass_smooth_wall" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/basaltic_glass/smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:basaltic_glass_smooth_wall" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:basaltic_glass_smooth_wall" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/basaltic_glass/smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_stairs.json b/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_stairs.json index 9162b5243..6c087bf3b 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_stairs.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_stairs.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:basaltic_glass_stairs" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:basaltic_glass_stairs" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/basaltic_glass" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:basaltic_glass_stairs" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:basaltic_glass_stairs" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/basaltic_glass" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_to_stone.json b/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_to_stone.json index 554ffe8a0..ee42ce25e 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_to_stone.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_to_stone.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:basaltic_glass_to_stone" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:basaltic_glass_to_stone" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:basaltic_glass" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:basaltic_glass_to_stone" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:basaltic_glass_to_stone" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:basaltic_glass" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_wall.json b/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_wall.json index b0178f1c6..2735d6cea 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_wall.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/basaltic_glass_wall.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:basaltic_glass_wall" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:basaltic_glass_wall" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/basaltic_glass" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:basaltic_glass_wall" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:basaltic_glass_wall" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/basaltic_glass" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/chalk.json b/src/main/resources/data/mineralogy/advancement/recipes/chalk.json index b88222a7d..52463269c 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/chalk.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/chalk.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:chalk" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:chalk" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:chalk_dust" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:chalk" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:chalk" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:chalk_dust" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/chalk_dust.json b/src/main/resources/data/mineralogy/advancement/recipes/chalk_dust.json index b1167fa71..98be2abc9 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/chalk_dust.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/chalk_dust.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:chalk_dust" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:chalk_dust" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:chalk" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:chalk_dust" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:chalk_dust" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:chalk" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/cobblestone.json b/src/main/resources/data/mineralogy/advancement/recipes/cobblestone.json index 6c13bf52a..7840b5958 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/cobblestone.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/cobblestone.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:cobblestone" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:cobblestone" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "minecraft:stone" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:cobblestone" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:cobblestone" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:stone" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_brick.json index c901048ef..ce9a6df40 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:conglomerate_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:conglomerate_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/conglomerate" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:conglomerate_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:conglomerate_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/conglomerate" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_brick_block_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_brick_block_polishing.json index ff9b93a3a..00bbd2d66 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_brick_block_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_brick_block_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:conglomerate_brick_block_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:conglomerate_brick_block_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:conglomerate_brick" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:conglomerate_brick_block_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:conglomerate_brick_block_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:conglomerate_brick" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_brick_furnace.json b/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_brick_furnace.json index c96c6454d..69ca5bbc5 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_brick_furnace.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_brick_furnace.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:conglomerate_brick_furnace" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:conglomerate_brick_furnace" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:slabs/conglomerate/brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:conglomerate_brick_furnace" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:conglomerate_brick_furnace" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:slabs/conglomerate/brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_brick_slab.json b/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_brick_slab.json index 6032078a2..8d2364c20 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_brick_slab.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_brick_slab.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:conglomerate_brick_slab" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:conglomerate_brick_slab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:conglomerate_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:conglomerate_brick_slab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:conglomerate_brick_slab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:conglomerate_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_brick_slab_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_brick_slab_polishing.json index f3c0a39d4..b9a1345de 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_brick_slab_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_brick_slab_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:conglomerate_brick_slab_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:conglomerate_brick_slab_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:conglomerate_brick_slab" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:conglomerate_brick_slab_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:conglomerate_brick_slab_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:conglomerate_brick_slab" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_brick_slab_recombination.json b/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_brick_slab_recombination.json index 694f4a517..0722f971d 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_brick_slab_recombination.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_brick_slab_recombination.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:conglomerate_brick_slab_recombination" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:conglomerate_brick_slab_recombination" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:conglomerate_brick_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:conglomerate_brick_slab_recombination" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:conglomerate_brick_slab_recombination" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:conglomerate_brick_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_brick_stairs.json b/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_brick_stairs.json index e1ead64da..a0509ffb4 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_brick_stairs.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_brick_stairs.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:conglomerate_brick_stairs" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:conglomerate_brick_stairs" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/conglomerate/brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:conglomerate_brick_stairs" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:conglomerate_brick_stairs" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/conglomerate/brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_brick_stairs_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_brick_stairs_polishing.json index a3b6affef..389c48b8d 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_brick_stairs_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_brick_stairs_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:conglomerate_brick_stairs_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:conglomerate_brick_stairs_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:conglomerate_brick_stairs" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:conglomerate_brick_stairs_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:conglomerate_brick_stairs_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:conglomerate_brick_stairs" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_brick_wall.json b/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_brick_wall.json index 6b5e6abf3..2ca3591e5 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_brick_wall.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_brick_wall.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:conglomerate_brick_wall" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:conglomerate_brick_wall" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/conglomerate/brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:conglomerate_brick_wall" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:conglomerate_brick_wall" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/conglomerate/brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_brick_wall_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_brick_wall_polishing.json index f5d780333..2fa8aee6b 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_brick_wall_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_brick_wall_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:conglomerate_brick_wall_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:conglomerate_brick_wall_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:conglomerate_brick_wall" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:conglomerate_brick_wall_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:conglomerate_brick_wall_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:conglomerate_brick_wall" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_cobblestone.json b/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_cobblestone.json index 2e42245ae..d67c0b239 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_cobblestone.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_cobblestone.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:conglomerate_cobblestone" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:conglomerate_cobblestone" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/conglomerate" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:conglomerate_cobblestone" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:conglomerate_cobblestone" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/conglomerate" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_furnace.json b/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_furnace.json index ec1add3b7..0bfe19506 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_furnace.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_furnace.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:conglomerate_furnace" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:conglomerate_furnace" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:slabs/conglomerate" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:conglomerate_furnace" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:conglomerate_furnace" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:slabs/conglomerate" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_polished_brick_slab_recombination.json b/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_polished_brick_slab_recombination.json index 28a8213c1..26b403850 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_polished_brick_slab_recombination.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_polished_brick_slab_recombination.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:conglomerate_polished_brick_slab_recombination" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:conglomerate_polished_brick_slab_recombination" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:conglomerate_smooth_brick_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:conglomerate_polished_brick_slab_recombination" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:conglomerate_polished_brick_slab_recombination" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:conglomerate_smooth_brick_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_polished_slab_recombination.json b/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_polished_slab_recombination.json index 6a228a37d..843f6c5ce 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_polished_slab_recombination.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_polished_slab_recombination.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:conglomerate_polished_slab_recombination" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:conglomerate_polished_slab_recombination" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:conglomerate_smooth_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:conglomerate_polished_slab_recombination" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:conglomerate_polished_slab_recombination" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:conglomerate_smooth_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_polished_slabs_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_polished_slabs_to_brick.json index 9298fc779..07e16b836 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_polished_slabs_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_polished_slabs_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:conglomerate_polished_slabs_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:conglomerate_polished_slabs_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:conglomerate_smooth_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:conglomerate_polished_slabs_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:conglomerate_polished_slabs_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:conglomerate_smooth_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_polished_stairs_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_polished_stairs_to_brick.json index 734a5e436..619464bc4 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_polished_stairs_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_polished_stairs_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:conglomerate_polished_stairs_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:conglomerate_polished_stairs_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:conglomerate_smooth_stairs" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:conglomerate_polished_stairs_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:conglomerate_polished_stairs_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:conglomerate_smooth_stairs" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_polished_walls_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_polished_walls_to_brick.json index 14d2b7b88..7904355b6 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_polished_walls_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_polished_walls_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:conglomerate_polished_walls_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:conglomerate_polished_walls_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:conglomerate_smooth_wall" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:conglomerate_polished_walls_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:conglomerate_polished_walls_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:conglomerate_smooth_wall" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_raw_slab_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_raw_slab_polishing.json index ae9f47c34..6aecbe73e 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_raw_slab_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_raw_slab_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:conglomerate_raw_slab_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:conglomerate_raw_slab_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:conglomerate_slab" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:conglomerate_raw_slab_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:conglomerate_raw_slab_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:conglomerate_slab" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_raw_slab_recombination.json b/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_raw_slab_recombination.json index 54a2dff2d..d1b4ac56c 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_raw_slab_recombination.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_raw_slab_recombination.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:conglomerate_raw_slab_recombination" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:conglomerate_raw_slab_recombination" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:conglomerate_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:conglomerate_raw_slab_recombination" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:conglomerate_raw_slab_recombination" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:conglomerate_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_raw_slabs_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_raw_slabs_to_brick.json index a1a3ca457..43da0c963 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_raw_slabs_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_raw_slabs_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:conglomerate_raw_slabs_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:conglomerate_raw_slabs_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:conglomerate_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:conglomerate_raw_slabs_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:conglomerate_raw_slabs_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:conglomerate_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_raw_stairs_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_raw_stairs_polishing.json index 8be874075..ed59094d1 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_raw_stairs_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_raw_stairs_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:conglomerate_raw_stairs_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:conglomerate_raw_stairs_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:conglomerate_stairs" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:conglomerate_raw_stairs_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:conglomerate_raw_stairs_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:conglomerate_stairs" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_raw_stairs_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_raw_stairs_to_brick.json index 47d3f23e1..719b8e5e0 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_raw_stairs_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_raw_stairs_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:conglomerate_raw_stairs_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:conglomerate_raw_stairs_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:conglomerate_stairs" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:conglomerate_raw_stairs_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:conglomerate_raw_stairs_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:conglomerate_stairs" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_raw_wall_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_raw_wall_polishing.json index e69f223ef..924bfc863 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_raw_wall_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_raw_wall_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:conglomerate_raw_wall_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:conglomerate_raw_wall_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:conglomerate_wall" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:conglomerate_raw_wall_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:conglomerate_raw_wall_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:conglomerate_wall" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_raw_walls_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_raw_walls_to_brick.json index 523ff83e5..bfcf072f9 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_raw_walls_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_raw_walls_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:conglomerate_raw_walls_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:conglomerate_raw_walls_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:conglomerate_wall" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:conglomerate_raw_walls_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:conglomerate_raw_walls_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:conglomerate_wall" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_relief_axe.json b/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_relief_axe.json index a9ae135da..9c0e80066 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_relief_axe.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_relief_axe.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:conglomerate_relief_axe" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:conglomerate_relief_axe" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:conglomerate_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:conglomerate_relief_axe" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:conglomerate_relief_axe" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:conglomerate_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_relief_blank.json b/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_relief_blank.json index b3a96fdd2..89a386e3c 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_relief_blank.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_relief_blank.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:conglomerate_relief_blank" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:conglomerate_relief_blank" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:conglomerate_smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:conglomerate_relief_blank" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:conglomerate_relief_blank" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:conglomerate_smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_relief_cross.json b/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_relief_cross.json index d70738e39..9b138581a 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_relief_cross.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_relief_cross.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:conglomerate_relief_cross" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:conglomerate_relief_cross" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:conglomerate_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:conglomerate_relief_cross" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:conglomerate_relief_cross" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:conglomerate_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_relief_hammer.json b/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_relief_hammer.json index 8fe47c529..cd7a5b2e9 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_relief_hammer.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_relief_hammer.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:conglomerate_relief_hammer" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:conglomerate_relief_hammer" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:conglomerate_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:conglomerate_relief_hammer" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:conglomerate_relief_hammer" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:conglomerate_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_relief_hoe.json b/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_relief_hoe.json index c5ba37ecb..5f4b29bc4 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_relief_hoe.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_relief_hoe.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:conglomerate_relief_hoe" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:conglomerate_relief_hoe" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:conglomerate_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:conglomerate_relief_hoe" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:conglomerate_relief_hoe" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:conglomerate_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_relief_horizontal.json b/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_relief_horizontal.json index b6bad07fc..2ba1e8daa 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_relief_horizontal.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_relief_horizontal.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:conglomerate_relief_horizontal" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:conglomerate_relief_horizontal" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:conglomerate_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:conglomerate_relief_horizontal" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:conglomerate_relief_horizontal" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:conglomerate_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_relief_i.json b/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_relief_i.json index 7f8cc9f7f..13f9a1e3b 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_relief_i.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_relief_i.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:conglomerate_relief_i" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:conglomerate_relief_i" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:conglomerate_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:conglomerate_relief_i" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:conglomerate_relief_i" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:conglomerate_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_relief_left.json b/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_relief_left.json index 0b7bff628..ecf842df9 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_relief_left.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_relief_left.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:conglomerate_relief_left" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:conglomerate_relief_left" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:conglomerate_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:conglomerate_relief_left" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:conglomerate_relief_left" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:conglomerate_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_relief_pickaxe.json b/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_relief_pickaxe.json index a910864a9..cc711762a 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_relief_pickaxe.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_relief_pickaxe.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:conglomerate_relief_pickaxe" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:conglomerate_relief_pickaxe" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:conglomerate_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:conglomerate_relief_pickaxe" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:conglomerate_relief_pickaxe" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:conglomerate_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_relief_plus.json b/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_relief_plus.json index 6688723b8..70fea337f 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_relief_plus.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_relief_plus.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:conglomerate_relief_plus" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:conglomerate_relief_plus" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:conglomerate_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:conglomerate_relief_plus" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:conglomerate_relief_plus" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:conglomerate_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_relief_right.json b/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_relief_right.json index ab095920e..9dfe3955b 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_relief_right.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_relief_right.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:conglomerate_relief_right" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:conglomerate_relief_right" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:conglomerate_relief_left" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:conglomerate_relief_right" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:conglomerate_relief_right" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:conglomerate_relief_left" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_relief_sword.json b/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_relief_sword.json index e5989543b..901cc51db 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_relief_sword.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_relief_sword.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:conglomerate_relief_sword" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:conglomerate_relief_sword" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:conglomerate_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:conglomerate_relief_sword" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:conglomerate_relief_sword" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:conglomerate_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_relief_vertical.json b/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_relief_vertical.json index 9ae1b0c3a..11cba6ad9 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_relief_vertical.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_relief_vertical.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:conglomerate_relief_vertical" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:conglomerate_relief_vertical" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:conglomerate_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:conglomerate_relief_vertical" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:conglomerate_relief_vertical" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:conglomerate_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_slab.json b/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_slab.json index 41b7981b7..f3eae3d77 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_slab.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_slab.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:conglomerate_slab" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:conglomerate_slab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:conglomerate" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:conglomerate_slab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:conglomerate_slab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:conglomerate" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_smooth.json b/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_smooth.json index 002722a21..d37f503b6 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_smooth.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_smooth.json @@ -1,48 +1,46 @@ { - "rewards": { - "recipes": [ - "mineralogy:conglomerate_smooth" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:conglomerate_smooth" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/conglomerate" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:conglomerate_smooth" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:conglomerate_smooth" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/conglomerate" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_smooth_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_smooth_brick.json index 2ae10c278..61df64437 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_smooth_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_smooth_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:conglomerate_smooth_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:conglomerate_smooth_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/conglomerate/smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:conglomerate_smooth_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:conglomerate_smooth_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/conglomerate/smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_smooth_brick_furnace.json b/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_smooth_brick_furnace.json index d12a341a9..610bcb0b7 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_smooth_brick_furnace.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_smooth_brick_furnace.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:conglomerate_smooth_brick_furnace" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:conglomerate_smooth_brick_furnace" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:slabs/conglomerate/smooth_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:conglomerate_smooth_brick_furnace" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:conglomerate_smooth_brick_furnace" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:slabs/conglomerate/smooth_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_smooth_brick_slab.json b/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_smooth_brick_slab.json index c79c7da3f..f879a117a 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_smooth_brick_slab.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_smooth_brick_slab.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:conglomerate_smooth_brick_slab" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:conglomerate_smooth_brick_slab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:conglomerate_smooth_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:conglomerate_smooth_brick_slab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:conglomerate_smooth_brick_slab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:conglomerate_smooth_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_smooth_brick_stairs.json b/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_smooth_brick_stairs.json index b4ccb3f39..d4aa88c1a 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_smooth_brick_stairs.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_smooth_brick_stairs.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:conglomerate_smooth_brick_stairs" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:conglomerate_smooth_brick_stairs" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/conglomerate/smooth_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:conglomerate_smooth_brick_stairs" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:conglomerate_smooth_brick_stairs" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/conglomerate/smooth_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_smooth_brick_wall.json b/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_smooth_brick_wall.json index 0c0b36068..88901e8f8 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_smooth_brick_wall.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_smooth_brick_wall.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:conglomerate_smooth_brick_wall" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:conglomerate_smooth_brick_wall" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/conglomerate/smooth_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:conglomerate_smooth_brick_wall" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:conglomerate_smooth_brick_wall" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/conglomerate/smooth_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_smooth_furnace.json b/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_smooth_furnace.json index 7c44f36a4..cfd967b3c 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_smooth_furnace.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_smooth_furnace.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:conglomerate_smooth_furnace" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:conglomerate_smooth_furnace" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:slabs/conglomerate/smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:conglomerate_smooth_furnace" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:conglomerate_smooth_furnace" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:slabs/conglomerate/smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_smooth_slab.json b/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_smooth_slab.json index 79a0dc8f4..44494d98d 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_smooth_slab.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_smooth_slab.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:conglomerate_smooth_slab" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:conglomerate_smooth_slab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:conglomerate_smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:conglomerate_smooth_slab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:conglomerate_smooth_slab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:conglomerate_smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_smooth_stairs.json b/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_smooth_stairs.json index 37ecb15cd..de605c170 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_smooth_stairs.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_smooth_stairs.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:conglomerate_smooth_stairs" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:conglomerate_smooth_stairs" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/conglomerate/smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:conglomerate_smooth_stairs" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:conglomerate_smooth_stairs" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/conglomerate/smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_smooth_wall.json b/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_smooth_wall.json index e5d003f4e..e7bda534b 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_smooth_wall.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_smooth_wall.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:conglomerate_smooth_wall" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:conglomerate_smooth_wall" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/conglomerate/smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:conglomerate_smooth_wall" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:conglomerate_smooth_wall" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/conglomerate/smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_stairs.json b/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_stairs.json index fdcda5c4b..6bd3a5ed7 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_stairs.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_stairs.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:conglomerate_stairs" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:conglomerate_stairs" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/conglomerate" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:conglomerate_stairs" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:conglomerate_stairs" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/conglomerate" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_to_stone.json b/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_to_stone.json index e3bef2197..884845844 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_to_stone.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_to_stone.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:conglomerate_to_stone" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:conglomerate_to_stone" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:conglomerate" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:conglomerate_to_stone" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:conglomerate_to_stone" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:conglomerate" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_wall.json b/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_wall.json index cb2ac814b..0f253436c 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_wall.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/conglomerate_wall.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:conglomerate_wall" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:conglomerate_wall" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/conglomerate" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:conglomerate_wall" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:conglomerate_wall" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/conglomerate" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/diabase_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/diabase_brick.json index 476ca64e4..6c36032bf 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/diabase_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/diabase_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:diabase_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:diabase_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/diabase" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:diabase_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:diabase_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/diabase" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/diabase_brick_block_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/diabase_brick_block_polishing.json index e26237a86..2b1fbc89f 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/diabase_brick_block_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/diabase_brick_block_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:diabase_brick_block_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:diabase_brick_block_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:diabase_brick" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:diabase_brick_block_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:diabase_brick_block_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:diabase_brick" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/diabase_brick_furnace.json b/src/main/resources/data/mineralogy/advancement/recipes/diabase_brick_furnace.json index fdbd94a0d..13e396356 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/diabase_brick_furnace.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/diabase_brick_furnace.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:diabase_brick_furnace" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:diabase_brick_furnace" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:slabs/diabase/brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:diabase_brick_furnace" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:diabase_brick_furnace" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:slabs/diabase/brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/diabase_brick_slab.json b/src/main/resources/data/mineralogy/advancement/recipes/diabase_brick_slab.json index 3b2ee31f3..5cbe23aec 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/diabase_brick_slab.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/diabase_brick_slab.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:diabase_brick_slab" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:diabase_brick_slab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:diabase_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:diabase_brick_slab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:diabase_brick_slab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:diabase_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/diabase_brick_slab_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/diabase_brick_slab_polishing.json index c370717cd..bf3dea6d9 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/diabase_brick_slab_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/diabase_brick_slab_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:diabase_brick_slab_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:diabase_brick_slab_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:diabase_brick_slab" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:diabase_brick_slab_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:diabase_brick_slab_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:diabase_brick_slab" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/diabase_brick_slab_recombination.json b/src/main/resources/data/mineralogy/advancement/recipes/diabase_brick_slab_recombination.json index d08d7a22e..1de066e18 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/diabase_brick_slab_recombination.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/diabase_brick_slab_recombination.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:diabase_brick_slab_recombination" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:diabase_brick_slab_recombination" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:diabase_brick_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:diabase_brick_slab_recombination" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:diabase_brick_slab_recombination" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:diabase_brick_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/diabase_brick_stairs.json b/src/main/resources/data/mineralogy/advancement/recipes/diabase_brick_stairs.json index 5a599ee45..a11fba04d 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/diabase_brick_stairs.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/diabase_brick_stairs.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:diabase_brick_stairs" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:diabase_brick_stairs" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/diabase/brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:diabase_brick_stairs" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:diabase_brick_stairs" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/diabase/brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/diabase_brick_stairs_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/diabase_brick_stairs_polishing.json index 9d15b5a5c..6a90d57ce 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/diabase_brick_stairs_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/diabase_brick_stairs_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:diabase_brick_stairs_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:diabase_brick_stairs_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:diabase_brick_stairs" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:diabase_brick_stairs_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:diabase_brick_stairs_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:diabase_brick_stairs" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/diabase_brick_wall.json b/src/main/resources/data/mineralogy/advancement/recipes/diabase_brick_wall.json index 1be4d99a3..d69f97a10 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/diabase_brick_wall.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/diabase_brick_wall.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:diabase_brick_wall" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:diabase_brick_wall" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/diabase/brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:diabase_brick_wall" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:diabase_brick_wall" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/diabase/brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/diabase_brick_wall_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/diabase_brick_wall_polishing.json index c13b46ada..690538c9e 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/diabase_brick_wall_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/diabase_brick_wall_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:diabase_brick_wall_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:diabase_brick_wall_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:diabase_brick_wall" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:diabase_brick_wall_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:diabase_brick_wall_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:diabase_brick_wall" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/diabase_cobblestone.json b/src/main/resources/data/mineralogy/advancement/recipes/diabase_cobblestone.json index 203730db2..fbbd86918 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/diabase_cobblestone.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/diabase_cobblestone.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:diabase_cobblestone" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:diabase_cobblestone" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/diabase" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:diabase_cobblestone" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:diabase_cobblestone" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/diabase" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/diabase_furnace.json b/src/main/resources/data/mineralogy/advancement/recipes/diabase_furnace.json index 7dcbebb1f..ab3c749b8 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/diabase_furnace.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/diabase_furnace.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:diabase_furnace" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:diabase_furnace" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:slabs/diabase" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:diabase_furnace" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:diabase_furnace" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:slabs/diabase" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/diabase_polished_brick_slab_recombination.json b/src/main/resources/data/mineralogy/advancement/recipes/diabase_polished_brick_slab_recombination.json index d416b2934..49e0dee0b 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/diabase_polished_brick_slab_recombination.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/diabase_polished_brick_slab_recombination.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:diabase_polished_brick_slab_recombination" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:diabase_polished_brick_slab_recombination" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:diabase_smooth_brick_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:diabase_polished_brick_slab_recombination" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:diabase_polished_brick_slab_recombination" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:diabase_smooth_brick_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/diabase_polished_slab_recombination.json b/src/main/resources/data/mineralogy/advancement/recipes/diabase_polished_slab_recombination.json index 9d6f88bb6..f882c9ef5 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/diabase_polished_slab_recombination.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/diabase_polished_slab_recombination.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:diabase_polished_slab_recombination" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:diabase_polished_slab_recombination" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:diabase_smooth_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:diabase_polished_slab_recombination" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:diabase_polished_slab_recombination" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:diabase_smooth_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/diabase_polished_slabs_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/diabase_polished_slabs_to_brick.json index db3b1be97..95bd340ca 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/diabase_polished_slabs_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/diabase_polished_slabs_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:diabase_polished_slabs_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:diabase_polished_slabs_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:diabase_smooth_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:diabase_polished_slabs_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:diabase_polished_slabs_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:diabase_smooth_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/diabase_polished_stairs_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/diabase_polished_stairs_to_brick.json index 73f47ba3f..10efb2042 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/diabase_polished_stairs_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/diabase_polished_stairs_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:diabase_polished_stairs_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:diabase_polished_stairs_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:diabase_smooth_stairs" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:diabase_polished_stairs_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:diabase_polished_stairs_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:diabase_smooth_stairs" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/diabase_polished_walls_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/diabase_polished_walls_to_brick.json index 1ae68ace3..38123d339 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/diabase_polished_walls_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/diabase_polished_walls_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:diabase_polished_walls_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:diabase_polished_walls_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:diabase_smooth_wall" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:diabase_polished_walls_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:diabase_polished_walls_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:diabase_smooth_wall" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/diabase_raw_slab_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/diabase_raw_slab_polishing.json index 6b138aea8..abe75d6a1 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/diabase_raw_slab_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/diabase_raw_slab_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:diabase_raw_slab_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:diabase_raw_slab_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:diabase_slab" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:diabase_raw_slab_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:diabase_raw_slab_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:diabase_slab" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/diabase_raw_slab_recombination.json b/src/main/resources/data/mineralogy/advancement/recipes/diabase_raw_slab_recombination.json index 7d8d0b4bb..10d75abad 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/diabase_raw_slab_recombination.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/diabase_raw_slab_recombination.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:diabase_raw_slab_recombination" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:diabase_raw_slab_recombination" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:diabase_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:diabase_raw_slab_recombination" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:diabase_raw_slab_recombination" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:diabase_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/diabase_raw_slabs_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/diabase_raw_slabs_to_brick.json index 5a833127a..937b4f1b3 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/diabase_raw_slabs_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/diabase_raw_slabs_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:diabase_raw_slabs_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:diabase_raw_slabs_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:diabase_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:diabase_raw_slabs_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:diabase_raw_slabs_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:diabase_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/diabase_raw_stairs_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/diabase_raw_stairs_polishing.json index ec7f6133d..6f8fcdb02 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/diabase_raw_stairs_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/diabase_raw_stairs_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:diabase_raw_stairs_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:diabase_raw_stairs_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:diabase_stairs" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:diabase_raw_stairs_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:diabase_raw_stairs_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:diabase_stairs" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/diabase_raw_stairs_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/diabase_raw_stairs_to_brick.json index 5230700bf..4b769bcfa 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/diabase_raw_stairs_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/diabase_raw_stairs_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:diabase_raw_stairs_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:diabase_raw_stairs_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:diabase_stairs" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:diabase_raw_stairs_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:diabase_raw_stairs_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:diabase_stairs" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/diabase_raw_wall_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/diabase_raw_wall_polishing.json index e7ed245ea..3405052b9 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/diabase_raw_wall_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/diabase_raw_wall_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:diabase_raw_wall_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:diabase_raw_wall_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:diabase_wall" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:diabase_raw_wall_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:diabase_raw_wall_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:diabase_wall" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/diabase_raw_walls_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/diabase_raw_walls_to_brick.json index 994e3b025..3f59c4109 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/diabase_raw_walls_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/diabase_raw_walls_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:diabase_raw_walls_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:diabase_raw_walls_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:diabase_wall" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:diabase_raw_walls_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:diabase_raw_walls_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:diabase_wall" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/diabase_relief_axe.json b/src/main/resources/data/mineralogy/advancement/recipes/diabase_relief_axe.json index 381ab450f..e5a525407 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/diabase_relief_axe.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/diabase_relief_axe.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:diabase_relief_axe" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:diabase_relief_axe" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:diabase_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:diabase_relief_axe" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:diabase_relief_axe" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:diabase_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/diabase_relief_blank.json b/src/main/resources/data/mineralogy/advancement/recipes/diabase_relief_blank.json index ccfe41181..3704a45fd 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/diabase_relief_blank.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/diabase_relief_blank.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:diabase_relief_blank" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:diabase_relief_blank" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:diabase_smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:diabase_relief_blank" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:diabase_relief_blank" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:diabase_smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/diabase_relief_cross.json b/src/main/resources/data/mineralogy/advancement/recipes/diabase_relief_cross.json index edeaa70b9..f1197311d 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/diabase_relief_cross.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/diabase_relief_cross.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:diabase_relief_cross" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:diabase_relief_cross" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:diabase_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:diabase_relief_cross" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:diabase_relief_cross" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:diabase_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/diabase_relief_hammer.json b/src/main/resources/data/mineralogy/advancement/recipes/diabase_relief_hammer.json index 6bf6a0a22..80b952391 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/diabase_relief_hammer.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/diabase_relief_hammer.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:diabase_relief_hammer" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:diabase_relief_hammer" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:diabase_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:diabase_relief_hammer" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:diabase_relief_hammer" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:diabase_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/diabase_relief_hoe.json b/src/main/resources/data/mineralogy/advancement/recipes/diabase_relief_hoe.json index 4ce231b89..8e3c890f3 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/diabase_relief_hoe.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/diabase_relief_hoe.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:diabase_relief_hoe" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:diabase_relief_hoe" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:diabase_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:diabase_relief_hoe" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:diabase_relief_hoe" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:diabase_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/diabase_relief_horizontal.json b/src/main/resources/data/mineralogy/advancement/recipes/diabase_relief_horizontal.json index 8185e2c85..c17c68c41 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/diabase_relief_horizontal.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/diabase_relief_horizontal.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:diabase_relief_horizontal" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:diabase_relief_horizontal" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:diabase_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:diabase_relief_horizontal" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:diabase_relief_horizontal" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:diabase_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/diabase_relief_i.json b/src/main/resources/data/mineralogy/advancement/recipes/diabase_relief_i.json index 99bf0b821..7f7cb4ee0 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/diabase_relief_i.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/diabase_relief_i.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:diabase_relief_i" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:diabase_relief_i" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:diabase_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:diabase_relief_i" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:diabase_relief_i" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:diabase_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/diabase_relief_left.json b/src/main/resources/data/mineralogy/advancement/recipes/diabase_relief_left.json index 0ae50a444..c4c64981b 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/diabase_relief_left.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/diabase_relief_left.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:diabase_relief_left" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:diabase_relief_left" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:diabase_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:diabase_relief_left" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:diabase_relief_left" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:diabase_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/diabase_relief_pickaxe.json b/src/main/resources/data/mineralogy/advancement/recipes/diabase_relief_pickaxe.json index d6a6d9eb4..f137f6b79 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/diabase_relief_pickaxe.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/diabase_relief_pickaxe.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:diabase_relief_pickaxe" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:diabase_relief_pickaxe" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:diabase_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:diabase_relief_pickaxe" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:diabase_relief_pickaxe" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:diabase_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/diabase_relief_plus.json b/src/main/resources/data/mineralogy/advancement/recipes/diabase_relief_plus.json index 0b53afbfd..a2c1b7096 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/diabase_relief_plus.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/diabase_relief_plus.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:diabase_relief_plus" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:diabase_relief_plus" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:diabase_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:diabase_relief_plus" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:diabase_relief_plus" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:diabase_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/diabase_relief_right.json b/src/main/resources/data/mineralogy/advancement/recipes/diabase_relief_right.json index ebaae42af..1870e8482 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/diabase_relief_right.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/diabase_relief_right.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:diabase_relief_right" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:diabase_relief_right" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:diabase_relief_left" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:diabase_relief_right" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:diabase_relief_right" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:diabase_relief_left" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/diabase_relief_sword.json b/src/main/resources/data/mineralogy/advancement/recipes/diabase_relief_sword.json index 5d929b16e..a70fcbfab 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/diabase_relief_sword.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/diabase_relief_sword.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:diabase_relief_sword" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:diabase_relief_sword" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:diabase_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:diabase_relief_sword" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:diabase_relief_sword" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:diabase_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/diabase_relief_vertical.json b/src/main/resources/data/mineralogy/advancement/recipes/diabase_relief_vertical.json index de13597b2..d5f1cd230 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/diabase_relief_vertical.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/diabase_relief_vertical.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:diabase_relief_vertical" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:diabase_relief_vertical" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:diabase_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:diabase_relief_vertical" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:diabase_relief_vertical" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:diabase_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/diabase_slab.json b/src/main/resources/data/mineralogy/advancement/recipes/diabase_slab.json index ae4ef181b..83b96fbcb 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/diabase_slab.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/diabase_slab.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:diabase_slab" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:diabase_slab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:diabase" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:diabase_slab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:diabase_slab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:diabase" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/diabase_smooth.json b/src/main/resources/data/mineralogy/advancement/recipes/diabase_smooth.json index c79368e7a..48bf4734f 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/diabase_smooth.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/diabase_smooth.json @@ -1,48 +1,46 @@ { - "rewards": { - "recipes": [ - "mineralogy:diabase_smooth" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:diabase_smooth" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/diabase" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:diabase_smooth" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:diabase_smooth" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/diabase" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/diabase_smooth_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/diabase_smooth_brick.json index a608ef893..2316dc3ab 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/diabase_smooth_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/diabase_smooth_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:diabase_smooth_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:diabase_smooth_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/diabase/smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:diabase_smooth_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:diabase_smooth_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/diabase/smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/diabase_smooth_brick_furnace.json b/src/main/resources/data/mineralogy/advancement/recipes/diabase_smooth_brick_furnace.json index e2481205b..4191120a3 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/diabase_smooth_brick_furnace.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/diabase_smooth_brick_furnace.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:diabase_smooth_brick_furnace" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:diabase_smooth_brick_furnace" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:slabs/diabase/smooth_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:diabase_smooth_brick_furnace" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:diabase_smooth_brick_furnace" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:slabs/diabase/smooth_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/diabase_smooth_brick_slab.json b/src/main/resources/data/mineralogy/advancement/recipes/diabase_smooth_brick_slab.json index 1f4fb1e7b..f8a9189aa 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/diabase_smooth_brick_slab.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/diabase_smooth_brick_slab.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:diabase_smooth_brick_slab" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:diabase_smooth_brick_slab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:diabase_smooth_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:diabase_smooth_brick_slab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:diabase_smooth_brick_slab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:diabase_smooth_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/diabase_smooth_brick_stairs.json b/src/main/resources/data/mineralogy/advancement/recipes/diabase_smooth_brick_stairs.json index 637d14d01..0132b3744 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/diabase_smooth_brick_stairs.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/diabase_smooth_brick_stairs.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:diabase_smooth_brick_stairs" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:diabase_smooth_brick_stairs" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/diabase/smooth_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:diabase_smooth_brick_stairs" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:diabase_smooth_brick_stairs" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/diabase/smooth_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/diabase_smooth_brick_wall.json b/src/main/resources/data/mineralogy/advancement/recipes/diabase_smooth_brick_wall.json index b29a1fe23..cede92518 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/diabase_smooth_brick_wall.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/diabase_smooth_brick_wall.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:diabase_smooth_brick_wall" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:diabase_smooth_brick_wall" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/diabase/smooth_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:diabase_smooth_brick_wall" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:diabase_smooth_brick_wall" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/diabase/smooth_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/diabase_smooth_furnace.json b/src/main/resources/data/mineralogy/advancement/recipes/diabase_smooth_furnace.json index 129618a75..38709a4cd 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/diabase_smooth_furnace.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/diabase_smooth_furnace.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:diabase_smooth_furnace" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:diabase_smooth_furnace" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:slabs/diabase/smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:diabase_smooth_furnace" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:diabase_smooth_furnace" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:slabs/diabase/smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/diabase_smooth_slab.json b/src/main/resources/data/mineralogy/advancement/recipes/diabase_smooth_slab.json index 6fad49dd5..c03927455 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/diabase_smooth_slab.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/diabase_smooth_slab.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:diabase_smooth_slab" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:diabase_smooth_slab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:diabase_smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:diabase_smooth_slab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:diabase_smooth_slab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:diabase_smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/diabase_smooth_stairs.json b/src/main/resources/data/mineralogy/advancement/recipes/diabase_smooth_stairs.json index e0161123c..69defdd05 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/diabase_smooth_stairs.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/diabase_smooth_stairs.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:diabase_smooth_stairs" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:diabase_smooth_stairs" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/diabase/smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:diabase_smooth_stairs" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:diabase_smooth_stairs" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/diabase/smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/diabase_smooth_wall.json b/src/main/resources/data/mineralogy/advancement/recipes/diabase_smooth_wall.json index 7f3f31860..a84777c4b 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/diabase_smooth_wall.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/diabase_smooth_wall.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:diabase_smooth_wall" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:diabase_smooth_wall" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/diabase/smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:diabase_smooth_wall" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:diabase_smooth_wall" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/diabase/smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/diabase_stairs.json b/src/main/resources/data/mineralogy/advancement/recipes/diabase_stairs.json index c0da36823..90cc2020c 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/diabase_stairs.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/diabase_stairs.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:diabase_stairs" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:diabase_stairs" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/diabase" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:diabase_stairs" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:diabase_stairs" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/diabase" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/diabase_to_stone.json b/src/main/resources/data/mineralogy/advancement/recipes/diabase_to_stone.json index 0b28d5d49..7bafedfa9 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/diabase_to_stone.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/diabase_to_stone.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:diabase_to_stone" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:diabase_to_stone" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:diabase" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:diabase_to_stone" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:diabase_to_stone" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:diabase" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/diabase_wall.json b/src/main/resources/data/mineralogy/advancement/recipes/diabase_wall.json index 7148154fc..6115846df 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/diabase_wall.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/diabase_wall.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:diabase_wall" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:diabase_wall" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/diabase" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:diabase_wall" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:diabase_wall" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/diabase" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/diorite_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/diorite_brick.json index fea22b3ce..e61b6b23f 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/diorite_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/diorite_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:diorite_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:diorite_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/diorite" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:diorite_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:diorite_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/diorite" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/diorite_brick_block_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/diorite_brick_block_polishing.json index 63fa92c53..88dcf0a8b 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/diorite_brick_block_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/diorite_brick_block_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:diorite_brick_block_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:diorite_brick_block_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:diorite_brick" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:diorite_brick_block_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:diorite_brick_block_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:diorite_brick" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/diorite_brick_furnace.json b/src/main/resources/data/mineralogy/advancement/recipes/diorite_brick_furnace.json index 171fd0e3b..f8efcee08 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/diorite_brick_furnace.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/diorite_brick_furnace.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:diorite_brick_furnace" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:diorite_brick_furnace" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:slabs/diorite/brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:diorite_brick_furnace" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:diorite_brick_furnace" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:slabs/diorite/brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/diorite_brick_slab.json b/src/main/resources/data/mineralogy/advancement/recipes/diorite_brick_slab.json index 5f878dcec..2872d5137 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/diorite_brick_slab.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/diorite_brick_slab.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:diorite_brick_slab" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:diorite_brick_slab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:diorite_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:diorite_brick_slab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:diorite_brick_slab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:diorite_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/diorite_brick_slab_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/diorite_brick_slab_polishing.json index d50e05d81..81cf127d9 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/diorite_brick_slab_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/diorite_brick_slab_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:diorite_brick_slab_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:diorite_brick_slab_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:diorite_brick_slab" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:diorite_brick_slab_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:diorite_brick_slab_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:diorite_brick_slab" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/diorite_brick_slab_recombination.json b/src/main/resources/data/mineralogy/advancement/recipes/diorite_brick_slab_recombination.json index bd4999d68..81009bfa8 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/diorite_brick_slab_recombination.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/diorite_brick_slab_recombination.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:diorite_brick_slab_recombination" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:diorite_brick_slab_recombination" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:diorite_brick_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:diorite_brick_slab_recombination" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:diorite_brick_slab_recombination" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:diorite_brick_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/diorite_brick_stairs.json b/src/main/resources/data/mineralogy/advancement/recipes/diorite_brick_stairs.json index 4049918e3..ee6ff7227 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/diorite_brick_stairs.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/diorite_brick_stairs.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:diorite_brick_stairs" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:diorite_brick_stairs" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/diorite/brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:diorite_brick_stairs" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:diorite_brick_stairs" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/diorite/brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/diorite_brick_stairs_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/diorite_brick_stairs_polishing.json index a54419cea..40c6e62cb 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/diorite_brick_stairs_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/diorite_brick_stairs_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:diorite_brick_stairs_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:diorite_brick_stairs_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:diorite_brick_stairs" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:diorite_brick_stairs_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:diorite_brick_stairs_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:diorite_brick_stairs" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/diorite_brick_wall.json b/src/main/resources/data/mineralogy/advancement/recipes/diorite_brick_wall.json index f77e44a3c..bcc3dfe58 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/diorite_brick_wall.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/diorite_brick_wall.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:diorite_brick_wall" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:diorite_brick_wall" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/diorite/brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:diorite_brick_wall" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:diorite_brick_wall" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/diorite/brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/diorite_brick_wall_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/diorite_brick_wall_polishing.json index a36172179..c2a08113f 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/diorite_brick_wall_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/diorite_brick_wall_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:diorite_brick_wall_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:diorite_brick_wall_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:diorite_brick_wall" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:diorite_brick_wall_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:diorite_brick_wall_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:diorite_brick_wall" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/diorite_cobblestone.json b/src/main/resources/data/mineralogy/advancement/recipes/diorite_cobblestone.json index 535c42b35..2bbc60143 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/diorite_cobblestone.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/diorite_cobblestone.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:diorite_cobblestone" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:diorite_cobblestone" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/diorite" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:diorite_cobblestone" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:diorite_cobblestone" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/diorite" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/diorite_furnace.json b/src/main/resources/data/mineralogy/advancement/recipes/diorite_furnace.json index 4daf1d15a..4c43de2f8 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/diorite_furnace.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/diorite_furnace.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:diorite_furnace" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:diorite_furnace" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:slabs/diorite" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:diorite_furnace" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:diorite_furnace" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:slabs/diorite" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/diorite_polished_brick_slab_recombination.json b/src/main/resources/data/mineralogy/advancement/recipes/diorite_polished_brick_slab_recombination.json index 4c8d551af..506ebeb2a 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/diorite_polished_brick_slab_recombination.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/diorite_polished_brick_slab_recombination.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:diorite_polished_brick_slab_recombination" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:diorite_polished_brick_slab_recombination" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:diorite_smooth_brick_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:diorite_polished_brick_slab_recombination" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:diorite_polished_brick_slab_recombination" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:diorite_smooth_brick_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/diorite_polished_slab_recombination.json b/src/main/resources/data/mineralogy/advancement/recipes/diorite_polished_slab_recombination.json index 5804415e3..e7916125b 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/diorite_polished_slab_recombination.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/diorite_polished_slab_recombination.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:diorite_polished_slab_recombination" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:diorite_polished_slab_recombination" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:diorite_smooth_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:diorite_polished_slab_recombination" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:diorite_polished_slab_recombination" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:diorite_smooth_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/diorite_polished_slabs_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/diorite_polished_slabs_to_brick.json index 09e49ec97..d1a8cca5b 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/diorite_polished_slabs_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/diorite_polished_slabs_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:diorite_polished_slabs_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:diorite_polished_slabs_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:diorite_smooth_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:diorite_polished_slabs_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:diorite_polished_slabs_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:diorite_smooth_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/diorite_polished_stairs_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/diorite_polished_stairs_to_brick.json index 96fa87576..2e2f7345a 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/diorite_polished_stairs_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/diorite_polished_stairs_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:diorite_polished_stairs_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:diorite_polished_stairs_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:diorite_smooth_stairs" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:diorite_polished_stairs_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:diorite_polished_stairs_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:diorite_smooth_stairs" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/diorite_polished_walls_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/diorite_polished_walls_to_brick.json index 88232e256..3b36b0aa5 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/diorite_polished_walls_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/diorite_polished_walls_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:diorite_polished_walls_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:diorite_polished_walls_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:diorite_smooth_wall" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:diorite_polished_walls_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:diorite_polished_walls_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:diorite_smooth_wall" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/diorite_raw_slab_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/diorite_raw_slab_polishing.json index 9e7ccd7d3..9fc45dbc5 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/diorite_raw_slab_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/diorite_raw_slab_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:diorite_raw_slab_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:diorite_raw_slab_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:diorite_slab" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:diorite_raw_slab_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:diorite_raw_slab_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:diorite_slab" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/diorite_raw_slab_recombination.json b/src/main/resources/data/mineralogy/advancement/recipes/diorite_raw_slab_recombination.json index db03f840f..01a41fbc4 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/diorite_raw_slab_recombination.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/diorite_raw_slab_recombination.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:diorite_raw_slab_recombination" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:diorite_raw_slab_recombination" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:diorite_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:diorite_raw_slab_recombination" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:diorite_raw_slab_recombination" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:diorite_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/diorite_raw_slabs_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/diorite_raw_slabs_to_brick.json index cd31328fe..33a74b07a 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/diorite_raw_slabs_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/diorite_raw_slabs_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:diorite_raw_slabs_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:diorite_raw_slabs_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:diorite_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:diorite_raw_slabs_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:diorite_raw_slabs_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:diorite_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/diorite_raw_stairs_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/diorite_raw_stairs_polishing.json index 15f558d44..78e4b934d 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/diorite_raw_stairs_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/diorite_raw_stairs_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:diorite_raw_stairs_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:diorite_raw_stairs_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:diorite_stairs" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:diorite_raw_stairs_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:diorite_raw_stairs_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:diorite_stairs" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/diorite_raw_stairs_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/diorite_raw_stairs_to_brick.json index 7ccafb9f1..f631a4aef 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/diorite_raw_stairs_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/diorite_raw_stairs_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:diorite_raw_stairs_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:diorite_raw_stairs_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:diorite_stairs" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:diorite_raw_stairs_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:diorite_raw_stairs_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:diorite_stairs" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/diorite_raw_wall_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/diorite_raw_wall_polishing.json index d6552275a..2e4efca1a 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/diorite_raw_wall_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/diorite_raw_wall_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:diorite_raw_wall_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:diorite_raw_wall_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:diorite_wall" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:diorite_raw_wall_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:diorite_raw_wall_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:diorite_wall" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/diorite_raw_walls_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/diorite_raw_walls_to_brick.json index 69f2bb64f..5442c227f 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/diorite_raw_walls_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/diorite_raw_walls_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:diorite_raw_walls_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:diorite_raw_walls_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:diorite_wall" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:diorite_raw_walls_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:diorite_raw_walls_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:diorite_wall" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/diorite_relief_axe.json b/src/main/resources/data/mineralogy/advancement/recipes/diorite_relief_axe.json index a2777dd47..d5ec771da 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/diorite_relief_axe.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/diorite_relief_axe.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:diorite_relief_axe" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:diorite_relief_axe" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:diorite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:diorite_relief_axe" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:diorite_relief_axe" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:diorite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/diorite_relief_blank.json b/src/main/resources/data/mineralogy/advancement/recipes/diorite_relief_blank.json index a3d6b4173..f973348e8 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/diorite_relief_blank.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/diorite_relief_blank.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:diorite_relief_blank" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:diorite_relief_blank" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/diorite/smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:diorite_relief_blank" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:diorite_relief_blank" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/diorite/smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/diorite_relief_cross.json b/src/main/resources/data/mineralogy/advancement/recipes/diorite_relief_cross.json index 75717177a..dbd618df8 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/diorite_relief_cross.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/diorite_relief_cross.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:diorite_relief_cross" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:diorite_relief_cross" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:diorite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:diorite_relief_cross" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:diorite_relief_cross" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:diorite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/diorite_relief_hammer.json b/src/main/resources/data/mineralogy/advancement/recipes/diorite_relief_hammer.json index bda8f46ac..98083a161 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/diorite_relief_hammer.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/diorite_relief_hammer.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:diorite_relief_hammer" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:diorite_relief_hammer" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:diorite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:diorite_relief_hammer" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:diorite_relief_hammer" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:diorite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/diorite_relief_hoe.json b/src/main/resources/data/mineralogy/advancement/recipes/diorite_relief_hoe.json index 1e2a71075..52cd1d9b9 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/diorite_relief_hoe.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/diorite_relief_hoe.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:diorite_relief_hoe" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:diorite_relief_hoe" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:diorite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:diorite_relief_hoe" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:diorite_relief_hoe" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:diorite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/diorite_relief_horizontal.json b/src/main/resources/data/mineralogy/advancement/recipes/diorite_relief_horizontal.json index a0e1522a2..089696a9e 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/diorite_relief_horizontal.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/diorite_relief_horizontal.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:diorite_relief_horizontal" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:diorite_relief_horizontal" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:diorite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:diorite_relief_horizontal" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:diorite_relief_horizontal" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:diorite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/diorite_relief_i.json b/src/main/resources/data/mineralogy/advancement/recipes/diorite_relief_i.json index c78b7072f..4bd033037 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/diorite_relief_i.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/diorite_relief_i.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:diorite_relief_i" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:diorite_relief_i" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:diorite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:diorite_relief_i" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:diorite_relief_i" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:diorite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/diorite_relief_left.json b/src/main/resources/data/mineralogy/advancement/recipes/diorite_relief_left.json index ce7427073..4f75869d8 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/diorite_relief_left.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/diorite_relief_left.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:diorite_relief_left" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:diorite_relief_left" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:diorite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:diorite_relief_left" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:diorite_relief_left" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:diorite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/diorite_relief_pickaxe.json b/src/main/resources/data/mineralogy/advancement/recipes/diorite_relief_pickaxe.json index d25da3895..7acdf8219 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/diorite_relief_pickaxe.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/diorite_relief_pickaxe.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:diorite_relief_pickaxe" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:diorite_relief_pickaxe" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:diorite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:diorite_relief_pickaxe" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:diorite_relief_pickaxe" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:diorite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/diorite_relief_plus.json b/src/main/resources/data/mineralogy/advancement/recipes/diorite_relief_plus.json index 219feafc2..c995712a5 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/diorite_relief_plus.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/diorite_relief_plus.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:diorite_relief_plus" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:diorite_relief_plus" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:diorite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:diorite_relief_plus" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:diorite_relief_plus" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:diorite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/diorite_relief_right.json b/src/main/resources/data/mineralogy/advancement/recipes/diorite_relief_right.json index c92fed420..d45988758 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/diorite_relief_right.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/diorite_relief_right.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:diorite_relief_right" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:diorite_relief_right" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:diorite_relief_left" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:diorite_relief_right" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:diorite_relief_right" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:diorite_relief_left" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/diorite_relief_sword.json b/src/main/resources/data/mineralogy/advancement/recipes/diorite_relief_sword.json index d6f29e3b6..ca50471bc 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/diorite_relief_sword.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/diorite_relief_sword.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:diorite_relief_sword" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:diorite_relief_sword" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:diorite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:diorite_relief_sword" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:diorite_relief_sword" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:diorite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/diorite_relief_vertical.json b/src/main/resources/data/mineralogy/advancement/recipes/diorite_relief_vertical.json index e7c0987bd..3117f0f68 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/diorite_relief_vertical.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/diorite_relief_vertical.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:diorite_relief_vertical" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:diorite_relief_vertical" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:diorite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:diorite_relief_vertical" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:diorite_relief_vertical" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:diorite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/diorite_slab.json b/src/main/resources/data/mineralogy/advancement/recipes/diorite_slab.json index 3e276d033..527d538ed 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/diorite_slab.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/diorite_slab.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:diorite_slab" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:diorite_slab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:diorite" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:diorite_slab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:diorite_slab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:diorite" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/diorite_slab_from_vanilla.json b/src/main/resources/data/mineralogy/advancement/recipes/diorite_slab_from_vanilla.json index 122878b42..6f230b157 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/diorite_slab_from_vanilla.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/diorite_slab_from_vanilla.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:diorite_slab_from_vanilla" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:diorite_slab_from_vanilla" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "minecraft:diorite_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:diorite_slab_from_vanilla" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:diorite_slab_from_vanilla" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:diorite_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/diorite_slab_to_vanilla.json b/src/main/resources/data/mineralogy/advancement/recipes/diorite_slab_to_vanilla.json index 0d0bfef06..554fee25f 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/diorite_slab_to_vanilla.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/diorite_slab_to_vanilla.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:diorite_slab_to_vanilla" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:diorite_slab_to_vanilla" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:diorite_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:diorite_slab_to_vanilla" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:diorite_slab_to_vanilla" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:diorite_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/diorite_smooth.json b/src/main/resources/data/mineralogy/advancement/recipes/diorite_smooth.json index f9776e952..59b2dbecc 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/diorite_smooth.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/diorite_smooth.json @@ -1,48 +1,46 @@ { - "rewards": { - "recipes": [ - "mineralogy:diorite_smooth" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:diorite_smooth" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:diorite" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:diorite_smooth" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:diorite_smooth" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:diorite" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/diorite_smooth_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/diorite_smooth_brick.json index d00dd662b..3371cf754 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/diorite_smooth_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/diorite_smooth_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:diorite_smooth_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:diorite_smooth_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/diorite/smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:diorite_smooth_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:diorite_smooth_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/diorite/smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/diorite_smooth_brick_furnace.json b/src/main/resources/data/mineralogy/advancement/recipes/diorite_smooth_brick_furnace.json index e3cc1dbe1..dcf26f13f 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/diorite_smooth_brick_furnace.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/diorite_smooth_brick_furnace.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:diorite_smooth_brick_furnace" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:diorite_smooth_brick_furnace" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:slabs/diorite/smooth_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:diorite_smooth_brick_furnace" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:diorite_smooth_brick_furnace" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:slabs/diorite/smooth_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/diorite_smooth_brick_slab.json b/src/main/resources/data/mineralogy/advancement/recipes/diorite_smooth_brick_slab.json index 3245159fe..109bba83d 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/diorite_smooth_brick_slab.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/diorite_smooth_brick_slab.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:diorite_smooth_brick_slab" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:diorite_smooth_brick_slab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:diorite_smooth_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:diorite_smooth_brick_slab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:diorite_smooth_brick_slab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:diorite_smooth_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/diorite_smooth_brick_stairs.json b/src/main/resources/data/mineralogy/advancement/recipes/diorite_smooth_brick_stairs.json index 8edf79d7c..69caaccb7 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/diorite_smooth_brick_stairs.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/diorite_smooth_brick_stairs.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:diorite_smooth_brick_stairs" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:diorite_smooth_brick_stairs" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/diorite/smooth_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:diorite_smooth_brick_stairs" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:diorite_smooth_brick_stairs" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/diorite/smooth_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/diorite_smooth_brick_wall.json b/src/main/resources/data/mineralogy/advancement/recipes/diorite_smooth_brick_wall.json index b3d6d82aa..f96447e94 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/diorite_smooth_brick_wall.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/diorite_smooth_brick_wall.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:diorite_smooth_brick_wall" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:diorite_smooth_brick_wall" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/diorite/smooth_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:diorite_smooth_brick_wall" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:diorite_smooth_brick_wall" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/diorite/smooth_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/diorite_smooth_furnace.json b/src/main/resources/data/mineralogy/advancement/recipes/diorite_smooth_furnace.json index 021b37fb3..e32095495 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/diorite_smooth_furnace.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/diorite_smooth_furnace.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:diorite_smooth_furnace" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:diorite_smooth_furnace" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:slabs/diorite/smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:diorite_smooth_furnace" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:diorite_smooth_furnace" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:slabs/diorite/smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/diorite_smooth_slab.json b/src/main/resources/data/mineralogy/advancement/recipes/diorite_smooth_slab.json index 590c4e25c..73ff09dd6 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/diorite_smooth_slab.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/diorite_smooth_slab.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:diorite_smooth_slab" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:diorite_smooth_slab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:diorite_smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:diorite_smooth_slab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:diorite_smooth_slab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:diorite_smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/diorite_smooth_slab_from_vanilla.json b/src/main/resources/data/mineralogy/advancement/recipes/diorite_smooth_slab_from_vanilla.json index 5b1da1d39..593f6c305 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/diorite_smooth_slab_from_vanilla.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/diorite_smooth_slab_from_vanilla.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:diorite_smooth_slab_from_vanilla" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:diorite_smooth_slab_from_vanilla" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "minecraft:polished_diorite_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:diorite_smooth_slab_from_vanilla" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:diorite_smooth_slab_from_vanilla" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:polished_diorite_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/diorite_smooth_slab_to_vanilla.json b/src/main/resources/data/mineralogy/advancement/recipes/diorite_smooth_slab_to_vanilla.json index c5c50010f..44b3e9c19 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/diorite_smooth_slab_to_vanilla.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/diorite_smooth_slab_to_vanilla.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:diorite_smooth_slab_to_vanilla" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:diorite_smooth_slab_to_vanilla" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:diorite_smooth_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:diorite_smooth_slab_to_vanilla" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:diorite_smooth_slab_to_vanilla" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:diorite_smooth_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/diorite_smooth_stairs.json b/src/main/resources/data/mineralogy/advancement/recipes/diorite_smooth_stairs.json index 285a16787..57511ce49 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/diorite_smooth_stairs.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/diorite_smooth_stairs.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:diorite_smooth_stairs" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:diorite_smooth_stairs" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:diorite_smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:diorite_smooth_stairs" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:diorite_smooth_stairs" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:diorite_smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/diorite_smooth_wall.json b/src/main/resources/data/mineralogy/advancement/recipes/diorite_smooth_wall.json index 428257129..8b4c06482 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/diorite_smooth_wall.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/diorite_smooth_wall.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:diorite_smooth_wall" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:diorite_smooth_wall" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/diorite/smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:diorite_smooth_wall" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:diorite_smooth_wall" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/diorite/smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/diorite_stairs.json b/src/main/resources/data/mineralogy/advancement/recipes/diorite_stairs.json index 26c4c2918..b783d493b 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/diorite_stairs.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/diorite_stairs.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:diorite_stairs" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:diorite_stairs" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:diorite" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:diorite_stairs" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:diorite_stairs" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:diorite" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/diorite_to_stone.json b/src/main/resources/data/mineralogy/advancement/recipes/diorite_to_stone.json index 265d7a8ad..200222414 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/diorite_to_stone.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/diorite_to_stone.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:diorite_to_stone" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:diorite_to_stone" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:diorite" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:diorite_to_stone" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:diorite_to_stone" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:diorite" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/diorite_wall.json b/src/main/resources/data/mineralogy/advancement/recipes/diorite_wall.json index ddd981745..78d7ed476 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/diorite_wall.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/diorite_wall.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:diorite_wall" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:diorite_wall" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:diorite" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:diorite_wall" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:diorite_wall" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:diorite" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/dolomite_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/dolomite_brick.json index d732705e4..a1bb706b2 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/dolomite_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/dolomite_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:dolomite_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:dolomite_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/dolomite" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:dolomite_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:dolomite_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/dolomite" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/dolomite_brick_block_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/dolomite_brick_block_polishing.json index 3d2b29139..41e4b506d 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/dolomite_brick_block_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/dolomite_brick_block_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:dolomite_brick_block_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:dolomite_brick_block_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:dolomite_brick" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:dolomite_brick_block_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:dolomite_brick_block_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:dolomite_brick" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/dolomite_brick_furnace.json b/src/main/resources/data/mineralogy/advancement/recipes/dolomite_brick_furnace.json index bc8452148..b58850e5c 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/dolomite_brick_furnace.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/dolomite_brick_furnace.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:dolomite_brick_furnace" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:dolomite_brick_furnace" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:slabs/dolomite/brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:dolomite_brick_furnace" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:dolomite_brick_furnace" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:slabs/dolomite/brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/dolomite_brick_slab.json b/src/main/resources/data/mineralogy/advancement/recipes/dolomite_brick_slab.json index 7a065b338..a195dbdb2 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/dolomite_brick_slab.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/dolomite_brick_slab.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:dolomite_brick_slab" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:dolomite_brick_slab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:dolomite_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:dolomite_brick_slab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:dolomite_brick_slab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:dolomite_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/dolomite_brick_slab_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/dolomite_brick_slab_polishing.json index f5fc5d534..50d891b8a 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/dolomite_brick_slab_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/dolomite_brick_slab_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:dolomite_brick_slab_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:dolomite_brick_slab_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:dolomite_brick_slab" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:dolomite_brick_slab_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:dolomite_brick_slab_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:dolomite_brick_slab" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/dolomite_brick_slab_recombination.json b/src/main/resources/data/mineralogy/advancement/recipes/dolomite_brick_slab_recombination.json index d70db7878..e0327bb06 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/dolomite_brick_slab_recombination.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/dolomite_brick_slab_recombination.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:dolomite_brick_slab_recombination" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:dolomite_brick_slab_recombination" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:dolomite_brick_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:dolomite_brick_slab_recombination" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:dolomite_brick_slab_recombination" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:dolomite_brick_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/dolomite_brick_stairs.json b/src/main/resources/data/mineralogy/advancement/recipes/dolomite_brick_stairs.json index 9304def69..80e7869df 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/dolomite_brick_stairs.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/dolomite_brick_stairs.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:dolomite_brick_stairs" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:dolomite_brick_stairs" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/dolomite/brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:dolomite_brick_stairs" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:dolomite_brick_stairs" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/dolomite/brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/dolomite_brick_stairs_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/dolomite_brick_stairs_polishing.json index 5571d206a..851e12835 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/dolomite_brick_stairs_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/dolomite_brick_stairs_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:dolomite_brick_stairs_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:dolomite_brick_stairs_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:dolomite_brick_stairs" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:dolomite_brick_stairs_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:dolomite_brick_stairs_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:dolomite_brick_stairs" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/dolomite_brick_wall.json b/src/main/resources/data/mineralogy/advancement/recipes/dolomite_brick_wall.json index c9bd26065..1d073a738 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/dolomite_brick_wall.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/dolomite_brick_wall.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:dolomite_brick_wall" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:dolomite_brick_wall" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/dolomite/brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:dolomite_brick_wall" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:dolomite_brick_wall" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/dolomite/brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/dolomite_brick_wall_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/dolomite_brick_wall_polishing.json index 146cdf2b4..8fb9f0b09 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/dolomite_brick_wall_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/dolomite_brick_wall_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:dolomite_brick_wall_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:dolomite_brick_wall_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:dolomite_brick_wall" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:dolomite_brick_wall_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:dolomite_brick_wall_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:dolomite_brick_wall" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/dolomite_cobblestone.json b/src/main/resources/data/mineralogy/advancement/recipes/dolomite_cobblestone.json index 1b2720f92..173456f6d 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/dolomite_cobblestone.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/dolomite_cobblestone.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:dolomite_cobblestone" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:dolomite_cobblestone" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/dolomite" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:dolomite_cobblestone" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:dolomite_cobblestone" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/dolomite" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/dolomite_furnace.json b/src/main/resources/data/mineralogy/advancement/recipes/dolomite_furnace.json index d51bde131..235102fc4 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/dolomite_furnace.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/dolomite_furnace.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:dolomite_furnace" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:dolomite_furnace" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:slabs/dolomite" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:dolomite_furnace" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:dolomite_furnace" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:slabs/dolomite" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/dolomite_polished_brick_slab_recombination.json b/src/main/resources/data/mineralogy/advancement/recipes/dolomite_polished_brick_slab_recombination.json index 8784e7a60..d7b1db3f5 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/dolomite_polished_brick_slab_recombination.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/dolomite_polished_brick_slab_recombination.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:dolomite_polished_brick_slab_recombination" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:dolomite_polished_brick_slab_recombination" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:dolomite_smooth_brick_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:dolomite_polished_brick_slab_recombination" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:dolomite_polished_brick_slab_recombination" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:dolomite_smooth_brick_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/dolomite_polished_slab_recombination.json b/src/main/resources/data/mineralogy/advancement/recipes/dolomite_polished_slab_recombination.json index 9b77a340a..e4512cda2 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/dolomite_polished_slab_recombination.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/dolomite_polished_slab_recombination.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:dolomite_polished_slab_recombination" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:dolomite_polished_slab_recombination" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:dolomite_smooth_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:dolomite_polished_slab_recombination" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:dolomite_polished_slab_recombination" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:dolomite_smooth_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/dolomite_polished_slabs_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/dolomite_polished_slabs_to_brick.json index 397508cb5..18b5ff2f9 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/dolomite_polished_slabs_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/dolomite_polished_slabs_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:dolomite_polished_slabs_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:dolomite_polished_slabs_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:dolomite_smooth_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:dolomite_polished_slabs_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:dolomite_polished_slabs_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:dolomite_smooth_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/dolomite_polished_stairs_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/dolomite_polished_stairs_to_brick.json index 6a8fefb99..6dd903393 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/dolomite_polished_stairs_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/dolomite_polished_stairs_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:dolomite_polished_stairs_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:dolomite_polished_stairs_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:dolomite_smooth_stairs" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:dolomite_polished_stairs_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:dolomite_polished_stairs_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:dolomite_smooth_stairs" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/dolomite_polished_walls_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/dolomite_polished_walls_to_brick.json index bff3da84f..5a8b23e32 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/dolomite_polished_walls_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/dolomite_polished_walls_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:dolomite_polished_walls_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:dolomite_polished_walls_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:dolomite_smooth_wall" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:dolomite_polished_walls_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:dolomite_polished_walls_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:dolomite_smooth_wall" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/dolomite_raw_slab_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/dolomite_raw_slab_polishing.json index 7c672aec4..9d48143e9 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/dolomite_raw_slab_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/dolomite_raw_slab_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:dolomite_raw_slab_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:dolomite_raw_slab_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:dolomite_slab" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:dolomite_raw_slab_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:dolomite_raw_slab_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:dolomite_slab" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/dolomite_raw_slab_recombination.json b/src/main/resources/data/mineralogy/advancement/recipes/dolomite_raw_slab_recombination.json index e9bc3e430..68da480b2 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/dolomite_raw_slab_recombination.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/dolomite_raw_slab_recombination.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:dolomite_raw_slab_recombination" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:dolomite_raw_slab_recombination" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:dolomite_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:dolomite_raw_slab_recombination" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:dolomite_raw_slab_recombination" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:dolomite_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/dolomite_raw_slabs_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/dolomite_raw_slabs_to_brick.json index 9f453c621..e8d2c81a5 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/dolomite_raw_slabs_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/dolomite_raw_slabs_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:dolomite_raw_slabs_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:dolomite_raw_slabs_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:dolomite_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:dolomite_raw_slabs_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:dolomite_raw_slabs_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:dolomite_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/dolomite_raw_stairs_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/dolomite_raw_stairs_polishing.json index 96a46a1d8..2a936aa4d 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/dolomite_raw_stairs_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/dolomite_raw_stairs_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:dolomite_raw_stairs_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:dolomite_raw_stairs_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:dolomite_stairs" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:dolomite_raw_stairs_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:dolomite_raw_stairs_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:dolomite_stairs" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/dolomite_raw_stairs_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/dolomite_raw_stairs_to_brick.json index 34033e292..de65ccfa5 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/dolomite_raw_stairs_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/dolomite_raw_stairs_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:dolomite_raw_stairs_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:dolomite_raw_stairs_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:dolomite_stairs" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:dolomite_raw_stairs_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:dolomite_raw_stairs_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:dolomite_stairs" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/dolomite_raw_wall_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/dolomite_raw_wall_polishing.json index 1f7a9336a..337509221 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/dolomite_raw_wall_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/dolomite_raw_wall_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:dolomite_raw_wall_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:dolomite_raw_wall_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:dolomite_wall" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:dolomite_raw_wall_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:dolomite_raw_wall_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:dolomite_wall" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/dolomite_raw_walls_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/dolomite_raw_walls_to_brick.json index a60851f78..79dd0c763 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/dolomite_raw_walls_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/dolomite_raw_walls_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:dolomite_raw_walls_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:dolomite_raw_walls_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:dolomite_wall" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:dolomite_raw_walls_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:dolomite_raw_walls_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:dolomite_wall" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/dolomite_relief_axe.json b/src/main/resources/data/mineralogy/advancement/recipes/dolomite_relief_axe.json index da9cd4b1f..8a2364877 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/dolomite_relief_axe.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/dolomite_relief_axe.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:dolomite_relief_axe" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:dolomite_relief_axe" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:dolomite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:dolomite_relief_axe" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:dolomite_relief_axe" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:dolomite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/dolomite_relief_blank.json b/src/main/resources/data/mineralogy/advancement/recipes/dolomite_relief_blank.json index ac84fcdc1..fe052f543 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/dolomite_relief_blank.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/dolomite_relief_blank.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:dolomite_relief_blank" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:dolomite_relief_blank" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:dolomite_smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:dolomite_relief_blank" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:dolomite_relief_blank" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:dolomite_smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/dolomite_relief_cross.json b/src/main/resources/data/mineralogy/advancement/recipes/dolomite_relief_cross.json index 7ed343e3e..3523c27e8 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/dolomite_relief_cross.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/dolomite_relief_cross.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:dolomite_relief_cross" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:dolomite_relief_cross" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:dolomite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:dolomite_relief_cross" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:dolomite_relief_cross" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:dolomite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/dolomite_relief_hammer.json b/src/main/resources/data/mineralogy/advancement/recipes/dolomite_relief_hammer.json index 079eb817a..3209316ff 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/dolomite_relief_hammer.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/dolomite_relief_hammer.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:dolomite_relief_hammer" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:dolomite_relief_hammer" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:dolomite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:dolomite_relief_hammer" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:dolomite_relief_hammer" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:dolomite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/dolomite_relief_hoe.json b/src/main/resources/data/mineralogy/advancement/recipes/dolomite_relief_hoe.json index c8fd3f149..91fe359ef 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/dolomite_relief_hoe.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/dolomite_relief_hoe.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:dolomite_relief_hoe" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:dolomite_relief_hoe" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:dolomite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:dolomite_relief_hoe" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:dolomite_relief_hoe" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:dolomite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/dolomite_relief_horizontal.json b/src/main/resources/data/mineralogy/advancement/recipes/dolomite_relief_horizontal.json index ada2e097c..d8afc335e 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/dolomite_relief_horizontal.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/dolomite_relief_horizontal.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:dolomite_relief_horizontal" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:dolomite_relief_horizontal" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:dolomite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:dolomite_relief_horizontal" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:dolomite_relief_horizontal" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:dolomite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/dolomite_relief_i.json b/src/main/resources/data/mineralogy/advancement/recipes/dolomite_relief_i.json index 6e686f732..bc83f6ea4 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/dolomite_relief_i.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/dolomite_relief_i.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:dolomite_relief_i" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:dolomite_relief_i" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:dolomite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:dolomite_relief_i" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:dolomite_relief_i" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:dolomite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/dolomite_relief_left.json b/src/main/resources/data/mineralogy/advancement/recipes/dolomite_relief_left.json index 29101aed8..0ada5a864 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/dolomite_relief_left.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/dolomite_relief_left.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:dolomite_relief_left" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:dolomite_relief_left" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:dolomite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:dolomite_relief_left" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:dolomite_relief_left" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:dolomite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/dolomite_relief_pickaxe.json b/src/main/resources/data/mineralogy/advancement/recipes/dolomite_relief_pickaxe.json index 947be6084..870b253eb 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/dolomite_relief_pickaxe.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/dolomite_relief_pickaxe.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:dolomite_relief_pickaxe" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:dolomite_relief_pickaxe" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:dolomite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:dolomite_relief_pickaxe" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:dolomite_relief_pickaxe" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:dolomite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/dolomite_relief_plus.json b/src/main/resources/data/mineralogy/advancement/recipes/dolomite_relief_plus.json index eb65c38a3..46598fba6 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/dolomite_relief_plus.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/dolomite_relief_plus.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:dolomite_relief_plus" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:dolomite_relief_plus" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:dolomite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:dolomite_relief_plus" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:dolomite_relief_plus" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:dolomite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/dolomite_relief_right.json b/src/main/resources/data/mineralogy/advancement/recipes/dolomite_relief_right.json index e9891551d..9e4f7bad3 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/dolomite_relief_right.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/dolomite_relief_right.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:dolomite_relief_right" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:dolomite_relief_right" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:dolomite_relief_left" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:dolomite_relief_right" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:dolomite_relief_right" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:dolomite_relief_left" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/dolomite_relief_sword.json b/src/main/resources/data/mineralogy/advancement/recipes/dolomite_relief_sword.json index 53e4b04d0..a620574d4 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/dolomite_relief_sword.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/dolomite_relief_sword.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:dolomite_relief_sword" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:dolomite_relief_sword" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:dolomite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:dolomite_relief_sword" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:dolomite_relief_sword" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:dolomite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/dolomite_relief_vertical.json b/src/main/resources/data/mineralogy/advancement/recipes/dolomite_relief_vertical.json index be9dba20c..761a43093 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/dolomite_relief_vertical.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/dolomite_relief_vertical.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:dolomite_relief_vertical" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:dolomite_relief_vertical" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:dolomite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:dolomite_relief_vertical" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:dolomite_relief_vertical" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:dolomite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/dolomite_slab.json b/src/main/resources/data/mineralogy/advancement/recipes/dolomite_slab.json index 9138a1f8b..380837a95 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/dolomite_slab.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/dolomite_slab.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:dolomite_slab" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:dolomite_slab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:dolomite" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:dolomite_slab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:dolomite_slab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:dolomite" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/dolomite_smooth.json b/src/main/resources/data/mineralogy/advancement/recipes/dolomite_smooth.json index 1f5aad0ce..879f76c37 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/dolomite_smooth.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/dolomite_smooth.json @@ -1,48 +1,46 @@ { - "rewards": { - "recipes": [ - "mineralogy:dolomite_smooth" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:dolomite_smooth" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/dolomite" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:dolomite_smooth" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:dolomite_smooth" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/dolomite" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/dolomite_smooth_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/dolomite_smooth_brick.json index 703a6f11c..aa98e288c 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/dolomite_smooth_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/dolomite_smooth_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:dolomite_smooth_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:dolomite_smooth_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/dolomite/smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:dolomite_smooth_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:dolomite_smooth_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/dolomite/smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/dolomite_smooth_brick_furnace.json b/src/main/resources/data/mineralogy/advancement/recipes/dolomite_smooth_brick_furnace.json index 2d3509d99..7b0984e02 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/dolomite_smooth_brick_furnace.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/dolomite_smooth_brick_furnace.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:dolomite_smooth_brick_furnace" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:dolomite_smooth_brick_furnace" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:slabs/dolomite/smooth_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:dolomite_smooth_brick_furnace" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:dolomite_smooth_brick_furnace" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:slabs/dolomite/smooth_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/dolomite_smooth_brick_slab.json b/src/main/resources/data/mineralogy/advancement/recipes/dolomite_smooth_brick_slab.json index afd4bdd41..26ee7956a 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/dolomite_smooth_brick_slab.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/dolomite_smooth_brick_slab.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:dolomite_smooth_brick_slab" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:dolomite_smooth_brick_slab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:dolomite_smooth_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:dolomite_smooth_brick_slab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:dolomite_smooth_brick_slab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:dolomite_smooth_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/dolomite_smooth_brick_stairs.json b/src/main/resources/data/mineralogy/advancement/recipes/dolomite_smooth_brick_stairs.json index 151d24d51..f52b51ae8 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/dolomite_smooth_brick_stairs.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/dolomite_smooth_brick_stairs.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:dolomite_smooth_brick_stairs" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:dolomite_smooth_brick_stairs" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/dolomite/smooth_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:dolomite_smooth_brick_stairs" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:dolomite_smooth_brick_stairs" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/dolomite/smooth_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/dolomite_smooth_brick_wall.json b/src/main/resources/data/mineralogy/advancement/recipes/dolomite_smooth_brick_wall.json index a9831b033..1a796fbfd 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/dolomite_smooth_brick_wall.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/dolomite_smooth_brick_wall.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:dolomite_smooth_brick_wall" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:dolomite_smooth_brick_wall" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/dolomite/smooth_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:dolomite_smooth_brick_wall" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:dolomite_smooth_brick_wall" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/dolomite/smooth_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/dolomite_smooth_furnace.json b/src/main/resources/data/mineralogy/advancement/recipes/dolomite_smooth_furnace.json index 0ca7d4cc5..0d1f99a14 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/dolomite_smooth_furnace.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/dolomite_smooth_furnace.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:dolomite_smooth_furnace" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:dolomite_smooth_furnace" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:slabs/dolomite/smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:dolomite_smooth_furnace" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:dolomite_smooth_furnace" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:slabs/dolomite/smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/dolomite_smooth_slab.json b/src/main/resources/data/mineralogy/advancement/recipes/dolomite_smooth_slab.json index 892fda87c..39085526c 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/dolomite_smooth_slab.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/dolomite_smooth_slab.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:dolomite_smooth_slab" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:dolomite_smooth_slab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:dolomite_smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:dolomite_smooth_slab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:dolomite_smooth_slab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:dolomite_smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/dolomite_smooth_stairs.json b/src/main/resources/data/mineralogy/advancement/recipes/dolomite_smooth_stairs.json index f3c5f8e27..2c04bd18a 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/dolomite_smooth_stairs.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/dolomite_smooth_stairs.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:dolomite_smooth_stairs" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:dolomite_smooth_stairs" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/dolomite/smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:dolomite_smooth_stairs" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:dolomite_smooth_stairs" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/dolomite/smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/dolomite_smooth_wall.json b/src/main/resources/data/mineralogy/advancement/recipes/dolomite_smooth_wall.json index 40d82cbbd..79e4f344e 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/dolomite_smooth_wall.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/dolomite_smooth_wall.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:dolomite_smooth_wall" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:dolomite_smooth_wall" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/dolomite/smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:dolomite_smooth_wall" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:dolomite_smooth_wall" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/dolomite/smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/dolomite_stairs.json b/src/main/resources/data/mineralogy/advancement/recipes/dolomite_stairs.json index 70401f2ff..80a7b2886 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/dolomite_stairs.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/dolomite_stairs.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:dolomite_stairs" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:dolomite_stairs" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/dolomite" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:dolomite_stairs" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:dolomite_stairs" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/dolomite" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/dolomite_to_stone.json b/src/main/resources/data/mineralogy/advancement/recipes/dolomite_to_stone.json index 6a1bcd48f..3d95aeadf 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/dolomite_to_stone.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/dolomite_to_stone.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:dolomite_to_stone" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:dolomite_to_stone" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:dolomite" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:dolomite_to_stone" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:dolomite_to_stone" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:dolomite" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/dolomite_wall.json b/src/main/resources/data/mineralogy/advancement/recipes/dolomite_wall.json index 19639feb1..630064562 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/dolomite_wall.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/dolomite_wall.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:dolomite_wall" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:dolomite_wall" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/dolomite" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:dolomite_wall" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:dolomite_wall" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/dolomite" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/drywall.json b/src/main/resources/data/mineralogy/advancement/recipes/drywall.json index f06df9f2b..3c5d7a339 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/drywall.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/drywall.json @@ -1,38 +1,38 @@ { - "neoforge:conditions": [ - { - "type": "mineralogy:config", - "flag": "ENABLE_DRYWALLS" - } - ], - "rewards": { - "recipes": [ - "mineralogy:drywall" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:drywall" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:gypsum_dust" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "neoforge:conditions": [ + { + "type": "mineralogy:config", + "flag": "ENABLE_DRYWALLS" + } + ], + "rewards": { + "recipes": [ + "mineralogy:drywall" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:drywall" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:gypsum_dust" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/drywall_black.json b/src/main/resources/data/mineralogy/advancement/recipes/drywall_black.json index df53e2ef6..4f72272c1 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/drywall_black.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/drywall_black.json @@ -1,38 +1,38 @@ { - "neoforge:conditions": [ - { - "type": "mineralogy:config", - "flag": "ENABLE_DRYWALLS" - } - ], - "rewards": { - "recipes": [ - "mineralogy:drywall_black" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:drywall_black" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:drywall_white" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "neoforge:conditions": [ + { + "type": "mineralogy:config", + "flag": "ENABLE_DRYWALLS" + } + ], + "rewards": { + "recipes": [ + "mineralogy:drywall_black" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:drywall_black" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:drywall_white" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/drywall_blue.json b/src/main/resources/data/mineralogy/advancement/recipes/drywall_blue.json index df869ab81..8911eed10 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/drywall_blue.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/drywall_blue.json @@ -1,38 +1,38 @@ { - "neoforge:conditions": [ - { - "type": "mineralogy:config", - "flag": "ENABLE_DRYWALLS" - } - ], - "rewards": { - "recipes": [ - "mineralogy:drywall_blue" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:drywall_blue" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:drywall_white" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "neoforge:conditions": [ + { + "type": "mineralogy:config", + "flag": "ENABLE_DRYWALLS" + } + ], + "rewards": { + "recipes": [ + "mineralogy:drywall_blue" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:drywall_blue" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:drywall_white" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/drywall_brown.json b/src/main/resources/data/mineralogy/advancement/recipes/drywall_brown.json index ec70439d4..d1f189956 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/drywall_brown.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/drywall_brown.json @@ -1,38 +1,38 @@ { - "neoforge:conditions": [ - { - "type": "mineralogy:config", - "flag": "ENABLE_DRYWALLS" - } - ], - "rewards": { - "recipes": [ - "mineralogy:drywall_brown" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:drywall_brown" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:drywall_white" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "neoforge:conditions": [ + { + "type": "mineralogy:config", + "flag": "ENABLE_DRYWALLS" + } + ], + "rewards": { + "recipes": [ + "mineralogy:drywall_brown" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:drywall_brown" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:drywall_white" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/drywall_cyan.json b/src/main/resources/data/mineralogy/advancement/recipes/drywall_cyan.json index ee05c67b5..638e66af2 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/drywall_cyan.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/drywall_cyan.json @@ -1,38 +1,38 @@ { - "neoforge:conditions": [ - { - "type": "mineralogy:config", - "flag": "ENABLE_DRYWALLS" - } - ], - "rewards": { - "recipes": [ - "mineralogy:drywall_cyan" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:drywall_cyan" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:drywall_white" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "neoforge:conditions": [ + { + "type": "mineralogy:config", + "flag": "ENABLE_DRYWALLS" + } + ], + "rewards": { + "recipes": [ + "mineralogy:drywall_cyan" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:drywall_cyan" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:drywall_white" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/drywall_gray.json b/src/main/resources/data/mineralogy/advancement/recipes/drywall_gray.json index 045a600a3..0390d61a8 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/drywall_gray.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/drywall_gray.json @@ -1,38 +1,38 @@ { - "neoforge:conditions": [ - { - "type": "mineralogy:config", - "flag": "ENABLE_DRYWALLS" - } - ], - "rewards": { - "recipes": [ - "mineralogy:drywall_gray" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:drywall_gray" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:drywall_white" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "neoforge:conditions": [ + { + "type": "mineralogy:config", + "flag": "ENABLE_DRYWALLS" + } + ], + "rewards": { + "recipes": [ + "mineralogy:drywall_gray" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:drywall_gray" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:drywall_white" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/drywall_green.json b/src/main/resources/data/mineralogy/advancement/recipes/drywall_green.json index 20df3855b..5b7668add 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/drywall_green.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/drywall_green.json @@ -1,38 +1,38 @@ { - "neoforge:conditions": [ - { - "type": "mineralogy:config", - "flag": "ENABLE_DRYWALLS" - } - ], - "rewards": { - "recipes": [ - "mineralogy:drywall_green" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:drywall_green" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:drywall_white" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "neoforge:conditions": [ + { + "type": "mineralogy:config", + "flag": "ENABLE_DRYWALLS" + } + ], + "rewards": { + "recipes": [ + "mineralogy:drywall_green" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:drywall_green" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:drywall_white" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/drywall_light_blue.json b/src/main/resources/data/mineralogy/advancement/recipes/drywall_light_blue.json index 6dfde0406..728a9831e 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/drywall_light_blue.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/drywall_light_blue.json @@ -1,38 +1,38 @@ { - "neoforge:conditions": [ - { - "type": "mineralogy:config", - "flag": "ENABLE_DRYWALLS" - } - ], - "rewards": { - "recipes": [ - "mineralogy:drywall_light_blue" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:drywall_light_blue" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:drywall_white" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "neoforge:conditions": [ + { + "type": "mineralogy:config", + "flag": "ENABLE_DRYWALLS" + } + ], + "rewards": { + "recipes": [ + "mineralogy:drywall_light_blue" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:drywall_light_blue" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:drywall_white" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/drywall_lime.json b/src/main/resources/data/mineralogy/advancement/recipes/drywall_lime.json index 7cc168eb2..fb620ae80 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/drywall_lime.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/drywall_lime.json @@ -1,38 +1,38 @@ { - "neoforge:conditions": [ - { - "type": "mineralogy:config", - "flag": "ENABLE_DRYWALLS" - } - ], - "rewards": { - "recipes": [ - "mineralogy:drywall_lime" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:drywall_lime" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:drywall_white" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "neoforge:conditions": [ + { + "type": "mineralogy:config", + "flag": "ENABLE_DRYWALLS" + } + ], + "rewards": { + "recipes": [ + "mineralogy:drywall_lime" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:drywall_lime" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:drywall_white" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/drywall_magenta.json b/src/main/resources/data/mineralogy/advancement/recipes/drywall_magenta.json index ee60c4ecf..50b3ee25b 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/drywall_magenta.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/drywall_magenta.json @@ -1,38 +1,38 @@ { - "neoforge:conditions": [ - { - "type": "mineralogy:config", - "flag": "ENABLE_DRYWALLS" - } - ], - "rewards": { - "recipes": [ - "mineralogy:drywall_magenta" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:drywall_magenta" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:drywall_white" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "neoforge:conditions": [ + { + "type": "mineralogy:config", + "flag": "ENABLE_DRYWALLS" + } + ], + "rewards": { + "recipes": [ + "mineralogy:drywall_magenta" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:drywall_magenta" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:drywall_white" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/drywall_orange.json b/src/main/resources/data/mineralogy/advancement/recipes/drywall_orange.json index 2478c6cd1..a24db265c 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/drywall_orange.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/drywall_orange.json @@ -1,38 +1,38 @@ { - "neoforge:conditions": [ - { - "type": "mineralogy:config", - "flag": "ENABLE_DRYWALLS" - } - ], - "rewards": { - "recipes": [ - "mineralogy:drywall_orange" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:drywall_orange" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:drywall_white" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "neoforge:conditions": [ + { + "type": "mineralogy:config", + "flag": "ENABLE_DRYWALLS" + } + ], + "rewards": { + "recipes": [ + "mineralogy:drywall_orange" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:drywall_orange" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:drywall_white" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/drywall_pink.json b/src/main/resources/data/mineralogy/advancement/recipes/drywall_pink.json index ce56c28e4..91178aa0a 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/drywall_pink.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/drywall_pink.json @@ -1,38 +1,38 @@ { - "neoforge:conditions": [ - { - "type": "mineralogy:config", - "flag": "ENABLE_DRYWALLS" - } - ], - "rewards": { - "recipes": [ - "mineralogy:drywall_pink" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:drywall_pink" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:drywall_white" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "neoforge:conditions": [ + { + "type": "mineralogy:config", + "flag": "ENABLE_DRYWALLS" + } + ], + "rewards": { + "recipes": [ + "mineralogy:drywall_pink" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:drywall_pink" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:drywall_white" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/drywall_purple.json b/src/main/resources/data/mineralogy/advancement/recipes/drywall_purple.json index b2718c745..898926865 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/drywall_purple.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/drywall_purple.json @@ -1,38 +1,38 @@ { - "neoforge:conditions": [ - { - "type": "mineralogy:config", - "flag": "ENABLE_DRYWALLS" - } - ], - "rewards": { - "recipes": [ - "mineralogy:drywall_purple" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:drywall_purple" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:drywall_white" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "neoforge:conditions": [ + { + "type": "mineralogy:config", + "flag": "ENABLE_DRYWALLS" + } + ], + "rewards": { + "recipes": [ + "mineralogy:drywall_purple" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:drywall_purple" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:drywall_white" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/drywall_red.json b/src/main/resources/data/mineralogy/advancement/recipes/drywall_red.json index 695b88fe8..f825a0d21 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/drywall_red.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/drywall_red.json @@ -1,38 +1,38 @@ { - "neoforge:conditions": [ - { - "type": "mineralogy:config", - "flag": "ENABLE_DRYWALLS" - } - ], - "rewards": { - "recipes": [ - "mineralogy:drywall_red" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:drywall_red" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:drywall_white" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "neoforge:conditions": [ + { + "type": "mineralogy:config", + "flag": "ENABLE_DRYWALLS" + } + ], + "rewards": { + "recipes": [ + "mineralogy:drywall_red" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:drywall_red" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:drywall_white" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/drywall_silver.json b/src/main/resources/data/mineralogy/advancement/recipes/drywall_silver.json index bf731c66a..48996f4dd 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/drywall_silver.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/drywall_silver.json @@ -1,38 +1,38 @@ { - "neoforge:conditions": [ - { - "type": "mineralogy:config", - "flag": "ENABLE_DRYWALLS" - } - ], - "rewards": { - "recipes": [ - "mineralogy:drywall_silver" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:drywall_silver" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:drywall_white" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "neoforge:conditions": [ + { + "type": "mineralogy:config", + "flag": "ENABLE_DRYWALLS" + } + ], + "rewards": { + "recipes": [ + "mineralogy:drywall_silver" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:drywall_silver" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:drywall_white" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/drywall_white.json b/src/main/resources/data/mineralogy/advancement/recipes/drywall_white.json index ed8b1c12f..e8ff01723 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/drywall_white.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/drywall_white.json @@ -1,38 +1,38 @@ { - "neoforge:conditions": [ - { - "type": "mineralogy:config", - "flag": "ENABLE_DRYWALLS" - } - ], - "rewards": { - "recipes": [ - "mineralogy:drywall_white" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:drywall_white" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:drywall_white" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "neoforge:conditions": [ + { + "type": "mineralogy:config", + "flag": "ENABLE_DRYWALLS" + } + ], + "rewards": { + "recipes": [ + "mineralogy:drywall_white" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:drywall_white" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:drywall_white" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/drywall_yellow.json b/src/main/resources/data/mineralogy/advancement/recipes/drywall_yellow.json index 02caf995b..10bd7a8b4 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/drywall_yellow.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/drywall_yellow.json @@ -1,38 +1,38 @@ { - "neoforge:conditions": [ - { - "type": "mineralogy:config", - "flag": "ENABLE_DRYWALLS" - } - ], - "rewards": { - "recipes": [ - "mineralogy:drywall_yellow" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:drywall_yellow" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:drywall_white" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "neoforge:conditions": [ + { + "type": "mineralogy:config", + "flag": "ENABLE_DRYWALLS" + } + ], + "rewards": { + "recipes": [ + "mineralogy:drywall_yellow" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:drywall_yellow" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:drywall_white" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/gabbro_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/gabbro_brick.json index cd622bf35..4a8b7e61f 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/gabbro_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/gabbro_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:gabbro_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:gabbro_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/gabbro" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:gabbro_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:gabbro_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/gabbro" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/gabbro_brick_block_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/gabbro_brick_block_polishing.json index 90a0baf7c..749ac61a3 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/gabbro_brick_block_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/gabbro_brick_block_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:gabbro_brick_block_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:gabbro_brick_block_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:gabbro_brick" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:gabbro_brick_block_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:gabbro_brick_block_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:gabbro_brick" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/gabbro_brick_furnace.json b/src/main/resources/data/mineralogy/advancement/recipes/gabbro_brick_furnace.json index eaa9ba1f3..a6c572f34 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/gabbro_brick_furnace.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/gabbro_brick_furnace.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:gabbro_brick_furnace" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:gabbro_brick_furnace" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:slabs/gabbro/brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:gabbro_brick_furnace" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:gabbro_brick_furnace" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:slabs/gabbro/brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/gabbro_brick_slab.json b/src/main/resources/data/mineralogy/advancement/recipes/gabbro_brick_slab.json index ef86c079d..a8ebd4bde 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/gabbro_brick_slab.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/gabbro_brick_slab.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:gabbro_brick_slab" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:gabbro_brick_slab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:gabbro_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:gabbro_brick_slab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:gabbro_brick_slab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:gabbro_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/gabbro_brick_slab_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/gabbro_brick_slab_polishing.json index d6b101b93..0ad163472 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/gabbro_brick_slab_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/gabbro_brick_slab_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:gabbro_brick_slab_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:gabbro_brick_slab_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:gabbro_brick_slab" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:gabbro_brick_slab_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:gabbro_brick_slab_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:gabbro_brick_slab" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/gabbro_brick_slab_recombination.json b/src/main/resources/data/mineralogy/advancement/recipes/gabbro_brick_slab_recombination.json index d9ca79865..8143a1b65 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/gabbro_brick_slab_recombination.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/gabbro_brick_slab_recombination.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:gabbro_brick_slab_recombination" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:gabbro_brick_slab_recombination" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:gabbro_brick_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:gabbro_brick_slab_recombination" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:gabbro_brick_slab_recombination" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:gabbro_brick_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/gabbro_brick_stairs.json b/src/main/resources/data/mineralogy/advancement/recipes/gabbro_brick_stairs.json index df4215bb1..a492e876f 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/gabbro_brick_stairs.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/gabbro_brick_stairs.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:gabbro_brick_stairs" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:gabbro_brick_stairs" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/gabbro/brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:gabbro_brick_stairs" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:gabbro_brick_stairs" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/gabbro/brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/gabbro_brick_stairs_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/gabbro_brick_stairs_polishing.json index 11686b346..9da21868c 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/gabbro_brick_stairs_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/gabbro_brick_stairs_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:gabbro_brick_stairs_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:gabbro_brick_stairs_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:gabbro_brick_stairs" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:gabbro_brick_stairs_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:gabbro_brick_stairs_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:gabbro_brick_stairs" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/gabbro_brick_wall.json b/src/main/resources/data/mineralogy/advancement/recipes/gabbro_brick_wall.json index 0806e524c..7ffa22fb7 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/gabbro_brick_wall.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/gabbro_brick_wall.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:gabbro_brick_wall" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:gabbro_brick_wall" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/gabbro/brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:gabbro_brick_wall" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:gabbro_brick_wall" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/gabbro/brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/gabbro_brick_wall_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/gabbro_brick_wall_polishing.json index 244eb66a3..34f326c39 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/gabbro_brick_wall_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/gabbro_brick_wall_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:gabbro_brick_wall_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:gabbro_brick_wall_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:gabbro_brick_wall" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:gabbro_brick_wall_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:gabbro_brick_wall_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:gabbro_brick_wall" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/gabbro_cobblestone.json b/src/main/resources/data/mineralogy/advancement/recipes/gabbro_cobblestone.json index 19ebf5158..297a0125b 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/gabbro_cobblestone.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/gabbro_cobblestone.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:gabbro_cobblestone" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:gabbro_cobblestone" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/gabbro" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:gabbro_cobblestone" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:gabbro_cobblestone" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/gabbro" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/gabbro_furnace.json b/src/main/resources/data/mineralogy/advancement/recipes/gabbro_furnace.json index d4ef96600..03aaf2170 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/gabbro_furnace.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/gabbro_furnace.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:gabbro_furnace" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:gabbro_furnace" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:slabs/gabbro" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:gabbro_furnace" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:gabbro_furnace" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:slabs/gabbro" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/gabbro_polished_brick_slab_recombination.json b/src/main/resources/data/mineralogy/advancement/recipes/gabbro_polished_brick_slab_recombination.json index 47d477d08..208413d32 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/gabbro_polished_brick_slab_recombination.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/gabbro_polished_brick_slab_recombination.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:gabbro_polished_brick_slab_recombination" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:gabbro_polished_brick_slab_recombination" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:gabbro_smooth_brick_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:gabbro_polished_brick_slab_recombination" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:gabbro_polished_brick_slab_recombination" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:gabbro_smooth_brick_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/gabbro_polished_slab_recombination.json b/src/main/resources/data/mineralogy/advancement/recipes/gabbro_polished_slab_recombination.json index 0cb4af3a9..142da6fd5 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/gabbro_polished_slab_recombination.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/gabbro_polished_slab_recombination.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:gabbro_polished_slab_recombination" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:gabbro_polished_slab_recombination" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:gabbro_smooth_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:gabbro_polished_slab_recombination" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:gabbro_polished_slab_recombination" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:gabbro_smooth_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/gabbro_polished_slabs_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/gabbro_polished_slabs_to_brick.json index 3ccc81bb3..fed339e27 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/gabbro_polished_slabs_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/gabbro_polished_slabs_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:gabbro_polished_slabs_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:gabbro_polished_slabs_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:gabbro_smooth_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:gabbro_polished_slabs_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:gabbro_polished_slabs_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:gabbro_smooth_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/gabbro_polished_stairs_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/gabbro_polished_stairs_to_brick.json index 786aa6587..441922cb1 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/gabbro_polished_stairs_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/gabbro_polished_stairs_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:gabbro_polished_stairs_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:gabbro_polished_stairs_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:gabbro_smooth_stairs" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:gabbro_polished_stairs_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:gabbro_polished_stairs_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:gabbro_smooth_stairs" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/gabbro_polished_walls_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/gabbro_polished_walls_to_brick.json index 2ee49f558..0e539886f 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/gabbro_polished_walls_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/gabbro_polished_walls_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:gabbro_polished_walls_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:gabbro_polished_walls_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:gabbro_smooth_wall" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:gabbro_polished_walls_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:gabbro_polished_walls_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:gabbro_smooth_wall" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/gabbro_raw_slab_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/gabbro_raw_slab_polishing.json index 0112fde1c..6a1a00429 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/gabbro_raw_slab_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/gabbro_raw_slab_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:gabbro_raw_slab_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:gabbro_raw_slab_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:gabbro_slab" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:gabbro_raw_slab_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:gabbro_raw_slab_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:gabbro_slab" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/gabbro_raw_slab_recombination.json b/src/main/resources/data/mineralogy/advancement/recipes/gabbro_raw_slab_recombination.json index 51c4d9822..218831ff7 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/gabbro_raw_slab_recombination.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/gabbro_raw_slab_recombination.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:gabbro_raw_slab_recombination" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:gabbro_raw_slab_recombination" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:gabbro_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:gabbro_raw_slab_recombination" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:gabbro_raw_slab_recombination" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:gabbro_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/gabbro_raw_slabs_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/gabbro_raw_slabs_to_brick.json index 7c22910a3..c207120e4 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/gabbro_raw_slabs_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/gabbro_raw_slabs_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:gabbro_raw_slabs_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:gabbro_raw_slabs_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:gabbro_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:gabbro_raw_slabs_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:gabbro_raw_slabs_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:gabbro_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/gabbro_raw_stairs_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/gabbro_raw_stairs_polishing.json index 65c1d5cf7..241605883 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/gabbro_raw_stairs_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/gabbro_raw_stairs_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:gabbro_raw_stairs_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:gabbro_raw_stairs_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:gabbro_stairs" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:gabbro_raw_stairs_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:gabbro_raw_stairs_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:gabbro_stairs" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/gabbro_raw_stairs_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/gabbro_raw_stairs_to_brick.json index 55f967094..48ef0ecef 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/gabbro_raw_stairs_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/gabbro_raw_stairs_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:gabbro_raw_stairs_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:gabbro_raw_stairs_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:gabbro_stairs" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:gabbro_raw_stairs_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:gabbro_raw_stairs_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:gabbro_stairs" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/gabbro_raw_wall_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/gabbro_raw_wall_polishing.json index 4d4c7c258..df81b0c2b 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/gabbro_raw_wall_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/gabbro_raw_wall_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:gabbro_raw_wall_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:gabbro_raw_wall_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:gabbro_wall" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:gabbro_raw_wall_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:gabbro_raw_wall_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:gabbro_wall" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/gabbro_raw_walls_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/gabbro_raw_walls_to_brick.json index 0b6517814..5e0d80659 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/gabbro_raw_walls_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/gabbro_raw_walls_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:gabbro_raw_walls_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:gabbro_raw_walls_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:gabbro_wall" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:gabbro_raw_walls_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:gabbro_raw_walls_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:gabbro_wall" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/gabbro_relief_axe.json b/src/main/resources/data/mineralogy/advancement/recipes/gabbro_relief_axe.json index a8b3c9a3e..17a9b3bd5 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/gabbro_relief_axe.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/gabbro_relief_axe.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:gabbro_relief_axe" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:gabbro_relief_axe" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:gabbro_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:gabbro_relief_axe" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:gabbro_relief_axe" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:gabbro_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/gabbro_relief_blank.json b/src/main/resources/data/mineralogy/advancement/recipes/gabbro_relief_blank.json index 0cb1f1751..edd8f2727 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/gabbro_relief_blank.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/gabbro_relief_blank.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:gabbro_relief_blank" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:gabbro_relief_blank" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:gabbro_smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:gabbro_relief_blank" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:gabbro_relief_blank" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:gabbro_smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/gabbro_relief_cross.json b/src/main/resources/data/mineralogy/advancement/recipes/gabbro_relief_cross.json index 3b85fa5bd..c1fa01fbe 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/gabbro_relief_cross.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/gabbro_relief_cross.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:gabbro_relief_cross" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:gabbro_relief_cross" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:gabbro_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:gabbro_relief_cross" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:gabbro_relief_cross" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:gabbro_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/gabbro_relief_hammer.json b/src/main/resources/data/mineralogy/advancement/recipes/gabbro_relief_hammer.json index 301966ff9..af2e09e7e 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/gabbro_relief_hammer.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/gabbro_relief_hammer.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:gabbro_relief_hammer" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:gabbro_relief_hammer" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:gabbro_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:gabbro_relief_hammer" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:gabbro_relief_hammer" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:gabbro_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/gabbro_relief_hoe.json b/src/main/resources/data/mineralogy/advancement/recipes/gabbro_relief_hoe.json index 9e382a5f0..2624c08b3 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/gabbro_relief_hoe.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/gabbro_relief_hoe.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:gabbro_relief_hoe" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:gabbro_relief_hoe" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:gabbro_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:gabbro_relief_hoe" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:gabbro_relief_hoe" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:gabbro_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/gabbro_relief_horizontal.json b/src/main/resources/data/mineralogy/advancement/recipes/gabbro_relief_horizontal.json index 860a3340e..d96b3227d 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/gabbro_relief_horizontal.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/gabbro_relief_horizontal.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:gabbro_relief_horizontal" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:gabbro_relief_horizontal" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:gabbro_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:gabbro_relief_horizontal" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:gabbro_relief_horizontal" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:gabbro_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/gabbro_relief_i.json b/src/main/resources/data/mineralogy/advancement/recipes/gabbro_relief_i.json index fae50f3aa..13be12f28 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/gabbro_relief_i.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/gabbro_relief_i.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:gabbro_relief_i" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:gabbro_relief_i" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:gabbro_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:gabbro_relief_i" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:gabbro_relief_i" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:gabbro_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/gabbro_relief_left.json b/src/main/resources/data/mineralogy/advancement/recipes/gabbro_relief_left.json index c8df04cd0..71f5f648f 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/gabbro_relief_left.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/gabbro_relief_left.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:gabbro_relief_left" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:gabbro_relief_left" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:gabbro_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:gabbro_relief_left" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:gabbro_relief_left" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:gabbro_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/gabbro_relief_pickaxe.json b/src/main/resources/data/mineralogy/advancement/recipes/gabbro_relief_pickaxe.json index 0852facc3..69aa5abc5 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/gabbro_relief_pickaxe.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/gabbro_relief_pickaxe.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:gabbro_relief_pickaxe" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:gabbro_relief_pickaxe" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:gabbro_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:gabbro_relief_pickaxe" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:gabbro_relief_pickaxe" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:gabbro_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/gabbro_relief_plus.json b/src/main/resources/data/mineralogy/advancement/recipes/gabbro_relief_plus.json index 957f3dc0f..5c68f1d2f 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/gabbro_relief_plus.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/gabbro_relief_plus.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:gabbro_relief_plus" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:gabbro_relief_plus" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:gabbro_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:gabbro_relief_plus" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:gabbro_relief_plus" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:gabbro_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/gabbro_relief_right.json b/src/main/resources/data/mineralogy/advancement/recipes/gabbro_relief_right.json index b3fedbd45..7fe0b49d0 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/gabbro_relief_right.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/gabbro_relief_right.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:gabbro_relief_right" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:gabbro_relief_right" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:gabbro_relief_left" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:gabbro_relief_right" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:gabbro_relief_right" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:gabbro_relief_left" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/gabbro_relief_sword.json b/src/main/resources/data/mineralogy/advancement/recipes/gabbro_relief_sword.json index 66900afaa..085e9bf89 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/gabbro_relief_sword.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/gabbro_relief_sword.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:gabbro_relief_sword" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:gabbro_relief_sword" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:gabbro_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:gabbro_relief_sword" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:gabbro_relief_sword" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:gabbro_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/gabbro_relief_vertical.json b/src/main/resources/data/mineralogy/advancement/recipes/gabbro_relief_vertical.json index 88330612e..2dea10b93 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/gabbro_relief_vertical.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/gabbro_relief_vertical.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:gabbro_relief_vertical" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:gabbro_relief_vertical" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:gabbro_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:gabbro_relief_vertical" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:gabbro_relief_vertical" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:gabbro_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/gabbro_slab.json b/src/main/resources/data/mineralogy/advancement/recipes/gabbro_slab.json index 68a42852d..2ed6b4361 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/gabbro_slab.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/gabbro_slab.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:gabbro_slab" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:gabbro_slab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:gabbro" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:gabbro_slab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:gabbro_slab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:gabbro" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/gabbro_smooth.json b/src/main/resources/data/mineralogy/advancement/recipes/gabbro_smooth.json index d892fecda..821134b5f 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/gabbro_smooth.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/gabbro_smooth.json @@ -1,48 +1,46 @@ { - "rewards": { - "recipes": [ - "mineralogy:gabbro_smooth" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:gabbro_smooth" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/gabbro" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:gabbro_smooth" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:gabbro_smooth" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/gabbro" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/gabbro_smooth_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/gabbro_smooth_brick.json index bf798545c..1f5f031f5 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/gabbro_smooth_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/gabbro_smooth_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:gabbro_smooth_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:gabbro_smooth_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/gabbro/smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:gabbro_smooth_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:gabbro_smooth_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/gabbro/smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/gabbro_smooth_brick_furnace.json b/src/main/resources/data/mineralogy/advancement/recipes/gabbro_smooth_brick_furnace.json index 7bc290d38..b1e01fc08 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/gabbro_smooth_brick_furnace.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/gabbro_smooth_brick_furnace.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:gabbro_smooth_brick_furnace" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:gabbro_smooth_brick_furnace" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:slabs/gabbro/smooth_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:gabbro_smooth_brick_furnace" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:gabbro_smooth_brick_furnace" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:slabs/gabbro/smooth_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/gabbro_smooth_brick_slab.json b/src/main/resources/data/mineralogy/advancement/recipes/gabbro_smooth_brick_slab.json index 552fdbfc3..8aadc5a4d 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/gabbro_smooth_brick_slab.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/gabbro_smooth_brick_slab.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:gabbro_smooth_brick_slab" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:gabbro_smooth_brick_slab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:gabbro_smooth_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:gabbro_smooth_brick_slab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:gabbro_smooth_brick_slab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:gabbro_smooth_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/gabbro_smooth_brick_stairs.json b/src/main/resources/data/mineralogy/advancement/recipes/gabbro_smooth_brick_stairs.json index 83a0b994f..f96779b04 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/gabbro_smooth_brick_stairs.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/gabbro_smooth_brick_stairs.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:gabbro_smooth_brick_stairs" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:gabbro_smooth_brick_stairs" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/gabbro/smooth_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:gabbro_smooth_brick_stairs" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:gabbro_smooth_brick_stairs" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/gabbro/smooth_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/gabbro_smooth_brick_wall.json b/src/main/resources/data/mineralogy/advancement/recipes/gabbro_smooth_brick_wall.json index 1a6611b4c..bd14d1358 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/gabbro_smooth_brick_wall.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/gabbro_smooth_brick_wall.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:gabbro_smooth_brick_wall" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:gabbro_smooth_brick_wall" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/gabbro/smooth_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:gabbro_smooth_brick_wall" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:gabbro_smooth_brick_wall" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/gabbro/smooth_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/gabbro_smooth_furnace.json b/src/main/resources/data/mineralogy/advancement/recipes/gabbro_smooth_furnace.json index 60a4f334d..306bd6360 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/gabbro_smooth_furnace.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/gabbro_smooth_furnace.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:gabbro_smooth_furnace" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:gabbro_smooth_furnace" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:slabs/gabbro/smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:gabbro_smooth_furnace" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:gabbro_smooth_furnace" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:slabs/gabbro/smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/gabbro_smooth_slab.json b/src/main/resources/data/mineralogy/advancement/recipes/gabbro_smooth_slab.json index ac5795038..f0a86c2ed 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/gabbro_smooth_slab.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/gabbro_smooth_slab.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:gabbro_smooth_slab" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:gabbro_smooth_slab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:gabbro_smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:gabbro_smooth_slab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:gabbro_smooth_slab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:gabbro_smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/gabbro_smooth_stairs.json b/src/main/resources/data/mineralogy/advancement/recipes/gabbro_smooth_stairs.json index 4494b261f..ddbdd803d 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/gabbro_smooth_stairs.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/gabbro_smooth_stairs.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:gabbro_smooth_stairs" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:gabbro_smooth_stairs" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/gabbro/smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:gabbro_smooth_stairs" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:gabbro_smooth_stairs" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/gabbro/smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/gabbro_smooth_wall.json b/src/main/resources/data/mineralogy/advancement/recipes/gabbro_smooth_wall.json index c00b7a622..b8e592473 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/gabbro_smooth_wall.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/gabbro_smooth_wall.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:gabbro_smooth_wall" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:gabbro_smooth_wall" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/gabbro/smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:gabbro_smooth_wall" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:gabbro_smooth_wall" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/gabbro/smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/gabbro_stairs.json b/src/main/resources/data/mineralogy/advancement/recipes/gabbro_stairs.json index 591a1cbb0..abc832a25 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/gabbro_stairs.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/gabbro_stairs.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:gabbro_stairs" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:gabbro_stairs" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/gabbro" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:gabbro_stairs" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:gabbro_stairs" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/gabbro" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/gabbro_to_stone.json b/src/main/resources/data/mineralogy/advancement/recipes/gabbro_to_stone.json index bd758b1b4..3007cd3b4 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/gabbro_to_stone.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/gabbro_to_stone.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:gabbro_to_stone" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:gabbro_to_stone" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:gabbro" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:gabbro_to_stone" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:gabbro_to_stone" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:gabbro" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/gabbro_wall.json b/src/main/resources/data/mineralogy/advancement/recipes/gabbro_wall.json index cf81df6c5..589866531 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/gabbro_wall.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/gabbro_wall.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:gabbro_wall" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:gabbro_wall" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/gabbro" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:gabbro_wall" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:gabbro_wall" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/gabbro" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/gneiss_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/gneiss_brick.json index ab9ffccde..a1caeb52c 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/gneiss_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/gneiss_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:gneiss_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:gneiss_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/gneiss" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:gneiss_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:gneiss_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/gneiss" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/gneiss_brick_block_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/gneiss_brick_block_polishing.json index f55e4ce6b..9c92c12fe 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/gneiss_brick_block_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/gneiss_brick_block_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:gneiss_brick_block_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:gneiss_brick_block_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:gneiss_brick" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:gneiss_brick_block_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:gneiss_brick_block_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:gneiss_brick" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/gneiss_brick_furnace.json b/src/main/resources/data/mineralogy/advancement/recipes/gneiss_brick_furnace.json index 17b852d78..826e7604c 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/gneiss_brick_furnace.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/gneiss_brick_furnace.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:gneiss_brick_furnace" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:gneiss_brick_furnace" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:slabs/gneiss/brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:gneiss_brick_furnace" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:gneiss_brick_furnace" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:slabs/gneiss/brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/gneiss_brick_slab.json b/src/main/resources/data/mineralogy/advancement/recipes/gneiss_brick_slab.json index 1d7199781..422f1cd32 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/gneiss_brick_slab.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/gneiss_brick_slab.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:gneiss_brick_slab" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:gneiss_brick_slab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:gneiss_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:gneiss_brick_slab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:gneiss_brick_slab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:gneiss_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/gneiss_brick_slab_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/gneiss_brick_slab_polishing.json index baef0a926..4219fdd65 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/gneiss_brick_slab_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/gneiss_brick_slab_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:gneiss_brick_slab_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:gneiss_brick_slab_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:gneiss_brick_slab" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:gneiss_brick_slab_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:gneiss_brick_slab_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:gneiss_brick_slab" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/gneiss_brick_slab_recombination.json b/src/main/resources/data/mineralogy/advancement/recipes/gneiss_brick_slab_recombination.json index 10f4a8b30..99cb0e78b 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/gneiss_brick_slab_recombination.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/gneiss_brick_slab_recombination.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:gneiss_brick_slab_recombination" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:gneiss_brick_slab_recombination" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:gneiss_brick_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:gneiss_brick_slab_recombination" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:gneiss_brick_slab_recombination" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:gneiss_brick_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/gneiss_brick_stairs.json b/src/main/resources/data/mineralogy/advancement/recipes/gneiss_brick_stairs.json index 3776a7d32..ff023687e 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/gneiss_brick_stairs.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/gneiss_brick_stairs.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:gneiss_brick_stairs" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:gneiss_brick_stairs" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/gneiss/brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:gneiss_brick_stairs" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:gneiss_brick_stairs" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/gneiss/brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/gneiss_brick_stairs_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/gneiss_brick_stairs_polishing.json index 981f85ec7..ea2d17fec 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/gneiss_brick_stairs_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/gneiss_brick_stairs_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:gneiss_brick_stairs_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:gneiss_brick_stairs_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:gneiss_brick_stairs" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:gneiss_brick_stairs_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:gneiss_brick_stairs_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:gneiss_brick_stairs" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/gneiss_brick_wall.json b/src/main/resources/data/mineralogy/advancement/recipes/gneiss_brick_wall.json index ba641beee..26b0eace3 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/gneiss_brick_wall.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/gneiss_brick_wall.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:gneiss_brick_wall" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:gneiss_brick_wall" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/gneiss/brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:gneiss_brick_wall" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:gneiss_brick_wall" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/gneiss/brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/gneiss_brick_wall_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/gneiss_brick_wall_polishing.json index 885712a34..352431a48 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/gneiss_brick_wall_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/gneiss_brick_wall_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:gneiss_brick_wall_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:gneiss_brick_wall_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:gneiss_brick_wall" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:gneiss_brick_wall_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:gneiss_brick_wall_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:gneiss_brick_wall" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/gneiss_cobblestone.json b/src/main/resources/data/mineralogy/advancement/recipes/gneiss_cobblestone.json index 8c4f6a9d1..4dc8247cf 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/gneiss_cobblestone.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/gneiss_cobblestone.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:gneiss_cobblestone" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:gneiss_cobblestone" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/gneiss" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:gneiss_cobblestone" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:gneiss_cobblestone" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/gneiss" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/gneiss_furnace.json b/src/main/resources/data/mineralogy/advancement/recipes/gneiss_furnace.json index 3bd9dbc72..1bb7fa285 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/gneiss_furnace.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/gneiss_furnace.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:gneiss_furnace" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:gneiss_furnace" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:slabs/gneiss" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:gneiss_furnace" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:gneiss_furnace" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:slabs/gneiss" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/gneiss_polished_brick_slab_recombination.json b/src/main/resources/data/mineralogy/advancement/recipes/gneiss_polished_brick_slab_recombination.json index 7d8c24b5d..702d16f13 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/gneiss_polished_brick_slab_recombination.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/gneiss_polished_brick_slab_recombination.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:gneiss_polished_brick_slab_recombination" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:gneiss_polished_brick_slab_recombination" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:gneiss_smooth_brick_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:gneiss_polished_brick_slab_recombination" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:gneiss_polished_brick_slab_recombination" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:gneiss_smooth_brick_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/gneiss_polished_slab_recombination.json b/src/main/resources/data/mineralogy/advancement/recipes/gneiss_polished_slab_recombination.json index 92305421a..f1bb687c2 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/gneiss_polished_slab_recombination.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/gneiss_polished_slab_recombination.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:gneiss_polished_slab_recombination" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:gneiss_polished_slab_recombination" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:gneiss_smooth_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:gneiss_polished_slab_recombination" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:gneiss_polished_slab_recombination" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:gneiss_smooth_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/gneiss_polished_slabs_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/gneiss_polished_slabs_to_brick.json index 5b3206dad..65c91b24b 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/gneiss_polished_slabs_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/gneiss_polished_slabs_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:gneiss_polished_slabs_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:gneiss_polished_slabs_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:gneiss_smooth_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:gneiss_polished_slabs_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:gneiss_polished_slabs_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:gneiss_smooth_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/gneiss_polished_stairs_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/gneiss_polished_stairs_to_brick.json index e2e1fbd80..f37d1897b 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/gneiss_polished_stairs_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/gneiss_polished_stairs_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:gneiss_polished_stairs_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:gneiss_polished_stairs_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:gneiss_smooth_stairs" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:gneiss_polished_stairs_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:gneiss_polished_stairs_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:gneiss_smooth_stairs" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/gneiss_polished_walls_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/gneiss_polished_walls_to_brick.json index f9afc543d..93a6d824b 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/gneiss_polished_walls_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/gneiss_polished_walls_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:gneiss_polished_walls_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:gneiss_polished_walls_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:gneiss_smooth_wall" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:gneiss_polished_walls_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:gneiss_polished_walls_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:gneiss_smooth_wall" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/gneiss_raw_slab_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/gneiss_raw_slab_polishing.json index 1c6fba69f..df62e50e5 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/gneiss_raw_slab_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/gneiss_raw_slab_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:gneiss_raw_slab_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:gneiss_raw_slab_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:gneiss_slab" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:gneiss_raw_slab_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:gneiss_raw_slab_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:gneiss_slab" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/gneiss_raw_slab_recombination.json b/src/main/resources/data/mineralogy/advancement/recipes/gneiss_raw_slab_recombination.json index f81cb9738..03a02444f 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/gneiss_raw_slab_recombination.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/gneiss_raw_slab_recombination.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:gneiss_raw_slab_recombination" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:gneiss_raw_slab_recombination" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:gneiss_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:gneiss_raw_slab_recombination" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:gneiss_raw_slab_recombination" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:gneiss_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/gneiss_raw_slabs_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/gneiss_raw_slabs_to_brick.json index dbd7eea4f..d0d8d1d81 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/gneiss_raw_slabs_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/gneiss_raw_slabs_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:gneiss_raw_slabs_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:gneiss_raw_slabs_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:gneiss_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:gneiss_raw_slabs_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:gneiss_raw_slabs_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:gneiss_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/gneiss_raw_stairs_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/gneiss_raw_stairs_polishing.json index bc53ae269..0ffad4e5f 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/gneiss_raw_stairs_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/gneiss_raw_stairs_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:gneiss_raw_stairs_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:gneiss_raw_stairs_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:gneiss_stairs" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:gneiss_raw_stairs_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:gneiss_raw_stairs_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:gneiss_stairs" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/gneiss_raw_stairs_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/gneiss_raw_stairs_to_brick.json index 239b1547b..a61b5656a 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/gneiss_raw_stairs_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/gneiss_raw_stairs_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:gneiss_raw_stairs_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:gneiss_raw_stairs_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:gneiss_stairs" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:gneiss_raw_stairs_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:gneiss_raw_stairs_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:gneiss_stairs" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/gneiss_raw_wall_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/gneiss_raw_wall_polishing.json index ac11bd291..e8f544eb0 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/gneiss_raw_wall_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/gneiss_raw_wall_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:gneiss_raw_wall_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:gneiss_raw_wall_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:gneiss_wall" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:gneiss_raw_wall_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:gneiss_raw_wall_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:gneiss_wall" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/gneiss_raw_walls_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/gneiss_raw_walls_to_brick.json index 4c01d9b29..a07bbb9b7 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/gneiss_raw_walls_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/gneiss_raw_walls_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:gneiss_raw_walls_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:gneiss_raw_walls_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:gneiss_wall" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:gneiss_raw_walls_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:gneiss_raw_walls_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:gneiss_wall" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/gneiss_relief_axe.json b/src/main/resources/data/mineralogy/advancement/recipes/gneiss_relief_axe.json index fe2306321..8222157dd 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/gneiss_relief_axe.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/gneiss_relief_axe.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:gneiss_relief_axe" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:gneiss_relief_axe" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:gneiss_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:gneiss_relief_axe" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:gneiss_relief_axe" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:gneiss_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/gneiss_relief_blank.json b/src/main/resources/data/mineralogy/advancement/recipes/gneiss_relief_blank.json index 1ad3e698f..8e0f84ea2 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/gneiss_relief_blank.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/gneiss_relief_blank.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:gneiss_relief_blank" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:gneiss_relief_blank" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:gneiss_smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:gneiss_relief_blank" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:gneiss_relief_blank" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:gneiss_smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/gneiss_relief_cross.json b/src/main/resources/data/mineralogy/advancement/recipes/gneiss_relief_cross.json index 6f48d3d10..21a843c3c 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/gneiss_relief_cross.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/gneiss_relief_cross.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:gneiss_relief_cross" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:gneiss_relief_cross" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:gneiss_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:gneiss_relief_cross" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:gneiss_relief_cross" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:gneiss_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/gneiss_relief_hammer.json b/src/main/resources/data/mineralogy/advancement/recipes/gneiss_relief_hammer.json index cd8984144..0ca13872a 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/gneiss_relief_hammer.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/gneiss_relief_hammer.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:gneiss_relief_hammer" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:gneiss_relief_hammer" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:gneiss_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:gneiss_relief_hammer" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:gneiss_relief_hammer" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:gneiss_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/gneiss_relief_hoe.json b/src/main/resources/data/mineralogy/advancement/recipes/gneiss_relief_hoe.json index 89c2040c5..244990ec5 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/gneiss_relief_hoe.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/gneiss_relief_hoe.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:gneiss_relief_hoe" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:gneiss_relief_hoe" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:gneiss_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:gneiss_relief_hoe" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:gneiss_relief_hoe" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:gneiss_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/gneiss_relief_horizontal.json b/src/main/resources/data/mineralogy/advancement/recipes/gneiss_relief_horizontal.json index 430a84381..bd8c6806c 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/gneiss_relief_horizontal.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/gneiss_relief_horizontal.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:gneiss_relief_horizontal" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:gneiss_relief_horizontal" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:gneiss_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:gneiss_relief_horizontal" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:gneiss_relief_horizontal" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:gneiss_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/gneiss_relief_i.json b/src/main/resources/data/mineralogy/advancement/recipes/gneiss_relief_i.json index 27a3b5f4e..f97280959 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/gneiss_relief_i.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/gneiss_relief_i.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:gneiss_relief_i" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:gneiss_relief_i" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:gneiss_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:gneiss_relief_i" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:gneiss_relief_i" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:gneiss_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/gneiss_relief_left.json b/src/main/resources/data/mineralogy/advancement/recipes/gneiss_relief_left.json index 79f8ce386..3cdb018a5 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/gneiss_relief_left.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/gneiss_relief_left.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:gneiss_relief_left" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:gneiss_relief_left" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:gneiss_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:gneiss_relief_left" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:gneiss_relief_left" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:gneiss_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/gneiss_relief_pickaxe.json b/src/main/resources/data/mineralogy/advancement/recipes/gneiss_relief_pickaxe.json index f62be5b9e..db3145063 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/gneiss_relief_pickaxe.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/gneiss_relief_pickaxe.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:gneiss_relief_pickaxe" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:gneiss_relief_pickaxe" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:gneiss_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:gneiss_relief_pickaxe" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:gneiss_relief_pickaxe" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:gneiss_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/gneiss_relief_plus.json b/src/main/resources/data/mineralogy/advancement/recipes/gneiss_relief_plus.json index df2145f80..18e196f4a 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/gneiss_relief_plus.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/gneiss_relief_plus.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:gneiss_relief_plus" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:gneiss_relief_plus" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:gneiss_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:gneiss_relief_plus" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:gneiss_relief_plus" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:gneiss_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/gneiss_relief_right.json b/src/main/resources/data/mineralogy/advancement/recipes/gneiss_relief_right.json index df0ae8fff..d7f377a63 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/gneiss_relief_right.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/gneiss_relief_right.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:gneiss_relief_right" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:gneiss_relief_right" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:gneiss_relief_left" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:gneiss_relief_right" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:gneiss_relief_right" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:gneiss_relief_left" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/gneiss_relief_sword.json b/src/main/resources/data/mineralogy/advancement/recipes/gneiss_relief_sword.json index 9966ffd40..7d95398c5 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/gneiss_relief_sword.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/gneiss_relief_sword.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:gneiss_relief_sword" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:gneiss_relief_sword" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:gneiss_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:gneiss_relief_sword" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:gneiss_relief_sword" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:gneiss_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/gneiss_relief_vertical.json b/src/main/resources/data/mineralogy/advancement/recipes/gneiss_relief_vertical.json index eba13f335..4946d7dc2 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/gneiss_relief_vertical.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/gneiss_relief_vertical.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:gneiss_relief_vertical" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:gneiss_relief_vertical" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:gneiss_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:gneiss_relief_vertical" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:gneiss_relief_vertical" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:gneiss_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/gneiss_slab.json b/src/main/resources/data/mineralogy/advancement/recipes/gneiss_slab.json index 745f27d74..267dff39f 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/gneiss_slab.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/gneiss_slab.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:gneiss_slab" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:gneiss_slab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:gneiss" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:gneiss_slab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:gneiss_slab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:gneiss" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/gneiss_smooth.json b/src/main/resources/data/mineralogy/advancement/recipes/gneiss_smooth.json index 29f69724f..277603b6c 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/gneiss_smooth.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/gneiss_smooth.json @@ -1,48 +1,46 @@ { - "rewards": { - "recipes": [ - "mineralogy:gneiss_smooth" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:gneiss_smooth" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/gneiss" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:gneiss_smooth" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:gneiss_smooth" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/gneiss" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/gneiss_smooth_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/gneiss_smooth_brick.json index 0c94c908b..29930ba8a 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/gneiss_smooth_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/gneiss_smooth_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:gneiss_smooth_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:gneiss_smooth_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/gneiss/smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:gneiss_smooth_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:gneiss_smooth_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/gneiss/smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/gneiss_smooth_brick_furnace.json b/src/main/resources/data/mineralogy/advancement/recipes/gneiss_smooth_brick_furnace.json index b9345f1da..90e4a9c06 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/gneiss_smooth_brick_furnace.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/gneiss_smooth_brick_furnace.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:gneiss_smooth_brick_furnace" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:gneiss_smooth_brick_furnace" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:slabs/gneiss/smooth_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:gneiss_smooth_brick_furnace" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:gneiss_smooth_brick_furnace" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:slabs/gneiss/smooth_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/gneiss_smooth_brick_slab.json b/src/main/resources/data/mineralogy/advancement/recipes/gneiss_smooth_brick_slab.json index 901f7d124..40ec66a1e 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/gneiss_smooth_brick_slab.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/gneiss_smooth_brick_slab.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:gneiss_smooth_brick_slab" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:gneiss_smooth_brick_slab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:gneiss_smooth_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:gneiss_smooth_brick_slab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:gneiss_smooth_brick_slab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:gneiss_smooth_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/gneiss_smooth_brick_stairs.json b/src/main/resources/data/mineralogy/advancement/recipes/gneiss_smooth_brick_stairs.json index 954ddf8b3..109d034dd 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/gneiss_smooth_brick_stairs.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/gneiss_smooth_brick_stairs.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:gneiss_smooth_brick_stairs" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:gneiss_smooth_brick_stairs" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/gneiss/smooth_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:gneiss_smooth_brick_stairs" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:gneiss_smooth_brick_stairs" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/gneiss/smooth_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/gneiss_smooth_brick_wall.json b/src/main/resources/data/mineralogy/advancement/recipes/gneiss_smooth_brick_wall.json index 26a97ed2e..f29d12749 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/gneiss_smooth_brick_wall.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/gneiss_smooth_brick_wall.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:gneiss_smooth_brick_wall" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:gneiss_smooth_brick_wall" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/gneiss/smooth_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:gneiss_smooth_brick_wall" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:gneiss_smooth_brick_wall" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/gneiss/smooth_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/gneiss_smooth_furnace.json b/src/main/resources/data/mineralogy/advancement/recipes/gneiss_smooth_furnace.json index c1e8548f5..a757fc0c9 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/gneiss_smooth_furnace.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/gneiss_smooth_furnace.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:gneiss_smooth_furnace" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:gneiss_smooth_furnace" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:slabs/gneiss/smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:gneiss_smooth_furnace" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:gneiss_smooth_furnace" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:slabs/gneiss/smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/gneiss_smooth_slab.json b/src/main/resources/data/mineralogy/advancement/recipes/gneiss_smooth_slab.json index 8b0596d50..c0c0c4b3a 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/gneiss_smooth_slab.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/gneiss_smooth_slab.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:gneiss_smooth_slab" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:gneiss_smooth_slab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:gneiss_smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:gneiss_smooth_slab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:gneiss_smooth_slab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:gneiss_smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/gneiss_smooth_stairs.json b/src/main/resources/data/mineralogy/advancement/recipes/gneiss_smooth_stairs.json index 9cccd45b3..b8b92646f 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/gneiss_smooth_stairs.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/gneiss_smooth_stairs.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:gneiss_smooth_stairs" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:gneiss_smooth_stairs" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/gneiss/smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:gneiss_smooth_stairs" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:gneiss_smooth_stairs" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/gneiss/smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/gneiss_smooth_wall.json b/src/main/resources/data/mineralogy/advancement/recipes/gneiss_smooth_wall.json index 48b9fb8db..14bcfdefd 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/gneiss_smooth_wall.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/gneiss_smooth_wall.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:gneiss_smooth_wall" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:gneiss_smooth_wall" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/gneiss/smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:gneiss_smooth_wall" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:gneiss_smooth_wall" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/gneiss/smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/gneiss_stairs.json b/src/main/resources/data/mineralogy/advancement/recipes/gneiss_stairs.json index 5099cb19b..522a3804d 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/gneiss_stairs.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/gneiss_stairs.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:gneiss_stairs" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:gneiss_stairs" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/gneiss" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:gneiss_stairs" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:gneiss_stairs" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/gneiss" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/gneiss_to_stone.json b/src/main/resources/data/mineralogy/advancement/recipes/gneiss_to_stone.json index 9ae00f869..9c2671881 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/gneiss_to_stone.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/gneiss_to_stone.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:gneiss_to_stone" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:gneiss_to_stone" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:gneiss" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:gneiss_to_stone" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:gneiss_to_stone" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:gneiss" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/gneiss_wall.json b/src/main/resources/data/mineralogy/advancement/recipes/gneiss_wall.json index ce6057e12..5a922bf90 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/gneiss_wall.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/gneiss_wall.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:gneiss_wall" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:gneiss_wall" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/gneiss" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:gneiss_wall" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:gneiss_wall" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/gneiss" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/granite_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/granite_brick.json index 6cd664bc2..5c86e6a75 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/granite_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/granite_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:granite_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:granite_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/granite" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:granite_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:granite_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/granite" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/granite_brick_block_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/granite_brick_block_polishing.json index 137412b38..93a28f575 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/granite_brick_block_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/granite_brick_block_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:granite_brick_block_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:granite_brick_block_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:granite_brick" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:granite_brick_block_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:granite_brick_block_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:granite_brick" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/granite_brick_furnace.json b/src/main/resources/data/mineralogy/advancement/recipes/granite_brick_furnace.json index 890cce39c..572bbc45e 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/granite_brick_furnace.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/granite_brick_furnace.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:granite_brick_furnace" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:granite_brick_furnace" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:slabs/granite/brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:granite_brick_furnace" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:granite_brick_furnace" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:slabs/granite/brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/granite_brick_slab.json b/src/main/resources/data/mineralogy/advancement/recipes/granite_brick_slab.json index 3b57948c7..308837bd9 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/granite_brick_slab.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/granite_brick_slab.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:granite_brick_slab" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:granite_brick_slab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:granite_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:granite_brick_slab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:granite_brick_slab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:granite_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/granite_brick_slab_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/granite_brick_slab_polishing.json index f80990c4b..6beb61ec4 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/granite_brick_slab_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/granite_brick_slab_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:granite_brick_slab_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:granite_brick_slab_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:granite_brick_slab" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:granite_brick_slab_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:granite_brick_slab_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:granite_brick_slab" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/granite_brick_slab_recombination.json b/src/main/resources/data/mineralogy/advancement/recipes/granite_brick_slab_recombination.json index fb99e99e2..9605b4e9a 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/granite_brick_slab_recombination.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/granite_brick_slab_recombination.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:granite_brick_slab_recombination" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:granite_brick_slab_recombination" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:granite_brick_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:granite_brick_slab_recombination" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:granite_brick_slab_recombination" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:granite_brick_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/granite_brick_stairs.json b/src/main/resources/data/mineralogy/advancement/recipes/granite_brick_stairs.json index 2cd12dba7..2fda0d9e0 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/granite_brick_stairs.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/granite_brick_stairs.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:granite_brick_stairs" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:granite_brick_stairs" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/granite/brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:granite_brick_stairs" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:granite_brick_stairs" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/granite/brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/granite_brick_stairs_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/granite_brick_stairs_polishing.json index fcb98fde7..c86167442 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/granite_brick_stairs_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/granite_brick_stairs_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:granite_brick_stairs_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:granite_brick_stairs_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:granite_brick_stairs" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:granite_brick_stairs_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:granite_brick_stairs_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:granite_brick_stairs" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/granite_brick_wall.json b/src/main/resources/data/mineralogy/advancement/recipes/granite_brick_wall.json index 4ba301d09..065ed7639 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/granite_brick_wall.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/granite_brick_wall.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:granite_brick_wall" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:granite_brick_wall" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/granite/brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:granite_brick_wall" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:granite_brick_wall" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/granite/brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/granite_brick_wall_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/granite_brick_wall_polishing.json index 2decc337f..98124a36a 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/granite_brick_wall_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/granite_brick_wall_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:granite_brick_wall_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:granite_brick_wall_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:granite_brick_wall" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:granite_brick_wall_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:granite_brick_wall_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:granite_brick_wall" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/granite_cobblestone.json b/src/main/resources/data/mineralogy/advancement/recipes/granite_cobblestone.json index 7d18e69e7..5ecd1c5cb 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/granite_cobblestone.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/granite_cobblestone.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:granite_cobblestone" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:granite_cobblestone" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/granite" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:granite_cobblestone" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:granite_cobblestone" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/granite" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/granite_furnace.json b/src/main/resources/data/mineralogy/advancement/recipes/granite_furnace.json index ad501dd30..0668e6d1b 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/granite_furnace.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/granite_furnace.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:granite_furnace" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:granite_furnace" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:slabs/granite" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:granite_furnace" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:granite_furnace" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:slabs/granite" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/granite_polished_brick_slab_recombination.json b/src/main/resources/data/mineralogy/advancement/recipes/granite_polished_brick_slab_recombination.json index 274217f67..d766c348e 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/granite_polished_brick_slab_recombination.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/granite_polished_brick_slab_recombination.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:granite_polished_brick_slab_recombination" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:granite_polished_brick_slab_recombination" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:granite_smooth_brick_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:granite_polished_brick_slab_recombination" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:granite_polished_brick_slab_recombination" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:granite_smooth_brick_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/granite_polished_slab_recombination.json b/src/main/resources/data/mineralogy/advancement/recipes/granite_polished_slab_recombination.json index ab70d9fa8..3bc03d0fb 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/granite_polished_slab_recombination.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/granite_polished_slab_recombination.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:granite_polished_slab_recombination" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:granite_polished_slab_recombination" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:granite_smooth_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:granite_polished_slab_recombination" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:granite_polished_slab_recombination" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:granite_smooth_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/granite_polished_slabs_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/granite_polished_slabs_to_brick.json index dd1fe7bd8..360a4fbc4 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/granite_polished_slabs_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/granite_polished_slabs_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:granite_polished_slabs_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:granite_polished_slabs_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:granite_smooth_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:granite_polished_slabs_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:granite_polished_slabs_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:granite_smooth_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/granite_polished_stairs_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/granite_polished_stairs_to_brick.json index b094ea958..de16a9420 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/granite_polished_stairs_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/granite_polished_stairs_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:granite_polished_stairs_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:granite_polished_stairs_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:granite_smooth_stairs" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:granite_polished_stairs_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:granite_polished_stairs_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:granite_smooth_stairs" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/granite_polished_walls_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/granite_polished_walls_to_brick.json index 1c39024e9..c18e3387b 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/granite_polished_walls_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/granite_polished_walls_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:granite_polished_walls_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:granite_polished_walls_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:granite_smooth_wall" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:granite_polished_walls_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:granite_polished_walls_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:granite_smooth_wall" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/granite_raw_slab_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/granite_raw_slab_polishing.json index f1d64b9b4..2b16aa2d7 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/granite_raw_slab_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/granite_raw_slab_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:granite_raw_slab_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:granite_raw_slab_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:granite_slab" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:granite_raw_slab_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:granite_raw_slab_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:granite_slab" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/granite_raw_slab_recombination.json b/src/main/resources/data/mineralogy/advancement/recipes/granite_raw_slab_recombination.json index 38ca15842..abf66dd55 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/granite_raw_slab_recombination.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/granite_raw_slab_recombination.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:granite_raw_slab_recombination" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:granite_raw_slab_recombination" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:granite_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:granite_raw_slab_recombination" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:granite_raw_slab_recombination" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:granite_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/granite_raw_slabs_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/granite_raw_slabs_to_brick.json index 34516d9e1..c75adec49 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/granite_raw_slabs_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/granite_raw_slabs_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:granite_raw_slabs_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:granite_raw_slabs_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:granite_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:granite_raw_slabs_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:granite_raw_slabs_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:granite_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/granite_raw_stairs_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/granite_raw_stairs_polishing.json index e29473f7c..3c95c6744 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/granite_raw_stairs_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/granite_raw_stairs_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:granite_raw_stairs_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:granite_raw_stairs_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:granite_stairs" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:granite_raw_stairs_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:granite_raw_stairs_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:granite_stairs" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/granite_raw_stairs_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/granite_raw_stairs_to_brick.json index e5a0cacb7..6114965c4 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/granite_raw_stairs_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/granite_raw_stairs_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:granite_raw_stairs_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:granite_raw_stairs_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:granite_stairs" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:granite_raw_stairs_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:granite_raw_stairs_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:granite_stairs" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/granite_raw_wall_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/granite_raw_wall_polishing.json index b63aa052c..c3fa2ed89 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/granite_raw_wall_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/granite_raw_wall_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:granite_raw_wall_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:granite_raw_wall_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:granite_wall" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:granite_raw_wall_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:granite_raw_wall_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:granite_wall" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/granite_raw_walls_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/granite_raw_walls_to_brick.json index cd08dafa0..ed37fe043 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/granite_raw_walls_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/granite_raw_walls_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:granite_raw_walls_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:granite_raw_walls_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:granite_wall" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:granite_raw_walls_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:granite_raw_walls_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:granite_wall" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/granite_relief_axe.json b/src/main/resources/data/mineralogy/advancement/recipes/granite_relief_axe.json index 455382ea5..edf9fa25c 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/granite_relief_axe.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/granite_relief_axe.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:granite_relief_axe" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:granite_relief_axe" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:granite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:granite_relief_axe" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:granite_relief_axe" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:granite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/granite_relief_blank.json b/src/main/resources/data/mineralogy/advancement/recipes/granite_relief_blank.json index 713ea3b5c..6c663cea8 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/granite_relief_blank.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/granite_relief_blank.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:granite_relief_blank" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:granite_relief_blank" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/granite/smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:granite_relief_blank" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:granite_relief_blank" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/granite/smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/granite_relief_cross.json b/src/main/resources/data/mineralogy/advancement/recipes/granite_relief_cross.json index f3f0c9b39..081b5c919 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/granite_relief_cross.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/granite_relief_cross.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:granite_relief_cross" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:granite_relief_cross" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:granite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:granite_relief_cross" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:granite_relief_cross" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:granite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/granite_relief_hammer.json b/src/main/resources/data/mineralogy/advancement/recipes/granite_relief_hammer.json index 7657e9ccc..6fdfc916b 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/granite_relief_hammer.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/granite_relief_hammer.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:granite_relief_hammer" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:granite_relief_hammer" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:granite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:granite_relief_hammer" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:granite_relief_hammer" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:granite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/granite_relief_hoe.json b/src/main/resources/data/mineralogy/advancement/recipes/granite_relief_hoe.json index 91672cb19..de2b4687b 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/granite_relief_hoe.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/granite_relief_hoe.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:granite_relief_hoe" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:granite_relief_hoe" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:granite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:granite_relief_hoe" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:granite_relief_hoe" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:granite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/granite_relief_horizontal.json b/src/main/resources/data/mineralogy/advancement/recipes/granite_relief_horizontal.json index 905957535..6e817f51a 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/granite_relief_horizontal.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/granite_relief_horizontal.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:granite_relief_horizontal" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:granite_relief_horizontal" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:granite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:granite_relief_horizontal" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:granite_relief_horizontal" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:granite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/granite_relief_i.json b/src/main/resources/data/mineralogy/advancement/recipes/granite_relief_i.json index e8d77bb12..b60aa0404 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/granite_relief_i.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/granite_relief_i.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:granite_relief_i" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:granite_relief_i" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:granite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:granite_relief_i" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:granite_relief_i" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:granite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/granite_relief_left.json b/src/main/resources/data/mineralogy/advancement/recipes/granite_relief_left.json index 01311e4f6..039f81d35 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/granite_relief_left.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/granite_relief_left.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:granite_relief_left" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:granite_relief_left" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:granite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:granite_relief_left" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:granite_relief_left" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:granite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/granite_relief_pickaxe.json b/src/main/resources/data/mineralogy/advancement/recipes/granite_relief_pickaxe.json index 53d51d6da..30ae6fc90 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/granite_relief_pickaxe.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/granite_relief_pickaxe.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:granite_relief_pickaxe" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:granite_relief_pickaxe" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:granite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:granite_relief_pickaxe" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:granite_relief_pickaxe" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:granite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/granite_relief_plus.json b/src/main/resources/data/mineralogy/advancement/recipes/granite_relief_plus.json index 8e31d5185..9156457e7 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/granite_relief_plus.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/granite_relief_plus.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:granite_relief_plus" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:granite_relief_plus" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:granite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:granite_relief_plus" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:granite_relief_plus" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:granite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/granite_relief_right.json b/src/main/resources/data/mineralogy/advancement/recipes/granite_relief_right.json index 4dfba3e18..aeac8d525 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/granite_relief_right.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/granite_relief_right.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:granite_relief_right" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:granite_relief_right" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:granite_relief_left" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:granite_relief_right" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:granite_relief_right" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:granite_relief_left" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/granite_relief_sword.json b/src/main/resources/data/mineralogy/advancement/recipes/granite_relief_sword.json index 5fc5ae23e..bdd720be5 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/granite_relief_sword.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/granite_relief_sword.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:granite_relief_sword" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:granite_relief_sword" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:granite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:granite_relief_sword" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:granite_relief_sword" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:granite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/granite_relief_vertical.json b/src/main/resources/data/mineralogy/advancement/recipes/granite_relief_vertical.json index bc8b9c528..28873a34c 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/granite_relief_vertical.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/granite_relief_vertical.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:granite_relief_vertical" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:granite_relief_vertical" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:granite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:granite_relief_vertical" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:granite_relief_vertical" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:granite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/granite_slab.json b/src/main/resources/data/mineralogy/advancement/recipes/granite_slab.json index d14ba78f3..6a107f8ad 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/granite_slab.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/granite_slab.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:granite_slab" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:granite_slab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:granite" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:granite_slab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:granite_slab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:granite" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/granite_slab_from_vanilla.json b/src/main/resources/data/mineralogy/advancement/recipes/granite_slab_from_vanilla.json index ff2314103..79bf0e2e8 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/granite_slab_from_vanilla.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/granite_slab_from_vanilla.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:granite_slab_from_vanilla" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:granite_slab_from_vanilla" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "minecraft:granite_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:granite_slab_from_vanilla" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:granite_slab_from_vanilla" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:granite_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/granite_slab_to_vanilla.json b/src/main/resources/data/mineralogy/advancement/recipes/granite_slab_to_vanilla.json index d80b6e431..fa07f647a 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/granite_slab_to_vanilla.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/granite_slab_to_vanilla.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:granite_slab_to_vanilla" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:granite_slab_to_vanilla" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:granite_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:granite_slab_to_vanilla" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:granite_slab_to_vanilla" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:granite_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/granite_smooth.json b/src/main/resources/data/mineralogy/advancement/recipes/granite_smooth.json index c7e5e2c49..7f37d2ed2 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/granite_smooth.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/granite_smooth.json @@ -1,48 +1,46 @@ { - "rewards": { - "recipes": [ - "mineralogy:granite_smooth" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:granite_smooth" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:granite" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:granite_smooth" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:granite_smooth" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:granite" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/granite_smooth_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/granite_smooth_brick.json index e79a33eb1..b81ac844c 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/granite_smooth_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/granite_smooth_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:granite_smooth_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:granite_smooth_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/granite/smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:granite_smooth_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:granite_smooth_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/granite/smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/granite_smooth_brick_furnace.json b/src/main/resources/data/mineralogy/advancement/recipes/granite_smooth_brick_furnace.json index aacf5c9a6..e8b80ca69 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/granite_smooth_brick_furnace.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/granite_smooth_brick_furnace.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:granite_smooth_brick_furnace" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:granite_smooth_brick_furnace" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:slabs/granite/smooth_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:granite_smooth_brick_furnace" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:granite_smooth_brick_furnace" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:slabs/granite/smooth_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/granite_smooth_brick_slab.json b/src/main/resources/data/mineralogy/advancement/recipes/granite_smooth_brick_slab.json index b4d374896..bc5706995 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/granite_smooth_brick_slab.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/granite_smooth_brick_slab.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:granite_smooth_brick_slab" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:granite_smooth_brick_slab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:granite_smooth_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:granite_smooth_brick_slab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:granite_smooth_brick_slab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:granite_smooth_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/granite_smooth_brick_stairs.json b/src/main/resources/data/mineralogy/advancement/recipes/granite_smooth_brick_stairs.json index 4b4c3865c..bfbf7fd45 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/granite_smooth_brick_stairs.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/granite_smooth_brick_stairs.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:granite_smooth_brick_stairs" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:granite_smooth_brick_stairs" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/granite/smooth_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:granite_smooth_brick_stairs" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:granite_smooth_brick_stairs" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/granite/smooth_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/granite_smooth_brick_wall.json b/src/main/resources/data/mineralogy/advancement/recipes/granite_smooth_brick_wall.json index f77e69120..19b23d6e2 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/granite_smooth_brick_wall.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/granite_smooth_brick_wall.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:granite_smooth_brick_wall" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:granite_smooth_brick_wall" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/granite/smooth_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:granite_smooth_brick_wall" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:granite_smooth_brick_wall" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/granite/smooth_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/granite_smooth_furnace.json b/src/main/resources/data/mineralogy/advancement/recipes/granite_smooth_furnace.json index db0a1984e..1f6de7f7d 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/granite_smooth_furnace.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/granite_smooth_furnace.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:granite_smooth_furnace" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:granite_smooth_furnace" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:slabs/granite/smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:granite_smooth_furnace" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:granite_smooth_furnace" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:slabs/granite/smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/granite_smooth_slab.json b/src/main/resources/data/mineralogy/advancement/recipes/granite_smooth_slab.json index 4c01bdb88..e2c6ab2dc 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/granite_smooth_slab.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/granite_smooth_slab.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:granite_smooth_slab" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:granite_smooth_slab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:granite_smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:granite_smooth_slab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:granite_smooth_slab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:granite_smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/granite_smooth_slab_from_vanilla.json b/src/main/resources/data/mineralogy/advancement/recipes/granite_smooth_slab_from_vanilla.json index 982b706f9..93cdddc19 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/granite_smooth_slab_from_vanilla.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/granite_smooth_slab_from_vanilla.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:granite_smooth_slab_from_vanilla" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:granite_smooth_slab_from_vanilla" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "minecraft:polished_granite_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:granite_smooth_slab_from_vanilla" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:granite_smooth_slab_from_vanilla" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:polished_granite_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/granite_smooth_slab_to_vanilla.json b/src/main/resources/data/mineralogy/advancement/recipes/granite_smooth_slab_to_vanilla.json index a97b93c98..1a888d1d0 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/granite_smooth_slab_to_vanilla.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/granite_smooth_slab_to_vanilla.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:granite_smooth_slab_to_vanilla" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:granite_smooth_slab_to_vanilla" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:granite_smooth_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:granite_smooth_slab_to_vanilla" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:granite_smooth_slab_to_vanilla" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:granite_smooth_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/granite_smooth_stairs.json b/src/main/resources/data/mineralogy/advancement/recipes/granite_smooth_stairs.json index e7032f2f8..867cc7aa1 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/granite_smooth_stairs.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/granite_smooth_stairs.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:granite_smooth_stairs" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:granite_smooth_stairs" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:granite_smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:granite_smooth_stairs" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:granite_smooth_stairs" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:granite_smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/granite_smooth_wall.json b/src/main/resources/data/mineralogy/advancement/recipes/granite_smooth_wall.json index 27be673fa..78ca0542d 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/granite_smooth_wall.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/granite_smooth_wall.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:granite_smooth_wall" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:granite_smooth_wall" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/granite/smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:granite_smooth_wall" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:granite_smooth_wall" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/granite/smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/granite_stairs.json b/src/main/resources/data/mineralogy/advancement/recipes/granite_stairs.json index 98d4f39a2..57922f485 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/granite_stairs.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/granite_stairs.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:granite_stairs" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:granite_stairs" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:granite" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:granite_stairs" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:granite_stairs" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:granite" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/granite_to_stone.json b/src/main/resources/data/mineralogy/advancement/recipes/granite_to_stone.json index fc76792e5..8ba45d687 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/granite_to_stone.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/granite_to_stone.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:granite_to_stone" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:granite_to_stone" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:granite" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:granite_to_stone" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:granite_to_stone" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:granite" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/granite_wall.json b/src/main/resources/data/mineralogy/advancement/recipes/granite_wall.json index 11abc22a7..3c1d48ea5 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/granite_wall.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/granite_wall.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:granite_wall" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:granite_wall" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:granite" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:granite_wall" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:granite_wall" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:granite" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/gravel_to_stone.json b/src/main/resources/data/mineralogy/advancement/recipes/gravel_to_stone.json index 3ba6fa2df..31cf10753 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/gravel_to_stone.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/gravel_to_stone.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:gravel_to_stone" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:gravel_to_stone" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "minecraft:gravel" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:gravel_to_stone" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:gravel_to_stone" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:gravel" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/gunpowder_from_carbon_dust.json b/src/main/resources/data/mineralogy/advancement/recipes/gunpowder_from_carbon_dust.json index bd6f4855e..4eb754466 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/gunpowder_from_carbon_dust.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/gunpowder_from_carbon_dust.json @@ -1,50 +1,50 @@ { - "neoforge:conditions": [ - { - "type": "neoforge:and", - "values": [ - { - "type": "mineralogy:config", - "flag": "ENABLE_MINERAL_DUSTS" - }, - { - "type": "neoforge:not", - "value": { - "type": "neoforge:tag_empty", - "tag": "c:dusts/carbon" - } - } - ] - } - ], - "rewards": { - "recipes": [ - "mineralogy:gunpowder_from_carbon_dust" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:gunpowder_from_carbon_dust" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:nitrate_dust" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "neoforge:conditions": [ + { + "type": "neoforge:and", + "values": [ + { + "type": "mineralogy:config", + "flag": "ENABLE_MINERAL_DUSTS" + }, + { + "type": "neoforge:not", + "value": { + "type": "neoforge:tag_empty", + "tag": "c:dusts/carbon" + } + } + ] + } + ], + "rewards": { + "recipes": [ + "mineralogy:gunpowder_from_carbon_dust" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:gunpowder_from_carbon_dust" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:nitrate_dust" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/gunpowder_from_charcoal.json b/src/main/resources/data/mineralogy/advancement/recipes/gunpowder_from_charcoal.json index 54c06bbc8..043dfa3d5 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/gunpowder_from_charcoal.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/gunpowder_from_charcoal.json @@ -1,38 +1,38 @@ { - "neoforge:conditions": [ - { - "type": "mineralogy:config", - "flag": "ENABLE_MINERAL_DUSTS" - } - ], - "rewards": { - "recipes": [ - "mineralogy:gunpowder_from_charcoal" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:gunpowder_from_charcoal" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:nitrate_dust" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "neoforge:conditions": [ + { + "type": "mineralogy:config", + "flag": "ENABLE_MINERAL_DUSTS" + } + ], + "rewards": { + "recipes": [ + "mineralogy:gunpowder_from_charcoal" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:gunpowder_from_charcoal" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:nitrate_dust" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/gunpowder_from_coal_dust.json b/src/main/resources/data/mineralogy/advancement/recipes/gunpowder_from_coal_dust.json index f4ed6dde5..ccdf1a3b1 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/gunpowder_from_coal_dust.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/gunpowder_from_coal_dust.json @@ -1,50 +1,50 @@ { - "neoforge:conditions": [ - { - "type": "neoforge:and", - "values": [ - { - "type": "mineralogy:config", - "flag": "ENABLE_MINERAL_DUSTS" - }, - { - "type": "neoforge:not", - "value": { - "type": "neoforge:tag_empty", - "tag": "c:dusts/coal" - } - } - ] - } - ], - "rewards": { - "recipes": [ - "mineralogy:gunpowder_from_coal_dust" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:gunpowder_from_coal_dust" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:nitrate_dust" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "neoforge:conditions": [ + { + "type": "neoforge:and", + "values": [ + { + "type": "mineralogy:config", + "flag": "ENABLE_MINERAL_DUSTS" + }, + { + "type": "neoforge:not", + "value": { + "type": "neoforge:tag_empty", + "tag": "c:dusts/coal" + } + } + ] + } + ], + "rewards": { + "recipes": [ + "mineralogy:gunpowder_from_coal_dust" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:gunpowder_from_coal_dust" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:nitrate_dust" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/gunpowder_from_sugar.json b/src/main/resources/data/mineralogy/advancement/recipes/gunpowder_from_sugar.json index 2ef100088..d133e9927 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/gunpowder_from_sugar.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/gunpowder_from_sugar.json @@ -1,38 +1,38 @@ { - "neoforge:conditions": [ - { - "type": "mineralogy:config", - "flag": "ENABLE_MINERAL_DUSTS" - } - ], - "rewards": { - "recipes": [ - "mineralogy:gunpowder_from_sugar" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:gunpowder_from_sugar" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:nitrate_dust" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "neoforge:conditions": [ + { + "type": "mineralogy:config", + "flag": "ENABLE_MINERAL_DUSTS" + } + ], + "rewards": { + "recipes": [ + "mineralogy:gunpowder_from_sugar" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:gunpowder_from_sugar" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:nitrate_dust" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/gypsum.json b/src/main/resources/data/mineralogy/advancement/recipes/gypsum.json index 55f65211b..09f73d159 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/gypsum.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/gypsum.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:gypsum" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:gypsum" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:gypsum_dust" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:gypsum" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:gypsum" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:gypsum_dust" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/gypsum_dust.json b/src/main/resources/data/mineralogy/advancement/recipes/gypsum_dust.json index 4a40a0d3a..dd9c3652b 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/gypsum_dust.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/gypsum_dust.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:gypsum_dust" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:gypsum_dust" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:gypsum" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:gypsum_dust" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:gypsum_dust" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:gypsum" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/hornfels_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/hornfels_brick.json index b2ee4f81b..f37393164 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/hornfels_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/hornfels_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:hornfels_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:hornfels_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/hornfels" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:hornfels_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:hornfels_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/hornfels" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/hornfels_brick_block_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/hornfels_brick_block_polishing.json index c072cbe57..a5a6865ec 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/hornfels_brick_block_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/hornfels_brick_block_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:hornfels_brick_block_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:hornfels_brick_block_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:hornfels_brick" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:hornfels_brick_block_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:hornfels_brick_block_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:hornfels_brick" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/hornfels_brick_furnace.json b/src/main/resources/data/mineralogy/advancement/recipes/hornfels_brick_furnace.json index d60c5b1ff..59731fe6f 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/hornfels_brick_furnace.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/hornfels_brick_furnace.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:hornfels_brick_furnace" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:hornfels_brick_furnace" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:slabs/hornfels/brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:hornfels_brick_furnace" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:hornfels_brick_furnace" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:slabs/hornfels/brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/hornfels_brick_slab.json b/src/main/resources/data/mineralogy/advancement/recipes/hornfels_brick_slab.json index 366dca07d..2f3f3c618 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/hornfels_brick_slab.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/hornfels_brick_slab.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:hornfels_brick_slab" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:hornfels_brick_slab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:hornfels_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:hornfels_brick_slab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:hornfels_brick_slab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:hornfels_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/hornfels_brick_slab_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/hornfels_brick_slab_polishing.json index 9bb17f3d2..a4c71e736 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/hornfels_brick_slab_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/hornfels_brick_slab_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:hornfels_brick_slab_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:hornfels_brick_slab_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:hornfels_brick_slab" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:hornfels_brick_slab_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:hornfels_brick_slab_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:hornfels_brick_slab" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/hornfels_brick_slab_recombination.json b/src/main/resources/data/mineralogy/advancement/recipes/hornfels_brick_slab_recombination.json index 017b47ca7..8706b01fb 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/hornfels_brick_slab_recombination.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/hornfels_brick_slab_recombination.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:hornfels_brick_slab_recombination" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:hornfels_brick_slab_recombination" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:hornfels_brick_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:hornfels_brick_slab_recombination" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:hornfels_brick_slab_recombination" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:hornfels_brick_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/hornfels_brick_stairs.json b/src/main/resources/data/mineralogy/advancement/recipes/hornfels_brick_stairs.json index ab4c5624e..0f280cace 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/hornfels_brick_stairs.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/hornfels_brick_stairs.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:hornfels_brick_stairs" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:hornfels_brick_stairs" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/hornfels/brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:hornfels_brick_stairs" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:hornfels_brick_stairs" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/hornfels/brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/hornfels_brick_stairs_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/hornfels_brick_stairs_polishing.json index 95f9b8deb..16208f7ad 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/hornfels_brick_stairs_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/hornfels_brick_stairs_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:hornfels_brick_stairs_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:hornfels_brick_stairs_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:hornfels_brick_stairs" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:hornfels_brick_stairs_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:hornfels_brick_stairs_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:hornfels_brick_stairs" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/hornfels_brick_wall.json b/src/main/resources/data/mineralogy/advancement/recipes/hornfels_brick_wall.json index 47086f3b6..7229adfd3 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/hornfels_brick_wall.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/hornfels_brick_wall.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:hornfels_brick_wall" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:hornfels_brick_wall" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/hornfels/brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:hornfels_brick_wall" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:hornfels_brick_wall" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/hornfels/brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/hornfels_brick_wall_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/hornfels_brick_wall_polishing.json index 1dd0af5da..fdb01aaca 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/hornfels_brick_wall_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/hornfels_brick_wall_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:hornfels_brick_wall_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:hornfels_brick_wall_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:hornfels_brick_wall" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:hornfels_brick_wall_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:hornfels_brick_wall_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:hornfels_brick_wall" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/hornfels_cobblestone.json b/src/main/resources/data/mineralogy/advancement/recipes/hornfels_cobblestone.json index c8f6dc40b..f05f077d8 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/hornfels_cobblestone.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/hornfels_cobblestone.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:hornfels_cobblestone" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:hornfels_cobblestone" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/hornfels" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:hornfels_cobblestone" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:hornfels_cobblestone" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/hornfels" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/hornfels_furnace.json b/src/main/resources/data/mineralogy/advancement/recipes/hornfels_furnace.json index 346aab30d..f4597e131 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/hornfels_furnace.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/hornfels_furnace.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:hornfels_furnace" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:hornfels_furnace" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:slabs/hornfels" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:hornfels_furnace" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:hornfels_furnace" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:slabs/hornfels" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/hornfels_polished_brick_slab_recombination.json b/src/main/resources/data/mineralogy/advancement/recipes/hornfels_polished_brick_slab_recombination.json index 141e3e5cf..d9db9a312 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/hornfels_polished_brick_slab_recombination.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/hornfels_polished_brick_slab_recombination.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:hornfels_polished_brick_slab_recombination" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:hornfels_polished_brick_slab_recombination" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:hornfels_smooth_brick_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:hornfels_polished_brick_slab_recombination" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:hornfels_polished_brick_slab_recombination" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:hornfels_smooth_brick_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/hornfels_polished_slab_recombination.json b/src/main/resources/data/mineralogy/advancement/recipes/hornfels_polished_slab_recombination.json index 5ec9f1cc4..2482757f0 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/hornfels_polished_slab_recombination.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/hornfels_polished_slab_recombination.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:hornfels_polished_slab_recombination" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:hornfels_polished_slab_recombination" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:hornfels_smooth_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:hornfels_polished_slab_recombination" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:hornfels_polished_slab_recombination" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:hornfels_smooth_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/hornfels_polished_slabs_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/hornfels_polished_slabs_to_brick.json index c192db67c..436b49609 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/hornfels_polished_slabs_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/hornfels_polished_slabs_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:hornfels_polished_slabs_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:hornfels_polished_slabs_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:hornfels_smooth_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:hornfels_polished_slabs_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:hornfels_polished_slabs_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:hornfels_smooth_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/hornfels_polished_stairs_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/hornfels_polished_stairs_to_brick.json index d854be213..12ee1ad78 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/hornfels_polished_stairs_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/hornfels_polished_stairs_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:hornfels_polished_stairs_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:hornfels_polished_stairs_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:hornfels_smooth_stairs" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:hornfels_polished_stairs_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:hornfels_polished_stairs_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:hornfels_smooth_stairs" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/hornfels_polished_walls_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/hornfels_polished_walls_to_brick.json index 1d4a24d1b..56a30a167 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/hornfels_polished_walls_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/hornfels_polished_walls_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:hornfels_polished_walls_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:hornfels_polished_walls_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:hornfels_smooth_wall" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:hornfels_polished_walls_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:hornfels_polished_walls_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:hornfels_smooth_wall" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/hornfels_raw_slab_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/hornfels_raw_slab_polishing.json index f3a662437..8aa49938b 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/hornfels_raw_slab_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/hornfels_raw_slab_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:hornfels_raw_slab_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:hornfels_raw_slab_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:hornfels_slab" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:hornfels_raw_slab_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:hornfels_raw_slab_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:hornfels_slab" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/hornfels_raw_slab_recombination.json b/src/main/resources/data/mineralogy/advancement/recipes/hornfels_raw_slab_recombination.json index be5f11f92..6db183c6d 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/hornfels_raw_slab_recombination.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/hornfels_raw_slab_recombination.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:hornfels_raw_slab_recombination" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:hornfels_raw_slab_recombination" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:hornfels_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:hornfels_raw_slab_recombination" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:hornfels_raw_slab_recombination" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:hornfels_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/hornfels_raw_slabs_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/hornfels_raw_slabs_to_brick.json index 4270dceae..356eb0ce2 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/hornfels_raw_slabs_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/hornfels_raw_slabs_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:hornfels_raw_slabs_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:hornfels_raw_slabs_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:hornfels_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:hornfels_raw_slabs_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:hornfels_raw_slabs_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:hornfels_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/hornfels_raw_stairs_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/hornfels_raw_stairs_polishing.json index 341583a40..d0331a4ac 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/hornfels_raw_stairs_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/hornfels_raw_stairs_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:hornfels_raw_stairs_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:hornfels_raw_stairs_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:hornfels_stairs" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:hornfels_raw_stairs_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:hornfels_raw_stairs_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:hornfels_stairs" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/hornfels_raw_stairs_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/hornfels_raw_stairs_to_brick.json index daa0b6551..b754001fe 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/hornfels_raw_stairs_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/hornfels_raw_stairs_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:hornfels_raw_stairs_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:hornfels_raw_stairs_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:hornfels_stairs" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:hornfels_raw_stairs_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:hornfels_raw_stairs_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:hornfels_stairs" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/hornfels_raw_wall_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/hornfels_raw_wall_polishing.json index 24c01b31f..4e8bf0ab9 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/hornfels_raw_wall_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/hornfels_raw_wall_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:hornfels_raw_wall_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:hornfels_raw_wall_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:hornfels_wall" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:hornfels_raw_wall_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:hornfels_raw_wall_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:hornfels_wall" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/hornfels_raw_walls_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/hornfels_raw_walls_to_brick.json index ddaf2d512..3be1d1d6a 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/hornfels_raw_walls_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/hornfels_raw_walls_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:hornfels_raw_walls_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:hornfels_raw_walls_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:hornfels_wall" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:hornfels_raw_walls_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:hornfels_raw_walls_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:hornfels_wall" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/hornfels_relief_axe.json b/src/main/resources/data/mineralogy/advancement/recipes/hornfels_relief_axe.json index 03ff67321..2604e9306 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/hornfels_relief_axe.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/hornfels_relief_axe.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:hornfels_relief_axe" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:hornfels_relief_axe" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:hornfels_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:hornfels_relief_axe" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:hornfels_relief_axe" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:hornfels_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/hornfels_relief_blank.json b/src/main/resources/data/mineralogy/advancement/recipes/hornfels_relief_blank.json index 933ad4f32..032892443 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/hornfels_relief_blank.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/hornfels_relief_blank.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:hornfels_relief_blank" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:hornfels_relief_blank" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:hornfels_smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:hornfels_relief_blank" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:hornfels_relief_blank" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:hornfels_smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/hornfels_relief_cross.json b/src/main/resources/data/mineralogy/advancement/recipes/hornfels_relief_cross.json index 5c0a1d515..bcf94b85b 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/hornfels_relief_cross.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/hornfels_relief_cross.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:hornfels_relief_cross" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:hornfels_relief_cross" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:hornfels_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:hornfels_relief_cross" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:hornfels_relief_cross" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:hornfels_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/hornfels_relief_hammer.json b/src/main/resources/data/mineralogy/advancement/recipes/hornfels_relief_hammer.json index 98e920088..8aafaee06 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/hornfels_relief_hammer.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/hornfels_relief_hammer.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:hornfels_relief_hammer" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:hornfels_relief_hammer" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:hornfels_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:hornfels_relief_hammer" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:hornfels_relief_hammer" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:hornfels_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/hornfels_relief_hoe.json b/src/main/resources/data/mineralogy/advancement/recipes/hornfels_relief_hoe.json index 24197643f..53b61f308 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/hornfels_relief_hoe.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/hornfels_relief_hoe.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:hornfels_relief_hoe" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:hornfels_relief_hoe" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:hornfels_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:hornfels_relief_hoe" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:hornfels_relief_hoe" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:hornfels_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/hornfels_relief_horizontal.json b/src/main/resources/data/mineralogy/advancement/recipes/hornfels_relief_horizontal.json index 9afe60265..048fa6b7e 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/hornfels_relief_horizontal.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/hornfels_relief_horizontal.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:hornfels_relief_horizontal" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:hornfels_relief_horizontal" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:hornfels_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:hornfels_relief_horizontal" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:hornfels_relief_horizontal" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:hornfels_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/hornfels_relief_i.json b/src/main/resources/data/mineralogy/advancement/recipes/hornfels_relief_i.json index 583c876e4..03e283d94 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/hornfels_relief_i.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/hornfels_relief_i.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:hornfels_relief_i" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:hornfels_relief_i" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:hornfels_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:hornfels_relief_i" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:hornfels_relief_i" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:hornfels_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/hornfels_relief_left.json b/src/main/resources/data/mineralogy/advancement/recipes/hornfels_relief_left.json index 1a9edf511..07d7a20bf 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/hornfels_relief_left.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/hornfels_relief_left.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:hornfels_relief_left" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:hornfels_relief_left" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:hornfels_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:hornfels_relief_left" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:hornfels_relief_left" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:hornfels_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/hornfels_relief_pickaxe.json b/src/main/resources/data/mineralogy/advancement/recipes/hornfels_relief_pickaxe.json index 877f0b143..69340fbd6 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/hornfels_relief_pickaxe.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/hornfels_relief_pickaxe.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:hornfels_relief_pickaxe" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:hornfels_relief_pickaxe" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:hornfels_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:hornfels_relief_pickaxe" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:hornfels_relief_pickaxe" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:hornfels_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/hornfels_relief_plus.json b/src/main/resources/data/mineralogy/advancement/recipes/hornfels_relief_plus.json index b912b3f74..d674c66fe 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/hornfels_relief_plus.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/hornfels_relief_plus.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:hornfels_relief_plus" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:hornfels_relief_plus" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:hornfels_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:hornfels_relief_plus" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:hornfels_relief_plus" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:hornfels_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/hornfels_relief_right.json b/src/main/resources/data/mineralogy/advancement/recipes/hornfels_relief_right.json index 3c0087230..1c632af73 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/hornfels_relief_right.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/hornfels_relief_right.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:hornfels_relief_right" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:hornfels_relief_right" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:hornfels_relief_left" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:hornfels_relief_right" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:hornfels_relief_right" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:hornfels_relief_left" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/hornfels_relief_sword.json b/src/main/resources/data/mineralogy/advancement/recipes/hornfels_relief_sword.json index a034e6b4d..498d07696 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/hornfels_relief_sword.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/hornfels_relief_sword.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:hornfels_relief_sword" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:hornfels_relief_sword" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:hornfels_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:hornfels_relief_sword" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:hornfels_relief_sword" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:hornfels_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/hornfels_relief_vertical.json b/src/main/resources/data/mineralogy/advancement/recipes/hornfels_relief_vertical.json index e0c77d479..fcc639d26 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/hornfels_relief_vertical.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/hornfels_relief_vertical.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:hornfels_relief_vertical" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:hornfels_relief_vertical" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:hornfels_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:hornfels_relief_vertical" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:hornfels_relief_vertical" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:hornfels_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/hornfels_slab.json b/src/main/resources/data/mineralogy/advancement/recipes/hornfels_slab.json index 8233ff62f..7ef2a5698 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/hornfels_slab.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/hornfels_slab.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:hornfels_slab" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:hornfels_slab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:hornfels" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:hornfels_slab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:hornfels_slab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:hornfels" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/hornfels_smooth.json b/src/main/resources/data/mineralogy/advancement/recipes/hornfels_smooth.json index dad83e3ac..9d2ac5fcb 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/hornfels_smooth.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/hornfels_smooth.json @@ -1,48 +1,46 @@ { - "rewards": { - "recipes": [ - "mineralogy:hornfels_smooth" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:hornfels_smooth" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/hornfels" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:hornfels_smooth" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:hornfels_smooth" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/hornfels" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/hornfels_smooth_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/hornfels_smooth_brick.json index 468197da7..785508236 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/hornfels_smooth_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/hornfels_smooth_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:hornfels_smooth_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:hornfels_smooth_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/hornfels/smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:hornfels_smooth_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:hornfels_smooth_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/hornfels/smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/hornfels_smooth_brick_furnace.json b/src/main/resources/data/mineralogy/advancement/recipes/hornfels_smooth_brick_furnace.json index 7b05f8141..20eba9fd7 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/hornfels_smooth_brick_furnace.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/hornfels_smooth_brick_furnace.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:hornfels_smooth_brick_furnace" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:hornfels_smooth_brick_furnace" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:slabs/hornfels/smooth_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:hornfels_smooth_brick_furnace" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:hornfels_smooth_brick_furnace" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:slabs/hornfels/smooth_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/hornfels_smooth_brick_slab.json b/src/main/resources/data/mineralogy/advancement/recipes/hornfels_smooth_brick_slab.json index b9a1681c7..328c00bec 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/hornfels_smooth_brick_slab.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/hornfels_smooth_brick_slab.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:hornfels_smooth_brick_slab" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:hornfels_smooth_brick_slab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:hornfels_smooth_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:hornfels_smooth_brick_slab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:hornfels_smooth_brick_slab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:hornfels_smooth_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/hornfels_smooth_brick_stairs.json b/src/main/resources/data/mineralogy/advancement/recipes/hornfels_smooth_brick_stairs.json index fc14745b5..1855a621c 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/hornfels_smooth_brick_stairs.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/hornfels_smooth_brick_stairs.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:hornfels_smooth_brick_stairs" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:hornfels_smooth_brick_stairs" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/hornfels/smooth_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:hornfels_smooth_brick_stairs" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:hornfels_smooth_brick_stairs" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/hornfels/smooth_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/hornfels_smooth_brick_wall.json b/src/main/resources/data/mineralogy/advancement/recipes/hornfels_smooth_brick_wall.json index 653f770d8..fd514c1f4 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/hornfels_smooth_brick_wall.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/hornfels_smooth_brick_wall.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:hornfels_smooth_brick_wall" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:hornfels_smooth_brick_wall" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/hornfels/smooth_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:hornfels_smooth_brick_wall" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:hornfels_smooth_brick_wall" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/hornfels/smooth_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/hornfels_smooth_furnace.json b/src/main/resources/data/mineralogy/advancement/recipes/hornfels_smooth_furnace.json index cbdb40b51..1af4011d6 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/hornfels_smooth_furnace.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/hornfels_smooth_furnace.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:hornfels_smooth_furnace" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:hornfels_smooth_furnace" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:slabs/hornfels/smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:hornfels_smooth_furnace" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:hornfels_smooth_furnace" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:slabs/hornfels/smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/hornfels_smooth_slab.json b/src/main/resources/data/mineralogy/advancement/recipes/hornfels_smooth_slab.json index 2de204353..7529aefcb 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/hornfels_smooth_slab.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/hornfels_smooth_slab.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:hornfels_smooth_slab" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:hornfels_smooth_slab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:hornfels_smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:hornfels_smooth_slab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:hornfels_smooth_slab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:hornfels_smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/hornfels_smooth_stairs.json b/src/main/resources/data/mineralogy/advancement/recipes/hornfels_smooth_stairs.json index d86234689..3891a8dbd 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/hornfels_smooth_stairs.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/hornfels_smooth_stairs.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:hornfels_smooth_stairs" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:hornfels_smooth_stairs" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/hornfels/smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:hornfels_smooth_stairs" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:hornfels_smooth_stairs" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/hornfels/smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/hornfels_smooth_wall.json b/src/main/resources/data/mineralogy/advancement/recipes/hornfels_smooth_wall.json index 6c6e42722..e2251291e 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/hornfels_smooth_wall.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/hornfels_smooth_wall.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:hornfels_smooth_wall" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:hornfels_smooth_wall" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/hornfels/smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:hornfels_smooth_wall" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:hornfels_smooth_wall" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/hornfels/smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/hornfels_stairs.json b/src/main/resources/data/mineralogy/advancement/recipes/hornfels_stairs.json index 405386acb..29fe7c427 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/hornfels_stairs.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/hornfels_stairs.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:hornfels_stairs" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:hornfels_stairs" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/hornfels" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:hornfels_stairs" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:hornfels_stairs" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/hornfels" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/hornfels_to_stone.json b/src/main/resources/data/mineralogy/advancement/recipes/hornfels_to_stone.json index 339ae3ead..be98bd37b 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/hornfels_to_stone.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/hornfels_to_stone.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:hornfels_to_stone" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:hornfels_to_stone" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:hornfels" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:hornfels_to_stone" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:hornfels_to_stone" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:hornfels" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/hornfels_wall.json b/src/main/resources/data/mineralogy/advancement/recipes/hornfels_wall.json index 9b71e6b84..a14702745 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/hornfels_wall.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/hornfels_wall.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:hornfels_wall" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:hornfels_wall" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/hornfels" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:hornfels_wall" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:hornfels_wall" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/hornfels" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/limestone_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/limestone_brick.json index df9bdb4fa..5f86c1e46 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/limestone_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/limestone_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:limestone_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:limestone_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/limestone" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:limestone_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:limestone_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/limestone" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/limestone_brick_block_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/limestone_brick_block_polishing.json index 11bdd3870..f2ec13a62 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/limestone_brick_block_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/limestone_brick_block_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:limestone_brick_block_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:limestone_brick_block_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:limestone_brick" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:limestone_brick_block_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:limestone_brick_block_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:limestone_brick" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/limestone_brick_furnace.json b/src/main/resources/data/mineralogy/advancement/recipes/limestone_brick_furnace.json index 91b824f92..5ac6ea4fc 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/limestone_brick_furnace.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/limestone_brick_furnace.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:limestone_brick_furnace" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:limestone_brick_furnace" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:slabs/limestone/brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:limestone_brick_furnace" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:limestone_brick_furnace" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:slabs/limestone/brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/limestone_brick_slab.json b/src/main/resources/data/mineralogy/advancement/recipes/limestone_brick_slab.json index ef86fa851..5103bdfbc 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/limestone_brick_slab.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/limestone_brick_slab.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:limestone_brick_slab" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:limestone_brick_slab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:limestone_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:limestone_brick_slab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:limestone_brick_slab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:limestone_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/limestone_brick_slab_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/limestone_brick_slab_polishing.json index 61d09d47c..e64d5a8a6 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/limestone_brick_slab_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/limestone_brick_slab_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:limestone_brick_slab_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:limestone_brick_slab_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:limestone_brick_slab" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:limestone_brick_slab_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:limestone_brick_slab_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:limestone_brick_slab" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/limestone_brick_slab_recombination.json b/src/main/resources/data/mineralogy/advancement/recipes/limestone_brick_slab_recombination.json index 5d2035ce5..afe6db676 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/limestone_brick_slab_recombination.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/limestone_brick_slab_recombination.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:limestone_brick_slab_recombination" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:limestone_brick_slab_recombination" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:limestone_brick_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:limestone_brick_slab_recombination" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:limestone_brick_slab_recombination" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:limestone_brick_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/limestone_brick_stairs.json b/src/main/resources/data/mineralogy/advancement/recipes/limestone_brick_stairs.json index 5a8b9190a..cc5470676 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/limestone_brick_stairs.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/limestone_brick_stairs.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:limestone_brick_stairs" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:limestone_brick_stairs" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/limestone/brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:limestone_brick_stairs" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:limestone_brick_stairs" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/limestone/brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/limestone_brick_stairs_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/limestone_brick_stairs_polishing.json index ea3954ce9..0f12fa974 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/limestone_brick_stairs_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/limestone_brick_stairs_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:limestone_brick_stairs_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:limestone_brick_stairs_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:limestone_brick_stairs" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:limestone_brick_stairs_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:limestone_brick_stairs_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:limestone_brick_stairs" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/limestone_brick_wall.json b/src/main/resources/data/mineralogy/advancement/recipes/limestone_brick_wall.json index 51064957a..888c7cb46 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/limestone_brick_wall.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/limestone_brick_wall.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:limestone_brick_wall" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:limestone_brick_wall" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/limestone/brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:limestone_brick_wall" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:limestone_brick_wall" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/limestone/brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/limestone_brick_wall_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/limestone_brick_wall_polishing.json index ddd56a678..9f0d16b4c 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/limestone_brick_wall_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/limestone_brick_wall_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:limestone_brick_wall_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:limestone_brick_wall_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:limestone_brick_wall" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:limestone_brick_wall_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:limestone_brick_wall_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:limestone_brick_wall" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/limestone_cobblestone.json b/src/main/resources/data/mineralogy/advancement/recipes/limestone_cobblestone.json index 852d420c3..910c26ed3 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/limestone_cobblestone.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/limestone_cobblestone.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:limestone_cobblestone" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:limestone_cobblestone" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/limestone" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:limestone_cobblestone" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:limestone_cobblestone" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/limestone" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/limestone_furnace.json b/src/main/resources/data/mineralogy/advancement/recipes/limestone_furnace.json index cf593cf41..963512614 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/limestone_furnace.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/limestone_furnace.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:limestone_furnace" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:limestone_furnace" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:slabs/limestone" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:limestone_furnace" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:limestone_furnace" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:slabs/limestone" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/limestone_polished_brick_slab_recombination.json b/src/main/resources/data/mineralogy/advancement/recipes/limestone_polished_brick_slab_recombination.json index 0691cdaf6..6a5f42f90 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/limestone_polished_brick_slab_recombination.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/limestone_polished_brick_slab_recombination.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:limestone_polished_brick_slab_recombination" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:limestone_polished_brick_slab_recombination" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:limestone_smooth_brick_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:limestone_polished_brick_slab_recombination" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:limestone_polished_brick_slab_recombination" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:limestone_smooth_brick_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/limestone_polished_slab_recombination.json b/src/main/resources/data/mineralogy/advancement/recipes/limestone_polished_slab_recombination.json index 9e1b41f02..d4fddec00 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/limestone_polished_slab_recombination.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/limestone_polished_slab_recombination.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:limestone_polished_slab_recombination" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:limestone_polished_slab_recombination" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:limestone_smooth_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:limestone_polished_slab_recombination" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:limestone_polished_slab_recombination" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:limestone_smooth_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/limestone_polished_slabs_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/limestone_polished_slabs_to_brick.json index 7052effb2..158cc57d5 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/limestone_polished_slabs_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/limestone_polished_slabs_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:limestone_polished_slabs_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:limestone_polished_slabs_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:limestone_smooth_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:limestone_polished_slabs_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:limestone_polished_slabs_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:limestone_smooth_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/limestone_polished_stairs_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/limestone_polished_stairs_to_brick.json index 183adea67..3bf6cb98d 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/limestone_polished_stairs_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/limestone_polished_stairs_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:limestone_polished_stairs_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:limestone_polished_stairs_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:limestone_smooth_stairs" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:limestone_polished_stairs_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:limestone_polished_stairs_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:limestone_smooth_stairs" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/limestone_polished_walls_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/limestone_polished_walls_to_brick.json index 09d8315a7..ea3999b6a 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/limestone_polished_walls_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/limestone_polished_walls_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:limestone_polished_walls_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:limestone_polished_walls_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:limestone_smooth_wall" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:limestone_polished_walls_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:limestone_polished_walls_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:limestone_smooth_wall" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/limestone_raw_slab_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/limestone_raw_slab_polishing.json index 8a318fadd..96f27767b 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/limestone_raw_slab_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/limestone_raw_slab_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:limestone_raw_slab_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:limestone_raw_slab_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:limestone_slab" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:limestone_raw_slab_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:limestone_raw_slab_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:limestone_slab" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/limestone_raw_slab_recombination.json b/src/main/resources/data/mineralogy/advancement/recipes/limestone_raw_slab_recombination.json index 8a4f6536a..df58e074d 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/limestone_raw_slab_recombination.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/limestone_raw_slab_recombination.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:limestone_raw_slab_recombination" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:limestone_raw_slab_recombination" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:limestone_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:limestone_raw_slab_recombination" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:limestone_raw_slab_recombination" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:limestone_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/limestone_raw_slabs_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/limestone_raw_slabs_to_brick.json index 411b64aeb..05c19e155 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/limestone_raw_slabs_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/limestone_raw_slabs_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:limestone_raw_slabs_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:limestone_raw_slabs_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:limestone_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:limestone_raw_slabs_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:limestone_raw_slabs_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:limestone_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/limestone_raw_stairs_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/limestone_raw_stairs_polishing.json index dc12bcf4f..1b4c56c21 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/limestone_raw_stairs_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/limestone_raw_stairs_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:limestone_raw_stairs_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:limestone_raw_stairs_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:limestone_stairs" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:limestone_raw_stairs_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:limestone_raw_stairs_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:limestone_stairs" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/limestone_raw_stairs_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/limestone_raw_stairs_to_brick.json index 83d85a059..22c36c99a 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/limestone_raw_stairs_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/limestone_raw_stairs_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:limestone_raw_stairs_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:limestone_raw_stairs_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:limestone_stairs" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:limestone_raw_stairs_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:limestone_raw_stairs_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:limestone_stairs" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/limestone_raw_wall_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/limestone_raw_wall_polishing.json index 084417773..dff32234e 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/limestone_raw_wall_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/limestone_raw_wall_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:limestone_raw_wall_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:limestone_raw_wall_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:limestone_wall" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:limestone_raw_wall_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:limestone_raw_wall_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:limestone_wall" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/limestone_raw_walls_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/limestone_raw_walls_to_brick.json index 742aaee38..54b744130 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/limestone_raw_walls_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/limestone_raw_walls_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:limestone_raw_walls_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:limestone_raw_walls_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:limestone_wall" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:limestone_raw_walls_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:limestone_raw_walls_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:limestone_wall" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/limestone_relief_axe.json b/src/main/resources/data/mineralogy/advancement/recipes/limestone_relief_axe.json index 7f4973b22..8472cf964 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/limestone_relief_axe.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/limestone_relief_axe.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:limestone_relief_axe" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:limestone_relief_axe" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:limestone_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:limestone_relief_axe" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:limestone_relief_axe" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:limestone_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/limestone_relief_blank.json b/src/main/resources/data/mineralogy/advancement/recipes/limestone_relief_blank.json index 03f0d236a..1a6535375 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/limestone_relief_blank.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/limestone_relief_blank.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:limestone_relief_blank" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:limestone_relief_blank" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:limestone_smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:limestone_relief_blank" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:limestone_relief_blank" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:limestone_smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/limestone_relief_cross.json b/src/main/resources/data/mineralogy/advancement/recipes/limestone_relief_cross.json index c4bbc5f88..58315fd5d 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/limestone_relief_cross.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/limestone_relief_cross.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:limestone_relief_cross" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:limestone_relief_cross" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:limestone_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:limestone_relief_cross" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:limestone_relief_cross" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:limestone_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/limestone_relief_hammer.json b/src/main/resources/data/mineralogy/advancement/recipes/limestone_relief_hammer.json index e068ca72b..10a368398 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/limestone_relief_hammer.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/limestone_relief_hammer.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:limestone_relief_hammer" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:limestone_relief_hammer" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:limestone_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:limestone_relief_hammer" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:limestone_relief_hammer" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:limestone_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/limestone_relief_hoe.json b/src/main/resources/data/mineralogy/advancement/recipes/limestone_relief_hoe.json index fa0bde79f..8b931bcdb 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/limestone_relief_hoe.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/limestone_relief_hoe.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:limestone_relief_hoe" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:limestone_relief_hoe" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:limestone_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:limestone_relief_hoe" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:limestone_relief_hoe" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:limestone_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/limestone_relief_horizontal.json b/src/main/resources/data/mineralogy/advancement/recipes/limestone_relief_horizontal.json index a653d52f1..8b33bb31a 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/limestone_relief_horizontal.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/limestone_relief_horizontal.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:limestone_relief_horizontal" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:limestone_relief_horizontal" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:limestone_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:limestone_relief_horizontal" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:limestone_relief_horizontal" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:limestone_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/limestone_relief_i.json b/src/main/resources/data/mineralogy/advancement/recipes/limestone_relief_i.json index c09f79877..83caa8085 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/limestone_relief_i.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/limestone_relief_i.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:limestone_relief_i" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:limestone_relief_i" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:limestone_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:limestone_relief_i" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:limestone_relief_i" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:limestone_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/limestone_relief_left.json b/src/main/resources/data/mineralogy/advancement/recipes/limestone_relief_left.json index 9e4bef1f5..d831a276a 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/limestone_relief_left.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/limestone_relief_left.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:limestone_relief_left" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:limestone_relief_left" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:limestone_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:limestone_relief_left" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:limestone_relief_left" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:limestone_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/limestone_relief_pickaxe.json b/src/main/resources/data/mineralogy/advancement/recipes/limestone_relief_pickaxe.json index cf69e3832..a76452e30 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/limestone_relief_pickaxe.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/limestone_relief_pickaxe.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:limestone_relief_pickaxe" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:limestone_relief_pickaxe" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:limestone_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:limestone_relief_pickaxe" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:limestone_relief_pickaxe" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:limestone_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/limestone_relief_plus.json b/src/main/resources/data/mineralogy/advancement/recipes/limestone_relief_plus.json index a3c4582ac..d4b0efe9e 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/limestone_relief_plus.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/limestone_relief_plus.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:limestone_relief_plus" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:limestone_relief_plus" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:limestone_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:limestone_relief_plus" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:limestone_relief_plus" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:limestone_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/limestone_relief_right.json b/src/main/resources/data/mineralogy/advancement/recipes/limestone_relief_right.json index 34b00382b..57154bbf7 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/limestone_relief_right.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/limestone_relief_right.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:limestone_relief_right" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:limestone_relief_right" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:limestone_relief_left" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:limestone_relief_right" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:limestone_relief_right" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:limestone_relief_left" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/limestone_relief_sword.json b/src/main/resources/data/mineralogy/advancement/recipes/limestone_relief_sword.json index c526bbf22..4227267ab 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/limestone_relief_sword.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/limestone_relief_sword.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:limestone_relief_sword" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:limestone_relief_sword" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:limestone_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:limestone_relief_sword" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:limestone_relief_sword" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:limestone_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/limestone_relief_vertical.json b/src/main/resources/data/mineralogy/advancement/recipes/limestone_relief_vertical.json index 25eaca464..add7f6c2c 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/limestone_relief_vertical.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/limestone_relief_vertical.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:limestone_relief_vertical" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:limestone_relief_vertical" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:limestone_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:limestone_relief_vertical" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:limestone_relief_vertical" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:limestone_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/limestone_slab.json b/src/main/resources/data/mineralogy/advancement/recipes/limestone_slab.json index 8b815777c..ad6911913 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/limestone_slab.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/limestone_slab.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:limestone_slab" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:limestone_slab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:limestone" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:limestone_slab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:limestone_slab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:limestone" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/limestone_smooth.json b/src/main/resources/data/mineralogy/advancement/recipes/limestone_smooth.json index a414e8ae8..4acda28ed 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/limestone_smooth.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/limestone_smooth.json @@ -1,48 +1,46 @@ { - "rewards": { - "recipes": [ - "mineralogy:limestone_smooth" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:limestone_smooth" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/limestone" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:limestone_smooth" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:limestone_smooth" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/limestone" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/limestone_smooth_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/limestone_smooth_brick.json index 83e225b93..4d4444169 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/limestone_smooth_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/limestone_smooth_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:limestone_smooth_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:limestone_smooth_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/limestone/smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:limestone_smooth_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:limestone_smooth_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/limestone/smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/limestone_smooth_brick_furnace.json b/src/main/resources/data/mineralogy/advancement/recipes/limestone_smooth_brick_furnace.json index bbbe2ac12..56051ce57 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/limestone_smooth_brick_furnace.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/limestone_smooth_brick_furnace.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:limestone_smooth_brick_furnace" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:limestone_smooth_brick_furnace" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:slabs/limestone/smooth_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:limestone_smooth_brick_furnace" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:limestone_smooth_brick_furnace" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:slabs/limestone/smooth_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/limestone_smooth_brick_slab.json b/src/main/resources/data/mineralogy/advancement/recipes/limestone_smooth_brick_slab.json index 3f9e7c288..7e70e9c04 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/limestone_smooth_brick_slab.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/limestone_smooth_brick_slab.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:limestone_smooth_brick_slab" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:limestone_smooth_brick_slab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:limestone_smooth_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:limestone_smooth_brick_slab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:limestone_smooth_brick_slab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:limestone_smooth_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/limestone_smooth_brick_stairs.json b/src/main/resources/data/mineralogy/advancement/recipes/limestone_smooth_brick_stairs.json index c48fbb310..0888eb50c 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/limestone_smooth_brick_stairs.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/limestone_smooth_brick_stairs.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:limestone_smooth_brick_stairs" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:limestone_smooth_brick_stairs" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/limestone/smooth_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:limestone_smooth_brick_stairs" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:limestone_smooth_brick_stairs" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/limestone/smooth_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/limestone_smooth_brick_wall.json b/src/main/resources/data/mineralogy/advancement/recipes/limestone_smooth_brick_wall.json index 374d5f702..7437f191e 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/limestone_smooth_brick_wall.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/limestone_smooth_brick_wall.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:limestone_smooth_brick_wall" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:limestone_smooth_brick_wall" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/limestone/smooth_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:limestone_smooth_brick_wall" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:limestone_smooth_brick_wall" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/limestone/smooth_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/limestone_smooth_furnace.json b/src/main/resources/data/mineralogy/advancement/recipes/limestone_smooth_furnace.json index 397452864..a97fdfff8 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/limestone_smooth_furnace.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/limestone_smooth_furnace.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:limestone_smooth_furnace" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:limestone_smooth_furnace" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:slabs/limestone/smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:limestone_smooth_furnace" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:limestone_smooth_furnace" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:slabs/limestone/smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/limestone_smooth_slab.json b/src/main/resources/data/mineralogy/advancement/recipes/limestone_smooth_slab.json index dbe4ae308..52002480a 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/limestone_smooth_slab.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/limestone_smooth_slab.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:limestone_smooth_slab" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:limestone_smooth_slab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:limestone_smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:limestone_smooth_slab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:limestone_smooth_slab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:limestone_smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/limestone_smooth_stairs.json b/src/main/resources/data/mineralogy/advancement/recipes/limestone_smooth_stairs.json index dd4a7c2b2..1bc73aabd 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/limestone_smooth_stairs.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/limestone_smooth_stairs.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:limestone_smooth_stairs" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:limestone_smooth_stairs" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/limestone/smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:limestone_smooth_stairs" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:limestone_smooth_stairs" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/limestone/smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/limestone_smooth_wall.json b/src/main/resources/data/mineralogy/advancement/recipes/limestone_smooth_wall.json index 606f230a7..0b26a2d74 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/limestone_smooth_wall.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/limestone_smooth_wall.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:limestone_smooth_wall" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:limestone_smooth_wall" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/limestone/smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:limestone_smooth_wall" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:limestone_smooth_wall" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/limestone/smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/limestone_stairs.json b/src/main/resources/data/mineralogy/advancement/recipes/limestone_stairs.json index c57d73660..4eb3fc963 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/limestone_stairs.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/limestone_stairs.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:limestone_stairs" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:limestone_stairs" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/limestone" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:limestone_stairs" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:limestone_stairs" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/limestone" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/limestone_to_stone.json b/src/main/resources/data/mineralogy/advancement/recipes/limestone_to_stone.json index de47f7f56..2da9f4de1 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/limestone_to_stone.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/limestone_to_stone.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:limestone_to_stone" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:limestone_to_stone" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:limestone" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:limestone_to_stone" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:limestone_to_stone" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:limestone" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/limestone_wall.json b/src/main/resources/data/mineralogy/advancement/recipes/limestone_wall.json index 8d8fb575e..68154ab6b 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/limestone_wall.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/limestone_wall.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:limestone_wall" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:limestone_wall" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/limestone" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:limestone_wall" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:limestone_wall" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/limestone" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/marble_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/marble_brick.json index c536bdca7..994d423ab 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/marble_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/marble_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:marble_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:marble_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/marble" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:marble_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:marble_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/marble" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/marble_brick_block_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/marble_brick_block_polishing.json index dc755c28e..df793dd57 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/marble_brick_block_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/marble_brick_block_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:marble_brick_block_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:marble_brick_block_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:marble_brick" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:marble_brick_block_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:marble_brick_block_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:marble_brick" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/marble_brick_furnace.json b/src/main/resources/data/mineralogy/advancement/recipes/marble_brick_furnace.json index b3e0556c2..28671dd9b 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/marble_brick_furnace.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/marble_brick_furnace.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:marble_brick_furnace" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:marble_brick_furnace" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:slabs/marble/brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:marble_brick_furnace" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:marble_brick_furnace" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:slabs/marble/brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/marble_brick_slab.json b/src/main/resources/data/mineralogy/advancement/recipes/marble_brick_slab.json index f98cd97d8..37f891335 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/marble_brick_slab.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/marble_brick_slab.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:marble_brick_slab" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:marble_brick_slab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:marble_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:marble_brick_slab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:marble_brick_slab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:marble_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/marble_brick_slab_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/marble_brick_slab_polishing.json index db427a7c1..527873631 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/marble_brick_slab_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/marble_brick_slab_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:marble_brick_slab_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:marble_brick_slab_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:marble_brick_slab" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:marble_brick_slab_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:marble_brick_slab_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:marble_brick_slab" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/marble_brick_slab_recombination.json b/src/main/resources/data/mineralogy/advancement/recipes/marble_brick_slab_recombination.json index f67a04482..9033c16c8 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/marble_brick_slab_recombination.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/marble_brick_slab_recombination.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:marble_brick_slab_recombination" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:marble_brick_slab_recombination" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:marble_brick_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:marble_brick_slab_recombination" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:marble_brick_slab_recombination" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:marble_brick_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/marble_brick_stairs.json b/src/main/resources/data/mineralogy/advancement/recipes/marble_brick_stairs.json index ab814b1d7..5ad9d379a 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/marble_brick_stairs.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/marble_brick_stairs.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:marble_brick_stairs" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:marble_brick_stairs" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/marble/brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:marble_brick_stairs" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:marble_brick_stairs" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/marble/brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/marble_brick_stairs_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/marble_brick_stairs_polishing.json index 768f2f406..fca7eb3a2 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/marble_brick_stairs_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/marble_brick_stairs_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:marble_brick_stairs_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:marble_brick_stairs_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:marble_brick_stairs" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:marble_brick_stairs_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:marble_brick_stairs_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:marble_brick_stairs" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/marble_brick_wall.json b/src/main/resources/data/mineralogy/advancement/recipes/marble_brick_wall.json index 2fbf551f8..70e6ace89 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/marble_brick_wall.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/marble_brick_wall.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:marble_brick_wall" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:marble_brick_wall" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/marble/brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:marble_brick_wall" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:marble_brick_wall" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/marble/brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/marble_brick_wall_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/marble_brick_wall_polishing.json index 7be269eef..227fce4da 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/marble_brick_wall_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/marble_brick_wall_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:marble_brick_wall_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:marble_brick_wall_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:marble_brick_wall" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:marble_brick_wall_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:marble_brick_wall_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:marble_brick_wall" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/marble_cobblestone.json b/src/main/resources/data/mineralogy/advancement/recipes/marble_cobblestone.json index 30016c156..6d51e961b 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/marble_cobblestone.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/marble_cobblestone.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:marble_cobblestone" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:marble_cobblestone" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/marble" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:marble_cobblestone" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:marble_cobblestone" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/marble" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/marble_furnace.json b/src/main/resources/data/mineralogy/advancement/recipes/marble_furnace.json index bb7434d4e..901326118 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/marble_furnace.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/marble_furnace.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:marble_furnace" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:marble_furnace" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:slabs/marble" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:marble_furnace" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:marble_furnace" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:slabs/marble" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/marble_polished_brick_slab_recombination.json b/src/main/resources/data/mineralogy/advancement/recipes/marble_polished_brick_slab_recombination.json index b54b7daaa..d61995d6f 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/marble_polished_brick_slab_recombination.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/marble_polished_brick_slab_recombination.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:marble_polished_brick_slab_recombination" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:marble_polished_brick_slab_recombination" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:marble_smooth_brick_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:marble_polished_brick_slab_recombination" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:marble_polished_brick_slab_recombination" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:marble_smooth_brick_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/marble_polished_slab_recombination.json b/src/main/resources/data/mineralogy/advancement/recipes/marble_polished_slab_recombination.json index 8b34f35df..be7813580 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/marble_polished_slab_recombination.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/marble_polished_slab_recombination.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:marble_polished_slab_recombination" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:marble_polished_slab_recombination" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:marble_smooth_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:marble_polished_slab_recombination" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:marble_polished_slab_recombination" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:marble_smooth_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/marble_polished_slabs_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/marble_polished_slabs_to_brick.json index 0ce9f01b5..6c700b1f7 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/marble_polished_slabs_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/marble_polished_slabs_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:marble_polished_slabs_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:marble_polished_slabs_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:marble_smooth_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:marble_polished_slabs_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:marble_polished_slabs_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:marble_smooth_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/marble_polished_stairs_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/marble_polished_stairs_to_brick.json index 623aee258..3faa3d762 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/marble_polished_stairs_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/marble_polished_stairs_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:marble_polished_stairs_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:marble_polished_stairs_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:marble_smooth_stairs" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:marble_polished_stairs_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:marble_polished_stairs_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:marble_smooth_stairs" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/marble_polished_walls_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/marble_polished_walls_to_brick.json index 7dd45326f..4c9d361be 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/marble_polished_walls_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/marble_polished_walls_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:marble_polished_walls_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:marble_polished_walls_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:marble_smooth_wall" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:marble_polished_walls_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:marble_polished_walls_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:marble_smooth_wall" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/marble_raw_slab_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/marble_raw_slab_polishing.json index e99e7405d..35d6e80d3 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/marble_raw_slab_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/marble_raw_slab_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:marble_raw_slab_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:marble_raw_slab_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:marble_slab" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:marble_raw_slab_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:marble_raw_slab_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:marble_slab" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/marble_raw_slab_recombination.json b/src/main/resources/data/mineralogy/advancement/recipes/marble_raw_slab_recombination.json index 850aedbae..0804cddd7 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/marble_raw_slab_recombination.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/marble_raw_slab_recombination.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:marble_raw_slab_recombination" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:marble_raw_slab_recombination" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:marble_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:marble_raw_slab_recombination" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:marble_raw_slab_recombination" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:marble_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/marble_raw_slabs_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/marble_raw_slabs_to_brick.json index 0076b7308..9ebacb475 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/marble_raw_slabs_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/marble_raw_slabs_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:marble_raw_slabs_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:marble_raw_slabs_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:marble_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:marble_raw_slabs_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:marble_raw_slabs_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:marble_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/marble_raw_stairs_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/marble_raw_stairs_polishing.json index 3bbe9993a..b89e3ea08 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/marble_raw_stairs_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/marble_raw_stairs_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:marble_raw_stairs_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:marble_raw_stairs_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:marble_stairs" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:marble_raw_stairs_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:marble_raw_stairs_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:marble_stairs" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/marble_raw_stairs_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/marble_raw_stairs_to_brick.json index 19825350b..cb18d1f7f 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/marble_raw_stairs_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/marble_raw_stairs_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:marble_raw_stairs_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:marble_raw_stairs_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:marble_stairs" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:marble_raw_stairs_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:marble_raw_stairs_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:marble_stairs" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/marble_raw_wall_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/marble_raw_wall_polishing.json index 46644a768..9fa8dfe1d 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/marble_raw_wall_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/marble_raw_wall_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:marble_raw_wall_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:marble_raw_wall_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:marble_wall" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:marble_raw_wall_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:marble_raw_wall_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:marble_wall" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/marble_raw_walls_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/marble_raw_walls_to_brick.json index 478e5cac4..d181c41fc 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/marble_raw_walls_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/marble_raw_walls_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:marble_raw_walls_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:marble_raw_walls_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:marble_wall" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:marble_raw_walls_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:marble_raw_walls_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:marble_wall" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/marble_relief_axe.json b/src/main/resources/data/mineralogy/advancement/recipes/marble_relief_axe.json index e35190b16..3065d5910 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/marble_relief_axe.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/marble_relief_axe.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:marble_relief_axe" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:marble_relief_axe" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:marble_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:marble_relief_axe" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:marble_relief_axe" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:marble_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/marble_relief_blank.json b/src/main/resources/data/mineralogy/advancement/recipes/marble_relief_blank.json index d637052ce..deac2a8d7 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/marble_relief_blank.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/marble_relief_blank.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:marble_relief_blank" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:marble_relief_blank" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:marble_smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:marble_relief_blank" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:marble_relief_blank" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:marble_smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/marble_relief_cross.json b/src/main/resources/data/mineralogy/advancement/recipes/marble_relief_cross.json index 2d62d53a2..8f695c7c4 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/marble_relief_cross.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/marble_relief_cross.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:marble_relief_cross" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:marble_relief_cross" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:marble_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:marble_relief_cross" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:marble_relief_cross" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:marble_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/marble_relief_hammer.json b/src/main/resources/data/mineralogy/advancement/recipes/marble_relief_hammer.json index f0e034ac7..e8b1d3ccf 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/marble_relief_hammer.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/marble_relief_hammer.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:marble_relief_hammer" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:marble_relief_hammer" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:marble_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:marble_relief_hammer" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:marble_relief_hammer" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:marble_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/marble_relief_hoe.json b/src/main/resources/data/mineralogy/advancement/recipes/marble_relief_hoe.json index 3b2fb8c2f..aeb557b86 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/marble_relief_hoe.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/marble_relief_hoe.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:marble_relief_hoe" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:marble_relief_hoe" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:marble_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:marble_relief_hoe" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:marble_relief_hoe" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:marble_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/marble_relief_horizontal.json b/src/main/resources/data/mineralogy/advancement/recipes/marble_relief_horizontal.json index 58a10463d..4031a8959 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/marble_relief_horizontal.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/marble_relief_horizontal.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:marble_relief_horizontal" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:marble_relief_horizontal" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:marble_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:marble_relief_horizontal" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:marble_relief_horizontal" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:marble_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/marble_relief_i.json b/src/main/resources/data/mineralogy/advancement/recipes/marble_relief_i.json index 7f89658b8..135a11466 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/marble_relief_i.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/marble_relief_i.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:marble_relief_i" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:marble_relief_i" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:marble_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:marble_relief_i" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:marble_relief_i" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:marble_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/marble_relief_left.json b/src/main/resources/data/mineralogy/advancement/recipes/marble_relief_left.json index c094e9d7a..70738a438 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/marble_relief_left.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/marble_relief_left.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:marble_relief_left" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:marble_relief_left" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:marble_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:marble_relief_left" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:marble_relief_left" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:marble_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/marble_relief_pickaxe.json b/src/main/resources/data/mineralogy/advancement/recipes/marble_relief_pickaxe.json index efffb2d4d..5095049cc 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/marble_relief_pickaxe.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/marble_relief_pickaxe.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:marble_relief_pickaxe" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:marble_relief_pickaxe" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:marble_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:marble_relief_pickaxe" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:marble_relief_pickaxe" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:marble_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/marble_relief_plus.json b/src/main/resources/data/mineralogy/advancement/recipes/marble_relief_plus.json index ce53af8e4..7c064ec33 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/marble_relief_plus.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/marble_relief_plus.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:marble_relief_plus" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:marble_relief_plus" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:marble_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:marble_relief_plus" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:marble_relief_plus" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:marble_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/marble_relief_right.json b/src/main/resources/data/mineralogy/advancement/recipes/marble_relief_right.json index 2595a33bc..f60a522dd 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/marble_relief_right.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/marble_relief_right.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:marble_relief_right" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:marble_relief_right" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:marble_relief_left" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:marble_relief_right" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:marble_relief_right" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:marble_relief_left" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/marble_relief_sword.json b/src/main/resources/data/mineralogy/advancement/recipes/marble_relief_sword.json index 6209e91d8..58d6df84a 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/marble_relief_sword.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/marble_relief_sword.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:marble_relief_sword" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:marble_relief_sword" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:marble_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:marble_relief_sword" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:marble_relief_sword" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:marble_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/marble_relief_vertical.json b/src/main/resources/data/mineralogy/advancement/recipes/marble_relief_vertical.json index c77162166..4689651f2 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/marble_relief_vertical.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/marble_relief_vertical.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:marble_relief_vertical" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:marble_relief_vertical" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:marble_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:marble_relief_vertical" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:marble_relief_vertical" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:marble_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/marble_slab.json b/src/main/resources/data/mineralogy/advancement/recipes/marble_slab.json index b29535a5e..c7a6447b8 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/marble_slab.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/marble_slab.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:marble_slab" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:marble_slab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:marble" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:marble_slab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:marble_slab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:marble" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/marble_smooth.json b/src/main/resources/data/mineralogy/advancement/recipes/marble_smooth.json index d2bd61879..c0f5e1b86 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/marble_smooth.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/marble_smooth.json @@ -1,48 +1,46 @@ { - "rewards": { - "recipes": [ - "mineralogy:marble_smooth" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:marble_smooth" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/marble" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:marble_smooth" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:marble_smooth" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/marble" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/marble_smooth_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/marble_smooth_brick.json index 2f42bb760..2929d66d7 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/marble_smooth_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/marble_smooth_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:marble_smooth_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:marble_smooth_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/marble/smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:marble_smooth_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:marble_smooth_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/marble/smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/marble_smooth_brick_furnace.json b/src/main/resources/data/mineralogy/advancement/recipes/marble_smooth_brick_furnace.json index 2dfd2c1ca..0cf303346 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/marble_smooth_brick_furnace.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/marble_smooth_brick_furnace.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:marble_smooth_brick_furnace" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:marble_smooth_brick_furnace" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:slabs/marble/smooth_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:marble_smooth_brick_furnace" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:marble_smooth_brick_furnace" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:slabs/marble/smooth_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/marble_smooth_brick_slab.json b/src/main/resources/data/mineralogy/advancement/recipes/marble_smooth_brick_slab.json index bc30d5dcd..52a0707f0 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/marble_smooth_brick_slab.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/marble_smooth_brick_slab.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:marble_smooth_brick_slab" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:marble_smooth_brick_slab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:marble_smooth_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:marble_smooth_brick_slab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:marble_smooth_brick_slab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:marble_smooth_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/marble_smooth_brick_stairs.json b/src/main/resources/data/mineralogy/advancement/recipes/marble_smooth_brick_stairs.json index 334d733b6..8a60d443f 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/marble_smooth_brick_stairs.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/marble_smooth_brick_stairs.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:marble_smooth_brick_stairs" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:marble_smooth_brick_stairs" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/marble/smooth_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:marble_smooth_brick_stairs" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:marble_smooth_brick_stairs" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/marble/smooth_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/marble_smooth_brick_wall.json b/src/main/resources/data/mineralogy/advancement/recipes/marble_smooth_brick_wall.json index d5bdb8707..df16a1eab 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/marble_smooth_brick_wall.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/marble_smooth_brick_wall.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:marble_smooth_brick_wall" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:marble_smooth_brick_wall" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/marble/smooth_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:marble_smooth_brick_wall" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:marble_smooth_brick_wall" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/marble/smooth_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/marble_smooth_furnace.json b/src/main/resources/data/mineralogy/advancement/recipes/marble_smooth_furnace.json index ad49ee518..8ff8a0c86 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/marble_smooth_furnace.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/marble_smooth_furnace.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:marble_smooth_furnace" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:marble_smooth_furnace" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:slabs/marble/smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:marble_smooth_furnace" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:marble_smooth_furnace" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:slabs/marble/smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/marble_smooth_slab.json b/src/main/resources/data/mineralogy/advancement/recipes/marble_smooth_slab.json index 7452c5fa2..3d86bd711 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/marble_smooth_slab.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/marble_smooth_slab.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:marble_smooth_slab" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:marble_smooth_slab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:marble_smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:marble_smooth_slab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:marble_smooth_slab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:marble_smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/marble_smooth_stairs.json b/src/main/resources/data/mineralogy/advancement/recipes/marble_smooth_stairs.json index 803e19725..3dc401965 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/marble_smooth_stairs.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/marble_smooth_stairs.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:marble_smooth_stairs" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:marble_smooth_stairs" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/marble/smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:marble_smooth_stairs" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:marble_smooth_stairs" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/marble/smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/marble_smooth_wall.json b/src/main/resources/data/mineralogy/advancement/recipes/marble_smooth_wall.json index f8e7c7271..1defa4e44 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/marble_smooth_wall.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/marble_smooth_wall.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:marble_smooth_wall" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:marble_smooth_wall" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/marble/smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:marble_smooth_wall" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:marble_smooth_wall" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/marble/smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/marble_stairs.json b/src/main/resources/data/mineralogy/advancement/recipes/marble_stairs.json index 4a9c46a57..f85ec01f2 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/marble_stairs.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/marble_stairs.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:marble_stairs" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:marble_stairs" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/marble" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:marble_stairs" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:marble_stairs" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/marble" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/marble_to_stone.json b/src/main/resources/data/mineralogy/advancement/recipes/marble_to_stone.json index cbf0b9568..93a79f402 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/marble_to_stone.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/marble_to_stone.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:marble_to_stone" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:marble_to_stone" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:marble" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:marble_to_stone" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:marble_to_stone" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:marble" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/marble_wall.json b/src/main/resources/data/mineralogy/advancement/recipes/marble_wall.json index 121c91662..2d68212f2 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/marble_wall.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/marble_wall.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:marble_wall" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:marble_wall" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/marble" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:marble_wall" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:marble_wall" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/marble" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/mineralfertilizer.json b/src/main/resources/data/mineralogy/advancement/recipes/mineralfertilizer.json index e9b9ea0ca..2c8768c60 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/mineralfertilizer.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/mineralfertilizer.json @@ -1,38 +1,38 @@ { - "neoforge:conditions": [ - { - "type": "mineralogy:config", - "flag": "ENABLE_MINERAL_FERTILIZER" - } - ], - "rewards": { - "recipes": [ - "mineralogy:mineralfertilizer" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:mineralfertilizer" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:nitrate_dust" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "neoforge:conditions": [ + { + "type": "mineralogy:config", + "flag": "ENABLE_MINERAL_FERTILIZER" + } + ], + "rewards": { + "recipes": [ + "mineralogy:mineralfertilizer" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:mineralfertilizer" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:nitrate_dust" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/nitrate_block.json b/src/main/resources/data/mineralogy/advancement/recipes/nitrate_block.json index 75918db8d..0a1df65f5 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/nitrate_block.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/nitrate_block.json @@ -1,38 +1,38 @@ { - "neoforge:conditions": [ - { - "type": "mineralogy:config", - "flag": "ENABLE_MINERAL_DUSTS" - } - ], - "rewards": { - "recipes": [ - "mineralogy:nitrate_block" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:nitrate_block" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:nitrate_dust" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "neoforge:conditions": [ + { + "type": "mineralogy:config", + "flag": "ENABLE_MINERAL_DUSTS" + } + ], + "rewards": { + "recipes": [ + "mineralogy:nitrate_block" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:nitrate_block" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:nitrate_dust" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/nitrate_dust.json b/src/main/resources/data/mineralogy/advancement/recipes/nitrate_dust.json index e5aa8b15a..5f4c97762 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/nitrate_dust.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/nitrate_dust.json @@ -1,38 +1,38 @@ { - "neoforge:conditions": [ - { - "type": "mineralogy:config", - "flag": "ENABLE_MINERAL_DUSTS" - } - ], - "rewards": { - "recipes": [ - "mineralogy:nitrate_dust" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:nitrate_dust" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:nitrate_block" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "neoforge:conditions": [ + { + "type": "mineralogy:config", + "flag": "ENABLE_MINERAL_DUSTS" + } + ], + "rewards": { + "recipes": [ + "mineralogy:nitrate_dust" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:nitrate_dust" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:nitrate_block" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/novaculite_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/novaculite_brick.json index 68b387057..3f29b7c2a 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/novaculite_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/novaculite_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:novaculite_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:novaculite_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/novaculite" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:novaculite_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:novaculite_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/novaculite" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/novaculite_brick_block_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/novaculite_brick_block_polishing.json index fd3277d66..a2f3d058a 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/novaculite_brick_block_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/novaculite_brick_block_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:novaculite_brick_block_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:novaculite_brick_block_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:novaculite_brick" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:novaculite_brick_block_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:novaculite_brick_block_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:novaculite_brick" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/novaculite_brick_furnace.json b/src/main/resources/data/mineralogy/advancement/recipes/novaculite_brick_furnace.json index 63147abb5..ecf85c64a 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/novaculite_brick_furnace.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/novaculite_brick_furnace.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:novaculite_brick_furnace" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:novaculite_brick_furnace" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:slabs/novaculite/brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:novaculite_brick_furnace" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:novaculite_brick_furnace" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:slabs/novaculite/brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/novaculite_brick_slab.json b/src/main/resources/data/mineralogy/advancement/recipes/novaculite_brick_slab.json index 91eeceaa1..9d1d93e73 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/novaculite_brick_slab.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/novaculite_brick_slab.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:novaculite_brick_slab" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:novaculite_brick_slab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:novaculite_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:novaculite_brick_slab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:novaculite_brick_slab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:novaculite_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/novaculite_brick_slab_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/novaculite_brick_slab_polishing.json index 142173acd..1cc826177 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/novaculite_brick_slab_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/novaculite_brick_slab_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:novaculite_brick_slab_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:novaculite_brick_slab_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:novaculite_brick_slab" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:novaculite_brick_slab_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:novaculite_brick_slab_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:novaculite_brick_slab" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/novaculite_brick_slab_recombination.json b/src/main/resources/data/mineralogy/advancement/recipes/novaculite_brick_slab_recombination.json index 9d942bab1..82dc44798 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/novaculite_brick_slab_recombination.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/novaculite_brick_slab_recombination.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:novaculite_brick_slab_recombination" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:novaculite_brick_slab_recombination" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:novaculite_brick_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:novaculite_brick_slab_recombination" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:novaculite_brick_slab_recombination" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:novaculite_brick_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/novaculite_brick_stairs.json b/src/main/resources/data/mineralogy/advancement/recipes/novaculite_brick_stairs.json index 26571ce74..83e74acff 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/novaculite_brick_stairs.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/novaculite_brick_stairs.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:novaculite_brick_stairs" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:novaculite_brick_stairs" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/novaculite/brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:novaculite_brick_stairs" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:novaculite_brick_stairs" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/novaculite/brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/novaculite_brick_stairs_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/novaculite_brick_stairs_polishing.json index 94efeacd5..44502301e 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/novaculite_brick_stairs_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/novaculite_brick_stairs_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:novaculite_brick_stairs_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:novaculite_brick_stairs_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:novaculite_brick_stairs" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:novaculite_brick_stairs_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:novaculite_brick_stairs_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:novaculite_brick_stairs" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/novaculite_brick_wall.json b/src/main/resources/data/mineralogy/advancement/recipes/novaculite_brick_wall.json index 355fd7ea5..9622929c1 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/novaculite_brick_wall.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/novaculite_brick_wall.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:novaculite_brick_wall" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:novaculite_brick_wall" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/novaculite/brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:novaculite_brick_wall" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:novaculite_brick_wall" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/novaculite/brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/novaculite_brick_wall_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/novaculite_brick_wall_polishing.json index 209c93e01..b0836abe3 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/novaculite_brick_wall_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/novaculite_brick_wall_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:novaculite_brick_wall_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:novaculite_brick_wall_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:novaculite_brick_wall" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:novaculite_brick_wall_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:novaculite_brick_wall_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:novaculite_brick_wall" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/novaculite_cobblestone.json b/src/main/resources/data/mineralogy/advancement/recipes/novaculite_cobblestone.json index 30dedb9b7..7192de207 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/novaculite_cobblestone.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/novaculite_cobblestone.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:novaculite_cobblestone" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:novaculite_cobblestone" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/novaculite" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:novaculite_cobblestone" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:novaculite_cobblestone" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/novaculite" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/novaculite_furnace.json b/src/main/resources/data/mineralogy/advancement/recipes/novaculite_furnace.json index e5f7b772e..44697ffb8 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/novaculite_furnace.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/novaculite_furnace.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:novaculite_furnace" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:novaculite_furnace" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:slabs/novaculite" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:novaculite_furnace" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:novaculite_furnace" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:slabs/novaculite" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/novaculite_polished_brick_slab_recombination.json b/src/main/resources/data/mineralogy/advancement/recipes/novaculite_polished_brick_slab_recombination.json index a4216e324..2e2687e6a 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/novaculite_polished_brick_slab_recombination.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/novaculite_polished_brick_slab_recombination.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:novaculite_polished_brick_slab_recombination" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:novaculite_polished_brick_slab_recombination" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:novaculite_smooth_brick_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:novaculite_polished_brick_slab_recombination" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:novaculite_polished_brick_slab_recombination" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:novaculite_smooth_brick_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/novaculite_polished_slab_recombination.json b/src/main/resources/data/mineralogy/advancement/recipes/novaculite_polished_slab_recombination.json index 37bf0c0ae..f2d841730 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/novaculite_polished_slab_recombination.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/novaculite_polished_slab_recombination.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:novaculite_polished_slab_recombination" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:novaculite_polished_slab_recombination" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:novaculite_smooth_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:novaculite_polished_slab_recombination" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:novaculite_polished_slab_recombination" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:novaculite_smooth_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/novaculite_polished_slabs_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/novaculite_polished_slabs_to_brick.json index ab99d63af..448006abb 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/novaculite_polished_slabs_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/novaculite_polished_slabs_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:novaculite_polished_slabs_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:novaculite_polished_slabs_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:novaculite_smooth_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:novaculite_polished_slabs_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:novaculite_polished_slabs_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:novaculite_smooth_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/novaculite_polished_stairs_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/novaculite_polished_stairs_to_brick.json index 38a26ad30..ba8a499d7 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/novaculite_polished_stairs_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/novaculite_polished_stairs_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:novaculite_polished_stairs_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:novaculite_polished_stairs_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:novaculite_smooth_stairs" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:novaculite_polished_stairs_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:novaculite_polished_stairs_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:novaculite_smooth_stairs" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/novaculite_polished_walls_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/novaculite_polished_walls_to_brick.json index f5685cb73..6a084c6a8 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/novaculite_polished_walls_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/novaculite_polished_walls_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:novaculite_polished_walls_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:novaculite_polished_walls_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:novaculite_smooth_wall" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:novaculite_polished_walls_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:novaculite_polished_walls_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:novaculite_smooth_wall" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/novaculite_raw_slab_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/novaculite_raw_slab_polishing.json index f38500bf2..81f8b9a90 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/novaculite_raw_slab_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/novaculite_raw_slab_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:novaculite_raw_slab_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:novaculite_raw_slab_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:novaculite_slab" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:novaculite_raw_slab_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:novaculite_raw_slab_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:novaculite_slab" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/novaculite_raw_slab_recombination.json b/src/main/resources/data/mineralogy/advancement/recipes/novaculite_raw_slab_recombination.json index f4fefc86a..4a2c9cb85 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/novaculite_raw_slab_recombination.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/novaculite_raw_slab_recombination.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:novaculite_raw_slab_recombination" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:novaculite_raw_slab_recombination" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:novaculite_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:novaculite_raw_slab_recombination" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:novaculite_raw_slab_recombination" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:novaculite_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/novaculite_raw_slabs_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/novaculite_raw_slabs_to_brick.json index dfcad190b..3ad696835 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/novaculite_raw_slabs_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/novaculite_raw_slabs_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:novaculite_raw_slabs_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:novaculite_raw_slabs_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:novaculite_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:novaculite_raw_slabs_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:novaculite_raw_slabs_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:novaculite_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/novaculite_raw_stairs_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/novaculite_raw_stairs_polishing.json index 0f7408718..3081416a7 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/novaculite_raw_stairs_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/novaculite_raw_stairs_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:novaculite_raw_stairs_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:novaculite_raw_stairs_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:novaculite_stairs" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:novaculite_raw_stairs_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:novaculite_raw_stairs_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:novaculite_stairs" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/novaculite_raw_stairs_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/novaculite_raw_stairs_to_brick.json index 8de42a239..b32e9f02c 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/novaculite_raw_stairs_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/novaculite_raw_stairs_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:novaculite_raw_stairs_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:novaculite_raw_stairs_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:novaculite_stairs" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:novaculite_raw_stairs_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:novaculite_raw_stairs_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:novaculite_stairs" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/novaculite_raw_wall_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/novaculite_raw_wall_polishing.json index 9d04062ea..42d8f719e 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/novaculite_raw_wall_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/novaculite_raw_wall_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:novaculite_raw_wall_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:novaculite_raw_wall_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:novaculite_wall" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:novaculite_raw_wall_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:novaculite_raw_wall_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:novaculite_wall" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/novaculite_raw_walls_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/novaculite_raw_walls_to_brick.json index 0f35914b5..2441b17fb 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/novaculite_raw_walls_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/novaculite_raw_walls_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:novaculite_raw_walls_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:novaculite_raw_walls_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:novaculite_wall" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:novaculite_raw_walls_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:novaculite_raw_walls_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:novaculite_wall" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/novaculite_relief_axe.json b/src/main/resources/data/mineralogy/advancement/recipes/novaculite_relief_axe.json index e8f1c9463..2e086bba8 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/novaculite_relief_axe.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/novaculite_relief_axe.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:novaculite_relief_axe" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:novaculite_relief_axe" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:novaculite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:novaculite_relief_axe" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:novaculite_relief_axe" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:novaculite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/novaculite_relief_blank.json b/src/main/resources/data/mineralogy/advancement/recipes/novaculite_relief_blank.json index aa3c0fa41..ba7974a4f 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/novaculite_relief_blank.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/novaculite_relief_blank.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:novaculite_relief_blank" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:novaculite_relief_blank" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:novaculite_smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:novaculite_relief_blank" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:novaculite_relief_blank" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:novaculite_smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/novaculite_relief_cross.json b/src/main/resources/data/mineralogy/advancement/recipes/novaculite_relief_cross.json index 9bcd6e14f..2fbeedb23 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/novaculite_relief_cross.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/novaculite_relief_cross.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:novaculite_relief_cross" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:novaculite_relief_cross" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:novaculite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:novaculite_relief_cross" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:novaculite_relief_cross" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:novaculite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/novaculite_relief_hammer.json b/src/main/resources/data/mineralogy/advancement/recipes/novaculite_relief_hammer.json index 0b24b4d71..536826b2a 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/novaculite_relief_hammer.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/novaculite_relief_hammer.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:novaculite_relief_hammer" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:novaculite_relief_hammer" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:novaculite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:novaculite_relief_hammer" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:novaculite_relief_hammer" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:novaculite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/novaculite_relief_hoe.json b/src/main/resources/data/mineralogy/advancement/recipes/novaculite_relief_hoe.json index 9306f8fcc..3234f1bbe 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/novaculite_relief_hoe.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/novaculite_relief_hoe.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:novaculite_relief_hoe" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:novaculite_relief_hoe" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:novaculite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:novaculite_relief_hoe" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:novaculite_relief_hoe" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:novaculite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/novaculite_relief_horizontal.json b/src/main/resources/data/mineralogy/advancement/recipes/novaculite_relief_horizontal.json index c060b4439..366d77094 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/novaculite_relief_horizontal.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/novaculite_relief_horizontal.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:novaculite_relief_horizontal" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:novaculite_relief_horizontal" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:novaculite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:novaculite_relief_horizontal" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:novaculite_relief_horizontal" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:novaculite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/novaculite_relief_i.json b/src/main/resources/data/mineralogy/advancement/recipes/novaculite_relief_i.json index ae50caed6..53a5c49a6 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/novaculite_relief_i.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/novaculite_relief_i.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:novaculite_relief_i" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:novaculite_relief_i" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:novaculite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:novaculite_relief_i" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:novaculite_relief_i" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:novaculite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/novaculite_relief_left.json b/src/main/resources/data/mineralogy/advancement/recipes/novaculite_relief_left.json index 8232f4ab8..c7594a9d2 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/novaculite_relief_left.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/novaculite_relief_left.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:novaculite_relief_left" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:novaculite_relief_left" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:novaculite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:novaculite_relief_left" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:novaculite_relief_left" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:novaculite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/novaculite_relief_pickaxe.json b/src/main/resources/data/mineralogy/advancement/recipes/novaculite_relief_pickaxe.json index 25768a6c9..172e03077 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/novaculite_relief_pickaxe.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/novaculite_relief_pickaxe.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:novaculite_relief_pickaxe" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:novaculite_relief_pickaxe" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:novaculite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:novaculite_relief_pickaxe" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:novaculite_relief_pickaxe" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:novaculite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/novaculite_relief_plus.json b/src/main/resources/data/mineralogy/advancement/recipes/novaculite_relief_plus.json index 2c6ab0a6f..15345f6c4 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/novaculite_relief_plus.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/novaculite_relief_plus.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:novaculite_relief_plus" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:novaculite_relief_plus" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:novaculite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:novaculite_relief_plus" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:novaculite_relief_plus" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:novaculite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/novaculite_relief_right.json b/src/main/resources/data/mineralogy/advancement/recipes/novaculite_relief_right.json index 6d4bf2daf..f28a64bce 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/novaculite_relief_right.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/novaculite_relief_right.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:novaculite_relief_right" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:novaculite_relief_right" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:novaculite_relief_left" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:novaculite_relief_right" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:novaculite_relief_right" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:novaculite_relief_left" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/novaculite_relief_sword.json b/src/main/resources/data/mineralogy/advancement/recipes/novaculite_relief_sword.json index b828e5b5d..89616b983 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/novaculite_relief_sword.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/novaculite_relief_sword.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:novaculite_relief_sword" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:novaculite_relief_sword" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:novaculite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:novaculite_relief_sword" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:novaculite_relief_sword" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:novaculite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/novaculite_relief_vertical.json b/src/main/resources/data/mineralogy/advancement/recipes/novaculite_relief_vertical.json index 3c171fc18..523ed0157 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/novaculite_relief_vertical.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/novaculite_relief_vertical.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:novaculite_relief_vertical" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:novaculite_relief_vertical" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:novaculite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:novaculite_relief_vertical" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:novaculite_relief_vertical" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:novaculite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/novaculite_slab.json b/src/main/resources/data/mineralogy/advancement/recipes/novaculite_slab.json index cbdab37ff..0771a9c25 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/novaculite_slab.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/novaculite_slab.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:novaculite_slab" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:novaculite_slab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:novaculite" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:novaculite_slab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:novaculite_slab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:novaculite" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/novaculite_smooth.json b/src/main/resources/data/mineralogy/advancement/recipes/novaculite_smooth.json index 6731cf9b1..7abb32fce 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/novaculite_smooth.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/novaculite_smooth.json @@ -1,48 +1,46 @@ { - "rewards": { - "recipes": [ - "mineralogy:novaculite_smooth" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:novaculite_smooth" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/novaculite" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:novaculite_smooth" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:novaculite_smooth" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/novaculite" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/novaculite_smooth_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/novaculite_smooth_brick.json index 68ee0a979..792d9ba9b 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/novaculite_smooth_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/novaculite_smooth_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:novaculite_smooth_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:novaculite_smooth_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/novaculite/smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:novaculite_smooth_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:novaculite_smooth_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/novaculite/smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/novaculite_smooth_brick_furnace.json b/src/main/resources/data/mineralogy/advancement/recipes/novaculite_smooth_brick_furnace.json index 56d4d061f..113f3f468 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/novaculite_smooth_brick_furnace.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/novaculite_smooth_brick_furnace.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:novaculite_smooth_brick_furnace" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:novaculite_smooth_brick_furnace" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:slabs/novaculite/smooth_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:novaculite_smooth_brick_furnace" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:novaculite_smooth_brick_furnace" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:slabs/novaculite/smooth_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/novaculite_smooth_brick_slab.json b/src/main/resources/data/mineralogy/advancement/recipes/novaculite_smooth_brick_slab.json index 1957e45f8..82e5eb0ee 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/novaculite_smooth_brick_slab.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/novaculite_smooth_brick_slab.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:novaculite_smooth_brick_slab" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:novaculite_smooth_brick_slab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:novaculite_smooth_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:novaculite_smooth_brick_slab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:novaculite_smooth_brick_slab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:novaculite_smooth_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/novaculite_smooth_brick_stairs.json b/src/main/resources/data/mineralogy/advancement/recipes/novaculite_smooth_brick_stairs.json index 49bbe28da..1c2d246c4 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/novaculite_smooth_brick_stairs.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/novaculite_smooth_brick_stairs.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:novaculite_smooth_brick_stairs" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:novaculite_smooth_brick_stairs" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/novaculite/smooth_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:novaculite_smooth_brick_stairs" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:novaculite_smooth_brick_stairs" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/novaculite/smooth_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/novaculite_smooth_brick_wall.json b/src/main/resources/data/mineralogy/advancement/recipes/novaculite_smooth_brick_wall.json index 0e3b42155..1e69ab09f 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/novaculite_smooth_brick_wall.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/novaculite_smooth_brick_wall.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:novaculite_smooth_brick_wall" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:novaculite_smooth_brick_wall" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/novaculite/smooth_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:novaculite_smooth_brick_wall" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:novaculite_smooth_brick_wall" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/novaculite/smooth_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/novaculite_smooth_furnace.json b/src/main/resources/data/mineralogy/advancement/recipes/novaculite_smooth_furnace.json index 2a6ac4c8d..a77c0e556 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/novaculite_smooth_furnace.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/novaculite_smooth_furnace.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:novaculite_smooth_furnace" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:novaculite_smooth_furnace" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:slabs/novaculite/smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:novaculite_smooth_furnace" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:novaculite_smooth_furnace" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:slabs/novaculite/smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/novaculite_smooth_slab.json b/src/main/resources/data/mineralogy/advancement/recipes/novaculite_smooth_slab.json index cdaea996f..9498e5589 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/novaculite_smooth_slab.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/novaculite_smooth_slab.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:novaculite_smooth_slab" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:novaculite_smooth_slab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:novaculite_smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:novaculite_smooth_slab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:novaculite_smooth_slab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:novaculite_smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/novaculite_smooth_stairs.json b/src/main/resources/data/mineralogy/advancement/recipes/novaculite_smooth_stairs.json index d93d391de..800398fe4 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/novaculite_smooth_stairs.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/novaculite_smooth_stairs.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:novaculite_smooth_stairs" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:novaculite_smooth_stairs" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/novaculite/smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:novaculite_smooth_stairs" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:novaculite_smooth_stairs" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/novaculite/smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/novaculite_smooth_wall.json b/src/main/resources/data/mineralogy/advancement/recipes/novaculite_smooth_wall.json index 9a6dd5707..11d3d5b5a 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/novaculite_smooth_wall.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/novaculite_smooth_wall.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:novaculite_smooth_wall" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:novaculite_smooth_wall" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/novaculite/smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:novaculite_smooth_wall" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:novaculite_smooth_wall" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/novaculite/smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/novaculite_stairs.json b/src/main/resources/data/mineralogy/advancement/recipes/novaculite_stairs.json index 75e3317cf..dfc70e81f 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/novaculite_stairs.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/novaculite_stairs.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:novaculite_stairs" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:novaculite_stairs" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/novaculite" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:novaculite_stairs" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:novaculite_stairs" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/novaculite" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/novaculite_to_stone.json b/src/main/resources/data/mineralogy/advancement/recipes/novaculite_to_stone.json index 570789c97..9ff914e22 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/novaculite_to_stone.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/novaculite_to_stone.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:novaculite_to_stone" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:novaculite_to_stone" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:novaculite" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:novaculite_to_stone" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:novaculite_to_stone" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:novaculite" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/novaculite_wall.json b/src/main/resources/data/mineralogy/advancement/recipes/novaculite_wall.json index 6dc734bb8..2202f3e3d 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/novaculite_wall.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/novaculite_wall.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:novaculite_wall" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:novaculite_wall" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/novaculite" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:novaculite_wall" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:novaculite_wall" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/novaculite" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_brick.json index 6dfff79f2..c22bdd857 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:pegmatite_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:pegmatite_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/pegmatite" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:pegmatite_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:pegmatite_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/pegmatite" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_brick_block_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_brick_block_polishing.json index b74ac7667..e1198ada4 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_brick_block_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_brick_block_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:pegmatite_brick_block_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:pegmatite_brick_block_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:pegmatite_brick" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:pegmatite_brick_block_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:pegmatite_brick_block_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:pegmatite_brick" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_brick_furnace.json b/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_brick_furnace.json index afed34ad5..7f02a521f 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_brick_furnace.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_brick_furnace.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:pegmatite_brick_furnace" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:pegmatite_brick_furnace" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:slabs/pegmatite/brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:pegmatite_brick_furnace" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:pegmatite_brick_furnace" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:slabs/pegmatite/brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_brick_slab.json b/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_brick_slab.json index 6d35d3dc4..cee7d9096 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_brick_slab.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_brick_slab.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:pegmatite_brick_slab" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:pegmatite_brick_slab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:pegmatite_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:pegmatite_brick_slab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:pegmatite_brick_slab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:pegmatite_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_brick_slab_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_brick_slab_polishing.json index cb81c653b..aa2b554e9 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_brick_slab_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_brick_slab_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:pegmatite_brick_slab_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:pegmatite_brick_slab_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:pegmatite_brick_slab" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:pegmatite_brick_slab_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:pegmatite_brick_slab_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:pegmatite_brick_slab" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_brick_slab_recombination.json b/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_brick_slab_recombination.json index 559c9d338..ff3a6f22d 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_brick_slab_recombination.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_brick_slab_recombination.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:pegmatite_brick_slab_recombination" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:pegmatite_brick_slab_recombination" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:pegmatite_brick_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:pegmatite_brick_slab_recombination" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:pegmatite_brick_slab_recombination" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:pegmatite_brick_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_brick_stairs.json b/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_brick_stairs.json index ad137ec6d..ea972a71c 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_brick_stairs.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_brick_stairs.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:pegmatite_brick_stairs" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:pegmatite_brick_stairs" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/pegmatite/brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:pegmatite_brick_stairs" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:pegmatite_brick_stairs" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/pegmatite/brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_brick_stairs_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_brick_stairs_polishing.json index 872278b9a..6b46ecd7a 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_brick_stairs_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_brick_stairs_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:pegmatite_brick_stairs_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:pegmatite_brick_stairs_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:pegmatite_brick_stairs" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:pegmatite_brick_stairs_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:pegmatite_brick_stairs_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:pegmatite_brick_stairs" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_brick_wall.json b/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_brick_wall.json index 91c09734e..7c0ae6394 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_brick_wall.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_brick_wall.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:pegmatite_brick_wall" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:pegmatite_brick_wall" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/pegmatite/brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:pegmatite_brick_wall" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:pegmatite_brick_wall" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/pegmatite/brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_brick_wall_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_brick_wall_polishing.json index f264a6170..a2c2ed0eb 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_brick_wall_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_brick_wall_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:pegmatite_brick_wall_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:pegmatite_brick_wall_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:pegmatite_brick_wall" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:pegmatite_brick_wall_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:pegmatite_brick_wall_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:pegmatite_brick_wall" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_cobblestone.json b/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_cobblestone.json index b0ce40915..c52079858 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_cobblestone.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_cobblestone.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:pegmatite_cobblestone" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:pegmatite_cobblestone" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/pegmatite" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:pegmatite_cobblestone" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:pegmatite_cobblestone" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/pegmatite" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_furnace.json b/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_furnace.json index d1b9950d0..5fc4b7c5b 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_furnace.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_furnace.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:pegmatite_furnace" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:pegmatite_furnace" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:slabs/pegmatite" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:pegmatite_furnace" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:pegmatite_furnace" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:slabs/pegmatite" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_polished_brick_slab_recombination.json b/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_polished_brick_slab_recombination.json index 7b4cb900e..9078e94dc 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_polished_brick_slab_recombination.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_polished_brick_slab_recombination.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:pegmatite_polished_brick_slab_recombination" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:pegmatite_polished_brick_slab_recombination" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:pegmatite_smooth_brick_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:pegmatite_polished_brick_slab_recombination" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:pegmatite_polished_brick_slab_recombination" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:pegmatite_smooth_brick_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_polished_slab_recombination.json b/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_polished_slab_recombination.json index 12b0ddeec..e851188a4 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_polished_slab_recombination.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_polished_slab_recombination.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:pegmatite_polished_slab_recombination" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:pegmatite_polished_slab_recombination" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:pegmatite_smooth_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:pegmatite_polished_slab_recombination" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:pegmatite_polished_slab_recombination" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:pegmatite_smooth_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_polished_slabs_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_polished_slabs_to_brick.json index f81557423..0da8b29e4 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_polished_slabs_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_polished_slabs_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:pegmatite_polished_slabs_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:pegmatite_polished_slabs_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:pegmatite_smooth_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:pegmatite_polished_slabs_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:pegmatite_polished_slabs_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:pegmatite_smooth_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_polished_stairs_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_polished_stairs_to_brick.json index ed6545e3f..a85d13a6e 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_polished_stairs_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_polished_stairs_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:pegmatite_polished_stairs_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:pegmatite_polished_stairs_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:pegmatite_smooth_stairs" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:pegmatite_polished_stairs_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:pegmatite_polished_stairs_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:pegmatite_smooth_stairs" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_polished_walls_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_polished_walls_to_brick.json index f143e2d45..0507d1203 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_polished_walls_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_polished_walls_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:pegmatite_polished_walls_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:pegmatite_polished_walls_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:pegmatite_smooth_wall" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:pegmatite_polished_walls_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:pegmatite_polished_walls_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:pegmatite_smooth_wall" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_raw_slab_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_raw_slab_polishing.json index 96164f489..bc44ea0ee 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_raw_slab_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_raw_slab_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:pegmatite_raw_slab_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:pegmatite_raw_slab_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:pegmatite_slab" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:pegmatite_raw_slab_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:pegmatite_raw_slab_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:pegmatite_slab" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_raw_slab_recombination.json b/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_raw_slab_recombination.json index 28064e4d1..146b79dc8 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_raw_slab_recombination.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_raw_slab_recombination.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:pegmatite_raw_slab_recombination" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:pegmatite_raw_slab_recombination" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:pegmatite_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:pegmatite_raw_slab_recombination" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:pegmatite_raw_slab_recombination" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:pegmatite_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_raw_slabs_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_raw_slabs_to_brick.json index 819aa2358..1c556dcfb 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_raw_slabs_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_raw_slabs_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:pegmatite_raw_slabs_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:pegmatite_raw_slabs_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:pegmatite_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:pegmatite_raw_slabs_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:pegmatite_raw_slabs_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:pegmatite_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_raw_stairs_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_raw_stairs_polishing.json index 33ddbd248..54589ab02 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_raw_stairs_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_raw_stairs_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:pegmatite_raw_stairs_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:pegmatite_raw_stairs_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:pegmatite_stairs" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:pegmatite_raw_stairs_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:pegmatite_raw_stairs_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:pegmatite_stairs" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_raw_stairs_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_raw_stairs_to_brick.json index c5b852b6a..12f5f8dcf 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_raw_stairs_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_raw_stairs_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:pegmatite_raw_stairs_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:pegmatite_raw_stairs_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:pegmatite_stairs" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:pegmatite_raw_stairs_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:pegmatite_raw_stairs_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:pegmatite_stairs" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_raw_wall_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_raw_wall_polishing.json index 1f831bf5b..7943f0855 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_raw_wall_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_raw_wall_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:pegmatite_raw_wall_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:pegmatite_raw_wall_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:pegmatite_wall" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:pegmatite_raw_wall_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:pegmatite_raw_wall_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:pegmatite_wall" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_raw_walls_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_raw_walls_to_brick.json index 0272b606a..417a93ad0 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_raw_walls_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_raw_walls_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:pegmatite_raw_walls_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:pegmatite_raw_walls_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:pegmatite_wall" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:pegmatite_raw_walls_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:pegmatite_raw_walls_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:pegmatite_wall" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_relief_axe.json b/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_relief_axe.json index a7c745522..8866251a0 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_relief_axe.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_relief_axe.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:pegmatite_relief_axe" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:pegmatite_relief_axe" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:pegmatite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:pegmatite_relief_axe" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:pegmatite_relief_axe" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:pegmatite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_relief_blank.json b/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_relief_blank.json index a65a74760..e2e767129 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_relief_blank.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_relief_blank.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:pegmatite_relief_blank" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:pegmatite_relief_blank" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:pegmatite_smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:pegmatite_relief_blank" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:pegmatite_relief_blank" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:pegmatite_smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_relief_cross.json b/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_relief_cross.json index 124729a62..0bffbdc43 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_relief_cross.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_relief_cross.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:pegmatite_relief_cross" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:pegmatite_relief_cross" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:pegmatite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:pegmatite_relief_cross" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:pegmatite_relief_cross" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:pegmatite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_relief_hammer.json b/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_relief_hammer.json index 606df7edb..bd385691e 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_relief_hammer.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_relief_hammer.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:pegmatite_relief_hammer" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:pegmatite_relief_hammer" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:pegmatite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:pegmatite_relief_hammer" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:pegmatite_relief_hammer" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:pegmatite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_relief_hoe.json b/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_relief_hoe.json index b3a2a6ab1..b65067643 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_relief_hoe.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_relief_hoe.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:pegmatite_relief_hoe" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:pegmatite_relief_hoe" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:pegmatite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:pegmatite_relief_hoe" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:pegmatite_relief_hoe" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:pegmatite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_relief_horizontal.json b/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_relief_horizontal.json index 2d824359e..fd6408386 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_relief_horizontal.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_relief_horizontal.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:pegmatite_relief_horizontal" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:pegmatite_relief_horizontal" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:pegmatite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:pegmatite_relief_horizontal" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:pegmatite_relief_horizontal" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:pegmatite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_relief_i.json b/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_relief_i.json index 413c3e389..a61c8108f 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_relief_i.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_relief_i.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:pegmatite_relief_i" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:pegmatite_relief_i" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:pegmatite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:pegmatite_relief_i" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:pegmatite_relief_i" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:pegmatite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_relief_left.json b/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_relief_left.json index 356eee15b..91b4b4f0e 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_relief_left.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_relief_left.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:pegmatite_relief_left" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:pegmatite_relief_left" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:pegmatite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:pegmatite_relief_left" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:pegmatite_relief_left" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:pegmatite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_relief_pickaxe.json b/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_relief_pickaxe.json index 182cc956d..62f224954 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_relief_pickaxe.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_relief_pickaxe.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:pegmatite_relief_pickaxe" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:pegmatite_relief_pickaxe" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:pegmatite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:pegmatite_relief_pickaxe" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:pegmatite_relief_pickaxe" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:pegmatite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_relief_plus.json b/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_relief_plus.json index 585087595..4780d73f1 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_relief_plus.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_relief_plus.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:pegmatite_relief_plus" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:pegmatite_relief_plus" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:pegmatite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:pegmatite_relief_plus" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:pegmatite_relief_plus" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:pegmatite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_relief_right.json b/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_relief_right.json index cf68ff1ab..4871540f5 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_relief_right.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_relief_right.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:pegmatite_relief_right" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:pegmatite_relief_right" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:pegmatite_relief_left" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:pegmatite_relief_right" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:pegmatite_relief_right" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:pegmatite_relief_left" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_relief_sword.json b/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_relief_sword.json index 99b58802f..85aacf65c 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_relief_sword.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_relief_sword.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:pegmatite_relief_sword" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:pegmatite_relief_sword" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:pegmatite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:pegmatite_relief_sword" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:pegmatite_relief_sword" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:pegmatite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_relief_vertical.json b/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_relief_vertical.json index d3157a993..d7249edb0 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_relief_vertical.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_relief_vertical.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:pegmatite_relief_vertical" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:pegmatite_relief_vertical" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:pegmatite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:pegmatite_relief_vertical" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:pegmatite_relief_vertical" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:pegmatite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_slab.json b/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_slab.json index 69b4f3bcb..d5877edd6 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_slab.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_slab.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:pegmatite_slab" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:pegmatite_slab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:pegmatite" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:pegmatite_slab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:pegmatite_slab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:pegmatite" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_smooth.json b/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_smooth.json index bad74567c..47ff4476e 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_smooth.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_smooth.json @@ -1,48 +1,46 @@ { - "rewards": { - "recipes": [ - "mineralogy:pegmatite_smooth" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:pegmatite_smooth" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/pegmatite" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:pegmatite_smooth" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:pegmatite_smooth" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/pegmatite" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_smooth_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_smooth_brick.json index c933da19a..b56989304 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_smooth_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_smooth_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:pegmatite_smooth_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:pegmatite_smooth_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/pegmatite/smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:pegmatite_smooth_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:pegmatite_smooth_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/pegmatite/smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_smooth_brick_furnace.json b/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_smooth_brick_furnace.json index 5f3634560..596f40743 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_smooth_brick_furnace.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_smooth_brick_furnace.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:pegmatite_smooth_brick_furnace" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:pegmatite_smooth_brick_furnace" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:slabs/pegmatite/smooth_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:pegmatite_smooth_brick_furnace" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:pegmatite_smooth_brick_furnace" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:slabs/pegmatite/smooth_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_smooth_brick_slab.json b/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_smooth_brick_slab.json index fcfdff81f..d705ee11e 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_smooth_brick_slab.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_smooth_brick_slab.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:pegmatite_smooth_brick_slab" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:pegmatite_smooth_brick_slab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:pegmatite_smooth_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:pegmatite_smooth_brick_slab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:pegmatite_smooth_brick_slab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:pegmatite_smooth_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_smooth_brick_stairs.json b/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_smooth_brick_stairs.json index 8009f4a9e..84e2eb953 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_smooth_brick_stairs.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_smooth_brick_stairs.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:pegmatite_smooth_brick_stairs" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:pegmatite_smooth_brick_stairs" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/pegmatite/smooth_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:pegmatite_smooth_brick_stairs" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:pegmatite_smooth_brick_stairs" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/pegmatite/smooth_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_smooth_brick_wall.json b/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_smooth_brick_wall.json index 78d54774b..a9459095e 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_smooth_brick_wall.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_smooth_brick_wall.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:pegmatite_smooth_brick_wall" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:pegmatite_smooth_brick_wall" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/pegmatite/smooth_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:pegmatite_smooth_brick_wall" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:pegmatite_smooth_brick_wall" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/pegmatite/smooth_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_smooth_furnace.json b/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_smooth_furnace.json index 9531873fe..7df7965e9 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_smooth_furnace.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_smooth_furnace.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:pegmatite_smooth_furnace" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:pegmatite_smooth_furnace" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:slabs/pegmatite/smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:pegmatite_smooth_furnace" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:pegmatite_smooth_furnace" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:slabs/pegmatite/smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_smooth_slab.json b/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_smooth_slab.json index aa8dd1f07..d425d6688 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_smooth_slab.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_smooth_slab.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:pegmatite_smooth_slab" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:pegmatite_smooth_slab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:pegmatite_smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:pegmatite_smooth_slab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:pegmatite_smooth_slab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:pegmatite_smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_smooth_stairs.json b/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_smooth_stairs.json index eba82c6b3..953939f46 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_smooth_stairs.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_smooth_stairs.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:pegmatite_smooth_stairs" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:pegmatite_smooth_stairs" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/pegmatite/smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:pegmatite_smooth_stairs" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:pegmatite_smooth_stairs" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/pegmatite/smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_smooth_wall.json b/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_smooth_wall.json index 56726be7d..76273e9e6 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_smooth_wall.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_smooth_wall.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:pegmatite_smooth_wall" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:pegmatite_smooth_wall" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/pegmatite/smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:pegmatite_smooth_wall" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:pegmatite_smooth_wall" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/pegmatite/smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_stairs.json b/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_stairs.json index e5e99fcd7..f2a9dafda 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_stairs.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_stairs.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:pegmatite_stairs" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:pegmatite_stairs" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/pegmatite" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:pegmatite_stairs" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:pegmatite_stairs" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/pegmatite" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_to_stone.json b/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_to_stone.json index 7c13ab209..4babce166 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_to_stone.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_to_stone.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:pegmatite_to_stone" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:pegmatite_to_stone" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:pegmatite" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:pegmatite_to_stone" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:pegmatite_to_stone" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:pegmatite" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_wall.json b/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_wall.json index 40cd42a41..c7d4cb12a 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_wall.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/pegmatite_wall.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:pegmatite_wall" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:pegmatite_wall" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/pegmatite" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:pegmatite_wall" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:pegmatite_wall" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/pegmatite" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/peridotite_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/peridotite_brick.json index ddb3d4fae..e22f83438 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/peridotite_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/peridotite_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:peridotite_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:peridotite_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/peridotite" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:peridotite_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:peridotite_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/peridotite" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/peridotite_brick_block_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/peridotite_brick_block_polishing.json index 66c10e1f1..20f17290a 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/peridotite_brick_block_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/peridotite_brick_block_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:peridotite_brick_block_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:peridotite_brick_block_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:peridotite_brick" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:peridotite_brick_block_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:peridotite_brick_block_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:peridotite_brick" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/peridotite_brick_furnace.json b/src/main/resources/data/mineralogy/advancement/recipes/peridotite_brick_furnace.json index 823b12114..e07a6caf7 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/peridotite_brick_furnace.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/peridotite_brick_furnace.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:peridotite_brick_furnace" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:peridotite_brick_furnace" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:slabs/peridotite/brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:peridotite_brick_furnace" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:peridotite_brick_furnace" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:slabs/peridotite/brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/peridotite_brick_slab.json b/src/main/resources/data/mineralogy/advancement/recipes/peridotite_brick_slab.json index 157d29638..620992971 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/peridotite_brick_slab.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/peridotite_brick_slab.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:peridotite_brick_slab" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:peridotite_brick_slab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:peridotite_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:peridotite_brick_slab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:peridotite_brick_slab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:peridotite_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/peridotite_brick_slab_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/peridotite_brick_slab_polishing.json index b3eefc150..8a05e0d8f 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/peridotite_brick_slab_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/peridotite_brick_slab_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:peridotite_brick_slab_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:peridotite_brick_slab_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:peridotite_brick_slab" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:peridotite_brick_slab_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:peridotite_brick_slab_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:peridotite_brick_slab" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/peridotite_brick_slab_recombination.json b/src/main/resources/data/mineralogy/advancement/recipes/peridotite_brick_slab_recombination.json index b3b4ee94d..10c7e2b05 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/peridotite_brick_slab_recombination.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/peridotite_brick_slab_recombination.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:peridotite_brick_slab_recombination" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:peridotite_brick_slab_recombination" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:peridotite_brick_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:peridotite_brick_slab_recombination" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:peridotite_brick_slab_recombination" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:peridotite_brick_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/peridotite_brick_stairs.json b/src/main/resources/data/mineralogy/advancement/recipes/peridotite_brick_stairs.json index c89e7ee70..cfa3bad76 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/peridotite_brick_stairs.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/peridotite_brick_stairs.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:peridotite_brick_stairs" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:peridotite_brick_stairs" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/peridotite/brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:peridotite_brick_stairs" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:peridotite_brick_stairs" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/peridotite/brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/peridotite_brick_stairs_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/peridotite_brick_stairs_polishing.json index dfa7af758..c63ad6649 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/peridotite_brick_stairs_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/peridotite_brick_stairs_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:peridotite_brick_stairs_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:peridotite_brick_stairs_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:peridotite_brick_stairs" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:peridotite_brick_stairs_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:peridotite_brick_stairs_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:peridotite_brick_stairs" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/peridotite_brick_wall.json b/src/main/resources/data/mineralogy/advancement/recipes/peridotite_brick_wall.json index f1adbc660..1bf05a8f2 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/peridotite_brick_wall.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/peridotite_brick_wall.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:peridotite_brick_wall" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:peridotite_brick_wall" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/peridotite/brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:peridotite_brick_wall" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:peridotite_brick_wall" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/peridotite/brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/peridotite_brick_wall_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/peridotite_brick_wall_polishing.json index d4e3b5072..068c5029f 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/peridotite_brick_wall_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/peridotite_brick_wall_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:peridotite_brick_wall_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:peridotite_brick_wall_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:peridotite_brick_wall" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:peridotite_brick_wall_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:peridotite_brick_wall_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:peridotite_brick_wall" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/peridotite_cobblestone.json b/src/main/resources/data/mineralogy/advancement/recipes/peridotite_cobblestone.json index cfcca816a..f28617cec 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/peridotite_cobblestone.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/peridotite_cobblestone.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:peridotite_cobblestone" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:peridotite_cobblestone" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/peridotite" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:peridotite_cobblestone" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:peridotite_cobblestone" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/peridotite" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/peridotite_furnace.json b/src/main/resources/data/mineralogy/advancement/recipes/peridotite_furnace.json index b3647d350..02810e77f 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/peridotite_furnace.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/peridotite_furnace.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:peridotite_furnace" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:peridotite_furnace" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:slabs/peridotite" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:peridotite_furnace" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:peridotite_furnace" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:slabs/peridotite" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/peridotite_polished_brick_slab_recombination.json b/src/main/resources/data/mineralogy/advancement/recipes/peridotite_polished_brick_slab_recombination.json index e83bfabde..e0c9909a9 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/peridotite_polished_brick_slab_recombination.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/peridotite_polished_brick_slab_recombination.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:peridotite_polished_brick_slab_recombination" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:peridotite_polished_brick_slab_recombination" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:peridotite_smooth_brick_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:peridotite_polished_brick_slab_recombination" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:peridotite_polished_brick_slab_recombination" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:peridotite_smooth_brick_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/peridotite_polished_slab_recombination.json b/src/main/resources/data/mineralogy/advancement/recipes/peridotite_polished_slab_recombination.json index eac44d1e5..f999f16b0 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/peridotite_polished_slab_recombination.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/peridotite_polished_slab_recombination.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:peridotite_polished_slab_recombination" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:peridotite_polished_slab_recombination" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:peridotite_smooth_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:peridotite_polished_slab_recombination" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:peridotite_polished_slab_recombination" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:peridotite_smooth_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/peridotite_polished_slabs_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/peridotite_polished_slabs_to_brick.json index 7dec2eb93..dc82212c7 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/peridotite_polished_slabs_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/peridotite_polished_slabs_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:peridotite_polished_slabs_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:peridotite_polished_slabs_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:peridotite_smooth_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:peridotite_polished_slabs_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:peridotite_polished_slabs_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:peridotite_smooth_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/peridotite_polished_stairs_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/peridotite_polished_stairs_to_brick.json index 440f1d0c5..e33297639 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/peridotite_polished_stairs_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/peridotite_polished_stairs_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:peridotite_polished_stairs_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:peridotite_polished_stairs_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:peridotite_smooth_stairs" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:peridotite_polished_stairs_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:peridotite_polished_stairs_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:peridotite_smooth_stairs" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/peridotite_polished_walls_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/peridotite_polished_walls_to_brick.json index 7f485ed89..2b65a7f75 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/peridotite_polished_walls_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/peridotite_polished_walls_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:peridotite_polished_walls_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:peridotite_polished_walls_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:peridotite_smooth_wall" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:peridotite_polished_walls_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:peridotite_polished_walls_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:peridotite_smooth_wall" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/peridotite_raw_slab_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/peridotite_raw_slab_polishing.json index 6d36cadf7..7bc9d057d 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/peridotite_raw_slab_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/peridotite_raw_slab_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:peridotite_raw_slab_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:peridotite_raw_slab_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:peridotite_slab" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:peridotite_raw_slab_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:peridotite_raw_slab_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:peridotite_slab" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/peridotite_raw_slab_recombination.json b/src/main/resources/data/mineralogy/advancement/recipes/peridotite_raw_slab_recombination.json index 01f45ca30..e51884f4d 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/peridotite_raw_slab_recombination.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/peridotite_raw_slab_recombination.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:peridotite_raw_slab_recombination" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:peridotite_raw_slab_recombination" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:peridotite_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:peridotite_raw_slab_recombination" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:peridotite_raw_slab_recombination" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:peridotite_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/peridotite_raw_slabs_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/peridotite_raw_slabs_to_brick.json index 8a6661d8d..1db570f64 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/peridotite_raw_slabs_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/peridotite_raw_slabs_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:peridotite_raw_slabs_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:peridotite_raw_slabs_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:peridotite_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:peridotite_raw_slabs_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:peridotite_raw_slabs_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:peridotite_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/peridotite_raw_stairs_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/peridotite_raw_stairs_polishing.json index 32bd956f2..7beaba219 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/peridotite_raw_stairs_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/peridotite_raw_stairs_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:peridotite_raw_stairs_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:peridotite_raw_stairs_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:peridotite_stairs" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:peridotite_raw_stairs_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:peridotite_raw_stairs_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:peridotite_stairs" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/peridotite_raw_stairs_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/peridotite_raw_stairs_to_brick.json index 2d48dcd1c..0ebf88b2d 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/peridotite_raw_stairs_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/peridotite_raw_stairs_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:peridotite_raw_stairs_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:peridotite_raw_stairs_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:peridotite_stairs" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:peridotite_raw_stairs_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:peridotite_raw_stairs_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:peridotite_stairs" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/peridotite_raw_wall_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/peridotite_raw_wall_polishing.json index 3aaa63688..59ac390a9 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/peridotite_raw_wall_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/peridotite_raw_wall_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:peridotite_raw_wall_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:peridotite_raw_wall_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:peridotite_wall" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:peridotite_raw_wall_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:peridotite_raw_wall_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:peridotite_wall" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/peridotite_raw_walls_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/peridotite_raw_walls_to_brick.json index 70a22a595..514c6cac0 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/peridotite_raw_walls_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/peridotite_raw_walls_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:peridotite_raw_walls_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:peridotite_raw_walls_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:peridotite_wall" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:peridotite_raw_walls_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:peridotite_raw_walls_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:peridotite_wall" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/peridotite_relief_axe.json b/src/main/resources/data/mineralogy/advancement/recipes/peridotite_relief_axe.json index 4b4ebed83..b77ae4847 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/peridotite_relief_axe.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/peridotite_relief_axe.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:peridotite_relief_axe" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:peridotite_relief_axe" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:peridotite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:peridotite_relief_axe" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:peridotite_relief_axe" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:peridotite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/peridotite_relief_blank.json b/src/main/resources/data/mineralogy/advancement/recipes/peridotite_relief_blank.json index f2a405e65..16368539d 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/peridotite_relief_blank.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/peridotite_relief_blank.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:peridotite_relief_blank" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:peridotite_relief_blank" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:peridotite_smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:peridotite_relief_blank" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:peridotite_relief_blank" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:peridotite_smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/peridotite_relief_cross.json b/src/main/resources/data/mineralogy/advancement/recipes/peridotite_relief_cross.json index 759d0e0a4..b1e5a6c5e 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/peridotite_relief_cross.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/peridotite_relief_cross.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:peridotite_relief_cross" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:peridotite_relief_cross" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:peridotite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:peridotite_relief_cross" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:peridotite_relief_cross" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:peridotite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/peridotite_relief_hammer.json b/src/main/resources/data/mineralogy/advancement/recipes/peridotite_relief_hammer.json index 5e5392ba9..afc9196a6 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/peridotite_relief_hammer.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/peridotite_relief_hammer.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:peridotite_relief_hammer" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:peridotite_relief_hammer" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:peridotite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:peridotite_relief_hammer" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:peridotite_relief_hammer" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:peridotite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/peridotite_relief_hoe.json b/src/main/resources/data/mineralogy/advancement/recipes/peridotite_relief_hoe.json index dc23c14bf..aaf47d0f7 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/peridotite_relief_hoe.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/peridotite_relief_hoe.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:peridotite_relief_hoe" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:peridotite_relief_hoe" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:peridotite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:peridotite_relief_hoe" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:peridotite_relief_hoe" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:peridotite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/peridotite_relief_horizontal.json b/src/main/resources/data/mineralogy/advancement/recipes/peridotite_relief_horizontal.json index c141e2a2f..b5695b416 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/peridotite_relief_horizontal.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/peridotite_relief_horizontal.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:peridotite_relief_horizontal" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:peridotite_relief_horizontal" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:peridotite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:peridotite_relief_horizontal" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:peridotite_relief_horizontal" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:peridotite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/peridotite_relief_i.json b/src/main/resources/data/mineralogy/advancement/recipes/peridotite_relief_i.json index 3ae343628..daf57f1c5 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/peridotite_relief_i.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/peridotite_relief_i.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:peridotite_relief_i" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:peridotite_relief_i" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:peridotite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:peridotite_relief_i" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:peridotite_relief_i" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:peridotite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/peridotite_relief_left.json b/src/main/resources/data/mineralogy/advancement/recipes/peridotite_relief_left.json index 483b82d27..0bca9e7a7 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/peridotite_relief_left.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/peridotite_relief_left.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:peridotite_relief_left" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:peridotite_relief_left" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:peridotite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:peridotite_relief_left" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:peridotite_relief_left" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:peridotite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/peridotite_relief_pickaxe.json b/src/main/resources/data/mineralogy/advancement/recipes/peridotite_relief_pickaxe.json index 30781c0e7..3dce1d4e5 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/peridotite_relief_pickaxe.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/peridotite_relief_pickaxe.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:peridotite_relief_pickaxe" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:peridotite_relief_pickaxe" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:peridotite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:peridotite_relief_pickaxe" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:peridotite_relief_pickaxe" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:peridotite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/peridotite_relief_plus.json b/src/main/resources/data/mineralogy/advancement/recipes/peridotite_relief_plus.json index 4f1348d55..66261aa1a 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/peridotite_relief_plus.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/peridotite_relief_plus.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:peridotite_relief_plus" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:peridotite_relief_plus" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:peridotite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:peridotite_relief_plus" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:peridotite_relief_plus" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:peridotite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/peridotite_relief_right.json b/src/main/resources/data/mineralogy/advancement/recipes/peridotite_relief_right.json index 06cbdb8c7..23dbeaf4c 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/peridotite_relief_right.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/peridotite_relief_right.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:peridotite_relief_right" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:peridotite_relief_right" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:peridotite_relief_left" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:peridotite_relief_right" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:peridotite_relief_right" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:peridotite_relief_left" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/peridotite_relief_sword.json b/src/main/resources/data/mineralogy/advancement/recipes/peridotite_relief_sword.json index e148e93bd..3f6a0c6a6 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/peridotite_relief_sword.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/peridotite_relief_sword.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:peridotite_relief_sword" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:peridotite_relief_sword" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:peridotite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:peridotite_relief_sword" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:peridotite_relief_sword" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:peridotite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/peridotite_relief_vertical.json b/src/main/resources/data/mineralogy/advancement/recipes/peridotite_relief_vertical.json index d7ae8277c..ae4a712eb 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/peridotite_relief_vertical.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/peridotite_relief_vertical.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:peridotite_relief_vertical" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:peridotite_relief_vertical" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:peridotite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:peridotite_relief_vertical" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:peridotite_relief_vertical" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:peridotite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/peridotite_slab.json b/src/main/resources/data/mineralogy/advancement/recipes/peridotite_slab.json index 917e963a9..bfe8e5922 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/peridotite_slab.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/peridotite_slab.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:peridotite_slab" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:peridotite_slab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:peridotite" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:peridotite_slab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:peridotite_slab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:peridotite" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/peridotite_smooth.json b/src/main/resources/data/mineralogy/advancement/recipes/peridotite_smooth.json index 9273c23e0..03b8869a3 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/peridotite_smooth.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/peridotite_smooth.json @@ -1,48 +1,46 @@ { - "rewards": { - "recipes": [ - "mineralogy:peridotite_smooth" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:peridotite_smooth" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/peridotite" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:peridotite_smooth" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:peridotite_smooth" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/peridotite" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/peridotite_smooth_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/peridotite_smooth_brick.json index 9b356564e..736cd04a5 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/peridotite_smooth_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/peridotite_smooth_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:peridotite_smooth_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:peridotite_smooth_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/peridotite/smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:peridotite_smooth_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:peridotite_smooth_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/peridotite/smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/peridotite_smooth_brick_furnace.json b/src/main/resources/data/mineralogy/advancement/recipes/peridotite_smooth_brick_furnace.json index a919b86a2..386524518 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/peridotite_smooth_brick_furnace.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/peridotite_smooth_brick_furnace.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:peridotite_smooth_brick_furnace" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:peridotite_smooth_brick_furnace" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:slabs/peridotite/smooth_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:peridotite_smooth_brick_furnace" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:peridotite_smooth_brick_furnace" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:slabs/peridotite/smooth_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/peridotite_smooth_brick_slab.json b/src/main/resources/data/mineralogy/advancement/recipes/peridotite_smooth_brick_slab.json index 42d7d9ee1..f951d8c78 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/peridotite_smooth_brick_slab.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/peridotite_smooth_brick_slab.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:peridotite_smooth_brick_slab" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:peridotite_smooth_brick_slab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:peridotite_smooth_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:peridotite_smooth_brick_slab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:peridotite_smooth_brick_slab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:peridotite_smooth_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/peridotite_smooth_brick_stairs.json b/src/main/resources/data/mineralogy/advancement/recipes/peridotite_smooth_brick_stairs.json index 6090c70e9..7a48b87e8 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/peridotite_smooth_brick_stairs.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/peridotite_smooth_brick_stairs.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:peridotite_smooth_brick_stairs" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:peridotite_smooth_brick_stairs" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/peridotite/smooth_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:peridotite_smooth_brick_stairs" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:peridotite_smooth_brick_stairs" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/peridotite/smooth_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/peridotite_smooth_brick_wall.json b/src/main/resources/data/mineralogy/advancement/recipes/peridotite_smooth_brick_wall.json index 269ac0b59..2c0f4bfdf 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/peridotite_smooth_brick_wall.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/peridotite_smooth_brick_wall.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:peridotite_smooth_brick_wall" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:peridotite_smooth_brick_wall" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/peridotite/smooth_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:peridotite_smooth_brick_wall" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:peridotite_smooth_brick_wall" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/peridotite/smooth_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/peridotite_smooth_furnace.json b/src/main/resources/data/mineralogy/advancement/recipes/peridotite_smooth_furnace.json index 257b789be..0bdb85732 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/peridotite_smooth_furnace.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/peridotite_smooth_furnace.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:peridotite_smooth_furnace" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:peridotite_smooth_furnace" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:slabs/peridotite/smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:peridotite_smooth_furnace" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:peridotite_smooth_furnace" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:slabs/peridotite/smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/peridotite_smooth_slab.json b/src/main/resources/data/mineralogy/advancement/recipes/peridotite_smooth_slab.json index 9a70c8abb..d2fdf06e1 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/peridotite_smooth_slab.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/peridotite_smooth_slab.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:peridotite_smooth_slab" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:peridotite_smooth_slab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:peridotite_smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:peridotite_smooth_slab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:peridotite_smooth_slab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:peridotite_smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/peridotite_smooth_stairs.json b/src/main/resources/data/mineralogy/advancement/recipes/peridotite_smooth_stairs.json index 534abfc49..7c617e8fb 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/peridotite_smooth_stairs.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/peridotite_smooth_stairs.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:peridotite_smooth_stairs" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:peridotite_smooth_stairs" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/peridotite/smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:peridotite_smooth_stairs" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:peridotite_smooth_stairs" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/peridotite/smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/peridotite_smooth_wall.json b/src/main/resources/data/mineralogy/advancement/recipes/peridotite_smooth_wall.json index 1871623f6..50384f269 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/peridotite_smooth_wall.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/peridotite_smooth_wall.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:peridotite_smooth_wall" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:peridotite_smooth_wall" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/peridotite/smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:peridotite_smooth_wall" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:peridotite_smooth_wall" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/peridotite/smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/peridotite_stairs.json b/src/main/resources/data/mineralogy/advancement/recipes/peridotite_stairs.json index 20ae55a53..69a4910b3 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/peridotite_stairs.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/peridotite_stairs.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:peridotite_stairs" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:peridotite_stairs" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/peridotite" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:peridotite_stairs" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:peridotite_stairs" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/peridotite" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/peridotite_to_stone.json b/src/main/resources/data/mineralogy/advancement/recipes/peridotite_to_stone.json index ecf314e36..1328314ae 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/peridotite_to_stone.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/peridotite_to_stone.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:peridotite_to_stone" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:peridotite_to_stone" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:peridotite" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:peridotite_to_stone" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:peridotite_to_stone" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:peridotite" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/peridotite_wall.json b/src/main/resources/data/mineralogy/advancement/recipes/peridotite_wall.json index 9dee3a406..48f3dd800 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/peridotite_wall.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/peridotite_wall.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:peridotite_wall" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:peridotite_wall" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/peridotite" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:peridotite_wall" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:peridotite_wall" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/peridotite" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/phosphorous_block.json b/src/main/resources/data/mineralogy/advancement/recipes/phosphorous_block.json index 22dec96ea..114e63494 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/phosphorous_block.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/phosphorous_block.json @@ -1,38 +1,38 @@ { - "neoforge:conditions": [ - { - "type": "mineralogy:config", - "flag": "ENABLE_MINERAL_DUSTS" - } - ], - "rewards": { - "recipes": [ - "mineralogy:phosphorous_block" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:phosphorous_block" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:phosphorous_dust" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "neoforge:conditions": [ + { + "type": "mineralogy:config", + "flag": "ENABLE_MINERAL_DUSTS" + } + ], + "rewards": { + "recipes": [ + "mineralogy:phosphorous_block" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:phosphorous_block" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:phosphorous_dust" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/phosphorous_dust.json b/src/main/resources/data/mineralogy/advancement/recipes/phosphorous_dust.json index dfb8f1721..adb28e0c6 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/phosphorous_dust.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/phosphorous_dust.json @@ -1,38 +1,38 @@ { - "neoforge:conditions": [ - { - "type": "mineralogy:config", - "flag": "ENABLE_MINERAL_DUSTS" - } - ], - "rewards": { - "recipes": [ - "mineralogy:phosphorous_dust" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:phosphorous_dust" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:phosphorous_block" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "neoforge:conditions": [ + { + "type": "mineralogy:config", + "flag": "ENABLE_MINERAL_DUSTS" + } + ], + "rewards": { + "recipes": [ + "mineralogy:phosphorous_dust" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:phosphorous_dust" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:phosphorous_block" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/phyllite_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/phyllite_brick.json index 35e33fc55..83d61dfa6 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/phyllite_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/phyllite_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:phyllite_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:phyllite_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/phyllite" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:phyllite_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:phyllite_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/phyllite" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/phyllite_brick_block_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/phyllite_brick_block_polishing.json index 7c6b04463..755b8ee84 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/phyllite_brick_block_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/phyllite_brick_block_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:phyllite_brick_block_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:phyllite_brick_block_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:phyllite_brick" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:phyllite_brick_block_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:phyllite_brick_block_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:phyllite_brick" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/phyllite_brick_furnace.json b/src/main/resources/data/mineralogy/advancement/recipes/phyllite_brick_furnace.json index 3af8ff22b..7b1eb0514 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/phyllite_brick_furnace.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/phyllite_brick_furnace.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:phyllite_brick_furnace" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:phyllite_brick_furnace" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:slabs/phyllite/brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:phyllite_brick_furnace" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:phyllite_brick_furnace" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:slabs/phyllite/brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/phyllite_brick_slab.json b/src/main/resources/data/mineralogy/advancement/recipes/phyllite_brick_slab.json index 6bafbe0f6..6f4ddc605 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/phyllite_brick_slab.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/phyllite_brick_slab.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:phyllite_brick_slab" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:phyllite_brick_slab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:phyllite_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:phyllite_brick_slab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:phyllite_brick_slab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:phyllite_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/phyllite_brick_slab_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/phyllite_brick_slab_polishing.json index 269400f61..d175232d4 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/phyllite_brick_slab_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/phyllite_brick_slab_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:phyllite_brick_slab_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:phyllite_brick_slab_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:phyllite_brick_slab" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:phyllite_brick_slab_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:phyllite_brick_slab_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:phyllite_brick_slab" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/phyllite_brick_slab_recombination.json b/src/main/resources/data/mineralogy/advancement/recipes/phyllite_brick_slab_recombination.json index 29199b888..6dd4ef84d 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/phyllite_brick_slab_recombination.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/phyllite_brick_slab_recombination.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:phyllite_brick_slab_recombination" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:phyllite_brick_slab_recombination" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:phyllite_brick_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:phyllite_brick_slab_recombination" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:phyllite_brick_slab_recombination" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:phyllite_brick_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/phyllite_brick_stairs.json b/src/main/resources/data/mineralogy/advancement/recipes/phyllite_brick_stairs.json index 8a02edd9e..abc649e99 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/phyllite_brick_stairs.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/phyllite_brick_stairs.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:phyllite_brick_stairs" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:phyllite_brick_stairs" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/phyllite/brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:phyllite_brick_stairs" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:phyllite_brick_stairs" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/phyllite/brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/phyllite_brick_stairs_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/phyllite_brick_stairs_polishing.json index 10b8a82ca..d5707bdc0 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/phyllite_brick_stairs_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/phyllite_brick_stairs_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:phyllite_brick_stairs_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:phyllite_brick_stairs_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:phyllite_brick_stairs" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:phyllite_brick_stairs_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:phyllite_brick_stairs_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:phyllite_brick_stairs" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/phyllite_brick_wall.json b/src/main/resources/data/mineralogy/advancement/recipes/phyllite_brick_wall.json index 804310f76..33fefd44a 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/phyllite_brick_wall.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/phyllite_brick_wall.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:phyllite_brick_wall" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:phyllite_brick_wall" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/phyllite/brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:phyllite_brick_wall" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:phyllite_brick_wall" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/phyllite/brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/phyllite_brick_wall_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/phyllite_brick_wall_polishing.json index b987fe90e..73cc497bc 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/phyllite_brick_wall_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/phyllite_brick_wall_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:phyllite_brick_wall_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:phyllite_brick_wall_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:phyllite_brick_wall" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:phyllite_brick_wall_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:phyllite_brick_wall_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:phyllite_brick_wall" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/phyllite_cobblestone.json b/src/main/resources/data/mineralogy/advancement/recipes/phyllite_cobblestone.json index 7d93477d9..dfc086efb 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/phyllite_cobblestone.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/phyllite_cobblestone.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:phyllite_cobblestone" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:phyllite_cobblestone" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/phyllite" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:phyllite_cobblestone" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:phyllite_cobblestone" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/phyllite" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/phyllite_furnace.json b/src/main/resources/data/mineralogy/advancement/recipes/phyllite_furnace.json index 69b5eafee..6b9f3d6fa 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/phyllite_furnace.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/phyllite_furnace.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:phyllite_furnace" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:phyllite_furnace" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:slabs/phyllite" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:phyllite_furnace" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:phyllite_furnace" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:slabs/phyllite" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/phyllite_polished_brick_slab_recombination.json b/src/main/resources/data/mineralogy/advancement/recipes/phyllite_polished_brick_slab_recombination.json index c6390ac62..b1bac06f0 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/phyllite_polished_brick_slab_recombination.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/phyllite_polished_brick_slab_recombination.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:phyllite_polished_brick_slab_recombination" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:phyllite_polished_brick_slab_recombination" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:phyllite_smooth_brick_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:phyllite_polished_brick_slab_recombination" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:phyllite_polished_brick_slab_recombination" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:phyllite_smooth_brick_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/phyllite_polished_slab_recombination.json b/src/main/resources/data/mineralogy/advancement/recipes/phyllite_polished_slab_recombination.json index ee83248e7..3ad416f2a 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/phyllite_polished_slab_recombination.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/phyllite_polished_slab_recombination.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:phyllite_polished_slab_recombination" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:phyllite_polished_slab_recombination" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:phyllite_smooth_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:phyllite_polished_slab_recombination" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:phyllite_polished_slab_recombination" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:phyllite_smooth_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/phyllite_polished_slabs_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/phyllite_polished_slabs_to_brick.json index 258a9d98e..378998731 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/phyllite_polished_slabs_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/phyllite_polished_slabs_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:phyllite_polished_slabs_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:phyllite_polished_slabs_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:phyllite_smooth_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:phyllite_polished_slabs_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:phyllite_polished_slabs_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:phyllite_smooth_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/phyllite_polished_stairs_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/phyllite_polished_stairs_to_brick.json index 8e83c1b98..2cad11bc7 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/phyllite_polished_stairs_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/phyllite_polished_stairs_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:phyllite_polished_stairs_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:phyllite_polished_stairs_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:phyllite_smooth_stairs" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:phyllite_polished_stairs_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:phyllite_polished_stairs_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:phyllite_smooth_stairs" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/phyllite_polished_walls_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/phyllite_polished_walls_to_brick.json index 5d4120fb2..b6da9feaf 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/phyllite_polished_walls_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/phyllite_polished_walls_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:phyllite_polished_walls_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:phyllite_polished_walls_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:phyllite_smooth_wall" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:phyllite_polished_walls_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:phyllite_polished_walls_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:phyllite_smooth_wall" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/phyllite_raw_slab_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/phyllite_raw_slab_polishing.json index 395bc2c69..b64031bcd 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/phyllite_raw_slab_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/phyllite_raw_slab_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:phyllite_raw_slab_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:phyllite_raw_slab_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:phyllite_slab" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:phyllite_raw_slab_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:phyllite_raw_slab_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:phyllite_slab" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/phyllite_raw_slab_recombination.json b/src/main/resources/data/mineralogy/advancement/recipes/phyllite_raw_slab_recombination.json index 7a35795b4..d84c3f354 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/phyllite_raw_slab_recombination.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/phyllite_raw_slab_recombination.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:phyllite_raw_slab_recombination" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:phyllite_raw_slab_recombination" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:phyllite_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:phyllite_raw_slab_recombination" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:phyllite_raw_slab_recombination" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:phyllite_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/phyllite_raw_slabs_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/phyllite_raw_slabs_to_brick.json index 5ca8df9ed..bf26cc845 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/phyllite_raw_slabs_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/phyllite_raw_slabs_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:phyllite_raw_slabs_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:phyllite_raw_slabs_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:phyllite_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:phyllite_raw_slabs_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:phyllite_raw_slabs_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:phyllite_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/phyllite_raw_stairs_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/phyllite_raw_stairs_polishing.json index f896229c7..1f8e8228b 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/phyllite_raw_stairs_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/phyllite_raw_stairs_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:phyllite_raw_stairs_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:phyllite_raw_stairs_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:phyllite_stairs" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:phyllite_raw_stairs_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:phyllite_raw_stairs_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:phyllite_stairs" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/phyllite_raw_stairs_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/phyllite_raw_stairs_to_brick.json index 36ce41db5..a52f9db83 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/phyllite_raw_stairs_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/phyllite_raw_stairs_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:phyllite_raw_stairs_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:phyllite_raw_stairs_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:phyllite_stairs" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:phyllite_raw_stairs_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:phyllite_raw_stairs_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:phyllite_stairs" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/phyllite_raw_wall_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/phyllite_raw_wall_polishing.json index 0bb643e30..587476cac 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/phyllite_raw_wall_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/phyllite_raw_wall_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:phyllite_raw_wall_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:phyllite_raw_wall_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:phyllite_wall" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:phyllite_raw_wall_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:phyllite_raw_wall_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:phyllite_wall" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/phyllite_raw_walls_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/phyllite_raw_walls_to_brick.json index 603f11fb0..39577e065 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/phyllite_raw_walls_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/phyllite_raw_walls_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:phyllite_raw_walls_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:phyllite_raw_walls_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:phyllite_wall" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:phyllite_raw_walls_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:phyllite_raw_walls_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:phyllite_wall" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/phyllite_relief_axe.json b/src/main/resources/data/mineralogy/advancement/recipes/phyllite_relief_axe.json index 7a231f155..d1c9c3dc5 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/phyllite_relief_axe.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/phyllite_relief_axe.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:phyllite_relief_axe" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:phyllite_relief_axe" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:phyllite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:phyllite_relief_axe" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:phyllite_relief_axe" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:phyllite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/phyllite_relief_blank.json b/src/main/resources/data/mineralogy/advancement/recipes/phyllite_relief_blank.json index e0c2503e9..ef4d15fa2 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/phyllite_relief_blank.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/phyllite_relief_blank.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:phyllite_relief_blank" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:phyllite_relief_blank" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:phyllite_smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:phyllite_relief_blank" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:phyllite_relief_blank" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:phyllite_smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/phyllite_relief_cross.json b/src/main/resources/data/mineralogy/advancement/recipes/phyllite_relief_cross.json index 6688dbb29..a28b65220 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/phyllite_relief_cross.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/phyllite_relief_cross.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:phyllite_relief_cross" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:phyllite_relief_cross" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:phyllite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:phyllite_relief_cross" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:phyllite_relief_cross" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:phyllite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/phyllite_relief_hammer.json b/src/main/resources/data/mineralogy/advancement/recipes/phyllite_relief_hammer.json index 7f8a310d9..2862b564d 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/phyllite_relief_hammer.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/phyllite_relief_hammer.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:phyllite_relief_hammer" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:phyllite_relief_hammer" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:phyllite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:phyllite_relief_hammer" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:phyllite_relief_hammer" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:phyllite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/phyllite_relief_hoe.json b/src/main/resources/data/mineralogy/advancement/recipes/phyllite_relief_hoe.json index d712f8891..d3c4dcc0f 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/phyllite_relief_hoe.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/phyllite_relief_hoe.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:phyllite_relief_hoe" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:phyllite_relief_hoe" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:phyllite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:phyllite_relief_hoe" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:phyllite_relief_hoe" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:phyllite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/phyllite_relief_horizontal.json b/src/main/resources/data/mineralogy/advancement/recipes/phyllite_relief_horizontal.json index c97fba137..acb94b207 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/phyllite_relief_horizontal.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/phyllite_relief_horizontal.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:phyllite_relief_horizontal" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:phyllite_relief_horizontal" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:phyllite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:phyllite_relief_horizontal" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:phyllite_relief_horizontal" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:phyllite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/phyllite_relief_i.json b/src/main/resources/data/mineralogy/advancement/recipes/phyllite_relief_i.json index a624b4a3f..4ef89ca36 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/phyllite_relief_i.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/phyllite_relief_i.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:phyllite_relief_i" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:phyllite_relief_i" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:phyllite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:phyllite_relief_i" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:phyllite_relief_i" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:phyllite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/phyllite_relief_left.json b/src/main/resources/data/mineralogy/advancement/recipes/phyllite_relief_left.json index 6a114c693..51d34cbad 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/phyllite_relief_left.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/phyllite_relief_left.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:phyllite_relief_left" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:phyllite_relief_left" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:phyllite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:phyllite_relief_left" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:phyllite_relief_left" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:phyllite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/phyllite_relief_pickaxe.json b/src/main/resources/data/mineralogy/advancement/recipes/phyllite_relief_pickaxe.json index 29f2f5ca2..f987f0571 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/phyllite_relief_pickaxe.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/phyllite_relief_pickaxe.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:phyllite_relief_pickaxe" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:phyllite_relief_pickaxe" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:phyllite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:phyllite_relief_pickaxe" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:phyllite_relief_pickaxe" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:phyllite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/phyllite_relief_plus.json b/src/main/resources/data/mineralogy/advancement/recipes/phyllite_relief_plus.json index 71fc37098..b55420305 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/phyllite_relief_plus.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/phyllite_relief_plus.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:phyllite_relief_plus" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:phyllite_relief_plus" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:phyllite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:phyllite_relief_plus" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:phyllite_relief_plus" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:phyllite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/phyllite_relief_right.json b/src/main/resources/data/mineralogy/advancement/recipes/phyllite_relief_right.json index eecba5b1e..c5636d078 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/phyllite_relief_right.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/phyllite_relief_right.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:phyllite_relief_right" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:phyllite_relief_right" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:phyllite_relief_left" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:phyllite_relief_right" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:phyllite_relief_right" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:phyllite_relief_left" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/phyllite_relief_sword.json b/src/main/resources/data/mineralogy/advancement/recipes/phyllite_relief_sword.json index dd5f76047..c36a63d39 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/phyllite_relief_sword.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/phyllite_relief_sword.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:phyllite_relief_sword" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:phyllite_relief_sword" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:phyllite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:phyllite_relief_sword" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:phyllite_relief_sword" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:phyllite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/phyllite_relief_vertical.json b/src/main/resources/data/mineralogy/advancement/recipes/phyllite_relief_vertical.json index 4faf614bf..17412ed70 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/phyllite_relief_vertical.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/phyllite_relief_vertical.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:phyllite_relief_vertical" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:phyllite_relief_vertical" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:phyllite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:phyllite_relief_vertical" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:phyllite_relief_vertical" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:phyllite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/phyllite_slab.json b/src/main/resources/data/mineralogy/advancement/recipes/phyllite_slab.json index 624fbce04..3b4f2bb56 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/phyllite_slab.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/phyllite_slab.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:phyllite_slab" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:phyllite_slab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:phyllite" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:phyllite_slab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:phyllite_slab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:phyllite" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/phyllite_smooth.json b/src/main/resources/data/mineralogy/advancement/recipes/phyllite_smooth.json index 7dde1b117..477efc1a3 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/phyllite_smooth.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/phyllite_smooth.json @@ -1,48 +1,46 @@ { - "rewards": { - "recipes": [ - "mineralogy:phyllite_smooth" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:phyllite_smooth" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/phyllite" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:phyllite_smooth" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:phyllite_smooth" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/phyllite" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/phyllite_smooth_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/phyllite_smooth_brick.json index 4d7c017ae..35c320680 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/phyllite_smooth_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/phyllite_smooth_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:phyllite_smooth_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:phyllite_smooth_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/phyllite/smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:phyllite_smooth_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:phyllite_smooth_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/phyllite/smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/phyllite_smooth_brick_furnace.json b/src/main/resources/data/mineralogy/advancement/recipes/phyllite_smooth_brick_furnace.json index 3480bf770..87aff95e0 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/phyllite_smooth_brick_furnace.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/phyllite_smooth_brick_furnace.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:phyllite_smooth_brick_furnace" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:phyllite_smooth_brick_furnace" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:slabs/phyllite/smooth_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:phyllite_smooth_brick_furnace" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:phyllite_smooth_brick_furnace" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:slabs/phyllite/smooth_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/phyllite_smooth_brick_slab.json b/src/main/resources/data/mineralogy/advancement/recipes/phyllite_smooth_brick_slab.json index de84b6afa..d17e7f162 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/phyllite_smooth_brick_slab.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/phyllite_smooth_brick_slab.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:phyllite_smooth_brick_slab" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:phyllite_smooth_brick_slab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:phyllite_smooth_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:phyllite_smooth_brick_slab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:phyllite_smooth_brick_slab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:phyllite_smooth_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/phyllite_smooth_brick_stairs.json b/src/main/resources/data/mineralogy/advancement/recipes/phyllite_smooth_brick_stairs.json index 235f1e474..d9ddcad98 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/phyllite_smooth_brick_stairs.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/phyllite_smooth_brick_stairs.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:phyllite_smooth_brick_stairs" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:phyllite_smooth_brick_stairs" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/phyllite/smooth_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:phyllite_smooth_brick_stairs" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:phyllite_smooth_brick_stairs" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/phyllite/smooth_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/phyllite_smooth_brick_wall.json b/src/main/resources/data/mineralogy/advancement/recipes/phyllite_smooth_brick_wall.json index 65f6d6bd0..4e2b00b74 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/phyllite_smooth_brick_wall.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/phyllite_smooth_brick_wall.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:phyllite_smooth_brick_wall" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:phyllite_smooth_brick_wall" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/phyllite/smooth_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:phyllite_smooth_brick_wall" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:phyllite_smooth_brick_wall" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/phyllite/smooth_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/phyllite_smooth_furnace.json b/src/main/resources/data/mineralogy/advancement/recipes/phyllite_smooth_furnace.json index c3b498947..167bf103f 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/phyllite_smooth_furnace.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/phyllite_smooth_furnace.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:phyllite_smooth_furnace" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:phyllite_smooth_furnace" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:slabs/phyllite/smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:phyllite_smooth_furnace" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:phyllite_smooth_furnace" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:slabs/phyllite/smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/phyllite_smooth_slab.json b/src/main/resources/data/mineralogy/advancement/recipes/phyllite_smooth_slab.json index 45f51c357..ba63f30af 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/phyllite_smooth_slab.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/phyllite_smooth_slab.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:phyllite_smooth_slab" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:phyllite_smooth_slab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:phyllite_smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:phyllite_smooth_slab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:phyllite_smooth_slab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:phyllite_smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/phyllite_smooth_stairs.json b/src/main/resources/data/mineralogy/advancement/recipes/phyllite_smooth_stairs.json index aafe8d13f..ce4326bba 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/phyllite_smooth_stairs.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/phyllite_smooth_stairs.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:phyllite_smooth_stairs" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:phyllite_smooth_stairs" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/phyllite/smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:phyllite_smooth_stairs" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:phyllite_smooth_stairs" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/phyllite/smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/phyllite_smooth_wall.json b/src/main/resources/data/mineralogy/advancement/recipes/phyllite_smooth_wall.json index b9f761551..0fa2eb2ed 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/phyllite_smooth_wall.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/phyllite_smooth_wall.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:phyllite_smooth_wall" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:phyllite_smooth_wall" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/phyllite/smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:phyllite_smooth_wall" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:phyllite_smooth_wall" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/phyllite/smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/phyllite_stairs.json b/src/main/resources/data/mineralogy/advancement/recipes/phyllite_stairs.json index 872fb045e..ef82b3c89 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/phyllite_stairs.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/phyllite_stairs.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:phyllite_stairs" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:phyllite_stairs" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/phyllite" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:phyllite_stairs" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:phyllite_stairs" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/phyllite" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/phyllite_to_stone.json b/src/main/resources/data/mineralogy/advancement/recipes/phyllite_to_stone.json index 88af41c0e..63dbe7a5a 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/phyllite_to_stone.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/phyllite_to_stone.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:phyllite_to_stone" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:phyllite_to_stone" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:phyllite" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:phyllite_to_stone" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:phyllite_to_stone" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:phyllite" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/phyllite_wall.json b/src/main/resources/data/mineralogy/advancement/recipes/phyllite_wall.json index 154b917e6..2034c279c 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/phyllite_wall.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/phyllite_wall.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:phyllite_wall" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:phyllite_wall" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/phyllite" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:phyllite_wall" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:phyllite_wall" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/phyllite" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/quartzite_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/quartzite_brick.json index 1c4772f64..9e3450810 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/quartzite_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/quartzite_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:quartzite_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:quartzite_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/quartzite" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:quartzite_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:quartzite_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/quartzite" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/quartzite_brick_block_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/quartzite_brick_block_polishing.json index 5bce8c585..72ddad3ae 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/quartzite_brick_block_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/quartzite_brick_block_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:quartzite_brick_block_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:quartzite_brick_block_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:quartzite_brick" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:quartzite_brick_block_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:quartzite_brick_block_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:quartzite_brick" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/quartzite_brick_furnace.json b/src/main/resources/data/mineralogy/advancement/recipes/quartzite_brick_furnace.json index dad0095b4..47630ff15 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/quartzite_brick_furnace.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/quartzite_brick_furnace.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:quartzite_brick_furnace" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:quartzite_brick_furnace" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:slabs/quartzite/brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:quartzite_brick_furnace" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:quartzite_brick_furnace" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:slabs/quartzite/brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/quartzite_brick_slab.json b/src/main/resources/data/mineralogy/advancement/recipes/quartzite_brick_slab.json index 5589a3bdb..2246138d1 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/quartzite_brick_slab.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/quartzite_brick_slab.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:quartzite_brick_slab" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:quartzite_brick_slab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:quartzite_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:quartzite_brick_slab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:quartzite_brick_slab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:quartzite_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/quartzite_brick_slab_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/quartzite_brick_slab_polishing.json index 17c5f787d..1e7d344ac 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/quartzite_brick_slab_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/quartzite_brick_slab_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:quartzite_brick_slab_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:quartzite_brick_slab_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:quartzite_brick_slab" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:quartzite_brick_slab_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:quartzite_brick_slab_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:quartzite_brick_slab" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/quartzite_brick_slab_recombination.json b/src/main/resources/data/mineralogy/advancement/recipes/quartzite_brick_slab_recombination.json index 56d77b199..010d16fe8 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/quartzite_brick_slab_recombination.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/quartzite_brick_slab_recombination.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:quartzite_brick_slab_recombination" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:quartzite_brick_slab_recombination" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:quartzite_brick_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:quartzite_brick_slab_recombination" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:quartzite_brick_slab_recombination" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:quartzite_brick_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/quartzite_brick_stairs.json b/src/main/resources/data/mineralogy/advancement/recipes/quartzite_brick_stairs.json index 36b690a4d..2268d2978 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/quartzite_brick_stairs.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/quartzite_brick_stairs.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:quartzite_brick_stairs" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:quartzite_brick_stairs" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/quartzite/brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:quartzite_brick_stairs" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:quartzite_brick_stairs" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/quartzite/brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/quartzite_brick_stairs_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/quartzite_brick_stairs_polishing.json index e6da94fcb..ceb119873 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/quartzite_brick_stairs_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/quartzite_brick_stairs_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:quartzite_brick_stairs_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:quartzite_brick_stairs_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:quartzite_brick_stairs" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:quartzite_brick_stairs_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:quartzite_brick_stairs_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:quartzite_brick_stairs" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/quartzite_brick_wall.json b/src/main/resources/data/mineralogy/advancement/recipes/quartzite_brick_wall.json index 06a140dd0..6ba3ba356 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/quartzite_brick_wall.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/quartzite_brick_wall.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:quartzite_brick_wall" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:quartzite_brick_wall" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/quartzite/brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:quartzite_brick_wall" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:quartzite_brick_wall" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/quartzite/brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/quartzite_brick_wall_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/quartzite_brick_wall_polishing.json index 9a92510da..9c31bd6c8 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/quartzite_brick_wall_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/quartzite_brick_wall_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:quartzite_brick_wall_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:quartzite_brick_wall_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:quartzite_brick_wall" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:quartzite_brick_wall_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:quartzite_brick_wall_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:quartzite_brick_wall" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/quartzite_cobblestone.json b/src/main/resources/data/mineralogy/advancement/recipes/quartzite_cobblestone.json index 723ebb278..f09d81965 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/quartzite_cobblestone.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/quartzite_cobblestone.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:quartzite_cobblestone" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:quartzite_cobblestone" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/quartzite" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:quartzite_cobblestone" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:quartzite_cobblestone" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/quartzite" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/quartzite_furnace.json b/src/main/resources/data/mineralogy/advancement/recipes/quartzite_furnace.json index efb137a5d..e604d2ede 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/quartzite_furnace.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/quartzite_furnace.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:quartzite_furnace" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:quartzite_furnace" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:slabs/quartzite" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:quartzite_furnace" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:quartzite_furnace" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:slabs/quartzite" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/quartzite_polished_brick_slab_recombination.json b/src/main/resources/data/mineralogy/advancement/recipes/quartzite_polished_brick_slab_recombination.json index ce33f4786..9d37d7e98 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/quartzite_polished_brick_slab_recombination.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/quartzite_polished_brick_slab_recombination.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:quartzite_polished_brick_slab_recombination" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:quartzite_polished_brick_slab_recombination" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:quartzite_smooth_brick_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:quartzite_polished_brick_slab_recombination" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:quartzite_polished_brick_slab_recombination" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:quartzite_smooth_brick_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/quartzite_polished_slab_recombination.json b/src/main/resources/data/mineralogy/advancement/recipes/quartzite_polished_slab_recombination.json index d2aee509f..8ed965646 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/quartzite_polished_slab_recombination.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/quartzite_polished_slab_recombination.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:quartzite_polished_slab_recombination" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:quartzite_polished_slab_recombination" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:quartzite_smooth_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:quartzite_polished_slab_recombination" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:quartzite_polished_slab_recombination" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:quartzite_smooth_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/quartzite_polished_slabs_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/quartzite_polished_slabs_to_brick.json index bba2a539f..f48ff9c54 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/quartzite_polished_slabs_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/quartzite_polished_slabs_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:quartzite_polished_slabs_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:quartzite_polished_slabs_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:quartzite_smooth_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:quartzite_polished_slabs_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:quartzite_polished_slabs_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:quartzite_smooth_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/quartzite_polished_stairs_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/quartzite_polished_stairs_to_brick.json index 9daed1dbf..fbc5d36d5 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/quartzite_polished_stairs_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/quartzite_polished_stairs_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:quartzite_polished_stairs_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:quartzite_polished_stairs_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:quartzite_smooth_stairs" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:quartzite_polished_stairs_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:quartzite_polished_stairs_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:quartzite_smooth_stairs" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/quartzite_polished_walls_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/quartzite_polished_walls_to_brick.json index b203b1225..d3713c5a1 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/quartzite_polished_walls_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/quartzite_polished_walls_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:quartzite_polished_walls_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:quartzite_polished_walls_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:quartzite_smooth_wall" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:quartzite_polished_walls_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:quartzite_polished_walls_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:quartzite_smooth_wall" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/quartzite_raw_slab_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/quartzite_raw_slab_polishing.json index e68283f26..f06d9fb5e 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/quartzite_raw_slab_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/quartzite_raw_slab_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:quartzite_raw_slab_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:quartzite_raw_slab_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:quartzite_slab" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:quartzite_raw_slab_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:quartzite_raw_slab_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:quartzite_slab" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/quartzite_raw_slab_recombination.json b/src/main/resources/data/mineralogy/advancement/recipes/quartzite_raw_slab_recombination.json index e4553463e..43c4df48f 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/quartzite_raw_slab_recombination.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/quartzite_raw_slab_recombination.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:quartzite_raw_slab_recombination" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:quartzite_raw_slab_recombination" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:quartzite_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:quartzite_raw_slab_recombination" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:quartzite_raw_slab_recombination" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:quartzite_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/quartzite_raw_slabs_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/quartzite_raw_slabs_to_brick.json index bce025e92..5ef39726b 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/quartzite_raw_slabs_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/quartzite_raw_slabs_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:quartzite_raw_slabs_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:quartzite_raw_slabs_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:quartzite_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:quartzite_raw_slabs_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:quartzite_raw_slabs_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:quartzite_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/quartzite_raw_stairs_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/quartzite_raw_stairs_polishing.json index 4ac120ceb..02e88b2f8 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/quartzite_raw_stairs_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/quartzite_raw_stairs_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:quartzite_raw_stairs_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:quartzite_raw_stairs_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:quartzite_stairs" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:quartzite_raw_stairs_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:quartzite_raw_stairs_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:quartzite_stairs" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/quartzite_raw_stairs_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/quartzite_raw_stairs_to_brick.json index eb9fa52d6..f9e98b3e3 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/quartzite_raw_stairs_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/quartzite_raw_stairs_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:quartzite_raw_stairs_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:quartzite_raw_stairs_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:quartzite_stairs" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:quartzite_raw_stairs_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:quartzite_raw_stairs_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:quartzite_stairs" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/quartzite_raw_wall_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/quartzite_raw_wall_polishing.json index 462c39a94..0276bc01a 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/quartzite_raw_wall_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/quartzite_raw_wall_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:quartzite_raw_wall_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:quartzite_raw_wall_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:quartzite_wall" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:quartzite_raw_wall_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:quartzite_raw_wall_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:quartzite_wall" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/quartzite_raw_walls_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/quartzite_raw_walls_to_brick.json index ffa8890b0..d9817f0b6 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/quartzite_raw_walls_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/quartzite_raw_walls_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:quartzite_raw_walls_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:quartzite_raw_walls_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:quartzite_wall" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:quartzite_raw_walls_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:quartzite_raw_walls_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:quartzite_wall" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/quartzite_relief_axe.json b/src/main/resources/data/mineralogy/advancement/recipes/quartzite_relief_axe.json index 95d1b0ac8..2fb40f69a 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/quartzite_relief_axe.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/quartzite_relief_axe.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:quartzite_relief_axe" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:quartzite_relief_axe" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:quartzite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:quartzite_relief_axe" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:quartzite_relief_axe" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:quartzite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/quartzite_relief_blank.json b/src/main/resources/data/mineralogy/advancement/recipes/quartzite_relief_blank.json index 4eaafefc0..248b41e46 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/quartzite_relief_blank.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/quartzite_relief_blank.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:quartzite_relief_blank" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:quartzite_relief_blank" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:quartzite_smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:quartzite_relief_blank" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:quartzite_relief_blank" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:quartzite_smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/quartzite_relief_cross.json b/src/main/resources/data/mineralogy/advancement/recipes/quartzite_relief_cross.json index 8541165fc..77c379d7a 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/quartzite_relief_cross.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/quartzite_relief_cross.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:quartzite_relief_cross" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:quartzite_relief_cross" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:quartzite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:quartzite_relief_cross" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:quartzite_relief_cross" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:quartzite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/quartzite_relief_hammer.json b/src/main/resources/data/mineralogy/advancement/recipes/quartzite_relief_hammer.json index a31633a6e..c0eafce96 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/quartzite_relief_hammer.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/quartzite_relief_hammer.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:quartzite_relief_hammer" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:quartzite_relief_hammer" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:quartzite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:quartzite_relief_hammer" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:quartzite_relief_hammer" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:quartzite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/quartzite_relief_hoe.json b/src/main/resources/data/mineralogy/advancement/recipes/quartzite_relief_hoe.json index ef9ee313a..4bc8efb02 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/quartzite_relief_hoe.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/quartzite_relief_hoe.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:quartzite_relief_hoe" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:quartzite_relief_hoe" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:quartzite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:quartzite_relief_hoe" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:quartzite_relief_hoe" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:quartzite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/quartzite_relief_horizontal.json b/src/main/resources/data/mineralogy/advancement/recipes/quartzite_relief_horizontal.json index 28f9cb81a..7470682cf 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/quartzite_relief_horizontal.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/quartzite_relief_horizontal.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:quartzite_relief_horizontal" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:quartzite_relief_horizontal" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:quartzite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:quartzite_relief_horizontal" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:quartzite_relief_horizontal" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:quartzite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/quartzite_relief_i.json b/src/main/resources/data/mineralogy/advancement/recipes/quartzite_relief_i.json index f7be23d3d..3505d0b4b 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/quartzite_relief_i.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/quartzite_relief_i.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:quartzite_relief_i" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:quartzite_relief_i" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:quartzite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:quartzite_relief_i" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:quartzite_relief_i" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:quartzite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/quartzite_relief_left.json b/src/main/resources/data/mineralogy/advancement/recipes/quartzite_relief_left.json index 0ea32d80f..b54673cd0 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/quartzite_relief_left.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/quartzite_relief_left.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:quartzite_relief_left" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:quartzite_relief_left" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:quartzite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:quartzite_relief_left" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:quartzite_relief_left" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:quartzite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/quartzite_relief_pickaxe.json b/src/main/resources/data/mineralogy/advancement/recipes/quartzite_relief_pickaxe.json index 3c7a5ed4b..ccf66b402 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/quartzite_relief_pickaxe.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/quartzite_relief_pickaxe.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:quartzite_relief_pickaxe" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:quartzite_relief_pickaxe" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:quartzite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:quartzite_relief_pickaxe" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:quartzite_relief_pickaxe" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:quartzite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/quartzite_relief_plus.json b/src/main/resources/data/mineralogy/advancement/recipes/quartzite_relief_plus.json index 424e75406..5ffa7bd00 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/quartzite_relief_plus.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/quartzite_relief_plus.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:quartzite_relief_plus" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:quartzite_relief_plus" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:quartzite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:quartzite_relief_plus" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:quartzite_relief_plus" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:quartzite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/quartzite_relief_right.json b/src/main/resources/data/mineralogy/advancement/recipes/quartzite_relief_right.json index f708a715d..3b33a9296 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/quartzite_relief_right.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/quartzite_relief_right.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:quartzite_relief_right" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:quartzite_relief_right" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:quartzite_relief_left" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:quartzite_relief_right" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:quartzite_relief_right" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:quartzite_relief_left" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/quartzite_relief_sword.json b/src/main/resources/data/mineralogy/advancement/recipes/quartzite_relief_sword.json index a3ce5645d..d6f4ec049 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/quartzite_relief_sword.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/quartzite_relief_sword.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:quartzite_relief_sword" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:quartzite_relief_sword" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:quartzite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:quartzite_relief_sword" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:quartzite_relief_sword" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:quartzite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/quartzite_relief_vertical.json b/src/main/resources/data/mineralogy/advancement/recipes/quartzite_relief_vertical.json index e97392e06..4a125491e 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/quartzite_relief_vertical.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/quartzite_relief_vertical.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:quartzite_relief_vertical" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:quartzite_relief_vertical" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:quartzite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:quartzite_relief_vertical" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:quartzite_relief_vertical" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:quartzite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/quartzite_slab.json b/src/main/resources/data/mineralogy/advancement/recipes/quartzite_slab.json index 796426f4f..a90adef5f 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/quartzite_slab.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/quartzite_slab.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:quartzite_slab" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:quartzite_slab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:quartzite" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:quartzite_slab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:quartzite_slab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:quartzite" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/quartzite_smooth.json b/src/main/resources/data/mineralogy/advancement/recipes/quartzite_smooth.json index b9e6199fc..83d8a6c6f 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/quartzite_smooth.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/quartzite_smooth.json @@ -1,48 +1,46 @@ { - "rewards": { - "recipes": [ - "mineralogy:quartzite_smooth" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:quartzite_smooth" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/quartzite" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:quartzite_smooth" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:quartzite_smooth" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/quartzite" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/quartzite_smooth_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/quartzite_smooth_brick.json index c61f2c936..723a8351c 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/quartzite_smooth_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/quartzite_smooth_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:quartzite_smooth_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:quartzite_smooth_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/quartzite/smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:quartzite_smooth_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:quartzite_smooth_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/quartzite/smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/quartzite_smooth_brick_furnace.json b/src/main/resources/data/mineralogy/advancement/recipes/quartzite_smooth_brick_furnace.json index 65d0ac948..274866c11 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/quartzite_smooth_brick_furnace.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/quartzite_smooth_brick_furnace.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:quartzite_smooth_brick_furnace" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:quartzite_smooth_brick_furnace" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:slabs/quartzite/smooth_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:quartzite_smooth_brick_furnace" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:quartzite_smooth_brick_furnace" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:slabs/quartzite/smooth_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/quartzite_smooth_brick_slab.json b/src/main/resources/data/mineralogy/advancement/recipes/quartzite_smooth_brick_slab.json index 0369e0d73..bf77e61a5 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/quartzite_smooth_brick_slab.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/quartzite_smooth_brick_slab.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:quartzite_smooth_brick_slab" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:quartzite_smooth_brick_slab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:quartzite_smooth_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:quartzite_smooth_brick_slab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:quartzite_smooth_brick_slab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:quartzite_smooth_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/quartzite_smooth_brick_stairs.json b/src/main/resources/data/mineralogy/advancement/recipes/quartzite_smooth_brick_stairs.json index f01e2ca86..3999e81a0 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/quartzite_smooth_brick_stairs.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/quartzite_smooth_brick_stairs.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:quartzite_smooth_brick_stairs" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:quartzite_smooth_brick_stairs" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/quartzite/smooth_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:quartzite_smooth_brick_stairs" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:quartzite_smooth_brick_stairs" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/quartzite/smooth_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/quartzite_smooth_brick_wall.json b/src/main/resources/data/mineralogy/advancement/recipes/quartzite_smooth_brick_wall.json index b1c6814f0..3bda73c4c 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/quartzite_smooth_brick_wall.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/quartzite_smooth_brick_wall.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:quartzite_smooth_brick_wall" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:quartzite_smooth_brick_wall" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/quartzite/smooth_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:quartzite_smooth_brick_wall" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:quartzite_smooth_brick_wall" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/quartzite/smooth_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/quartzite_smooth_furnace.json b/src/main/resources/data/mineralogy/advancement/recipes/quartzite_smooth_furnace.json index 7378c871e..101eaefd8 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/quartzite_smooth_furnace.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/quartzite_smooth_furnace.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:quartzite_smooth_furnace" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:quartzite_smooth_furnace" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:slabs/quartzite/smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:quartzite_smooth_furnace" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:quartzite_smooth_furnace" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:slabs/quartzite/smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/quartzite_smooth_slab.json b/src/main/resources/data/mineralogy/advancement/recipes/quartzite_smooth_slab.json index f72c54c7f..980bd8e21 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/quartzite_smooth_slab.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/quartzite_smooth_slab.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:quartzite_smooth_slab" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:quartzite_smooth_slab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:quartzite_smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:quartzite_smooth_slab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:quartzite_smooth_slab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:quartzite_smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/quartzite_smooth_stairs.json b/src/main/resources/data/mineralogy/advancement/recipes/quartzite_smooth_stairs.json index 825ba284c..e0be14ff8 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/quartzite_smooth_stairs.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/quartzite_smooth_stairs.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:quartzite_smooth_stairs" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:quartzite_smooth_stairs" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/quartzite/smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:quartzite_smooth_stairs" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:quartzite_smooth_stairs" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/quartzite/smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/quartzite_smooth_wall.json b/src/main/resources/data/mineralogy/advancement/recipes/quartzite_smooth_wall.json index 737982274..5f5ba3a83 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/quartzite_smooth_wall.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/quartzite_smooth_wall.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:quartzite_smooth_wall" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:quartzite_smooth_wall" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/quartzite/smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:quartzite_smooth_wall" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:quartzite_smooth_wall" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/quartzite/smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/quartzite_stairs.json b/src/main/resources/data/mineralogy/advancement/recipes/quartzite_stairs.json index 1d124408f..e9a5f6e41 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/quartzite_stairs.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/quartzite_stairs.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:quartzite_stairs" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:quartzite_stairs" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/quartzite" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:quartzite_stairs" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:quartzite_stairs" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/quartzite" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/quartzite_to_stone.json b/src/main/resources/data/mineralogy/advancement/recipes/quartzite_to_stone.json index 42fe14bd6..0f8c62bd3 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/quartzite_to_stone.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/quartzite_to_stone.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:quartzite_to_stone" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:quartzite_to_stone" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:quartzite" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:quartzite_to_stone" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:quartzite_to_stone" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:quartzite" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/quartzite_wall.json b/src/main/resources/data/mineralogy/advancement/recipes/quartzite_wall.json index caf9fea97..fc51c6273 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/quartzite_wall.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/quartzite_wall.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:quartzite_wall" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:quartzite_wall" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/quartzite" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:quartzite_wall" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:quartzite_wall" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/quartzite" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_brick.json index 83fd79817..78366d2e9 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:rhyolite_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:rhyolite_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/rhyolite" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:rhyolite_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:rhyolite_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/rhyolite" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_brick_block_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_brick_block_polishing.json index 283a81ea2..b0ffb3af5 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_brick_block_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_brick_block_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:rhyolite_brick_block_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:rhyolite_brick_block_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:rhyolite_brick" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:rhyolite_brick_block_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:rhyolite_brick_block_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:rhyolite_brick" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_brick_furnace.json b/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_brick_furnace.json index 5eacc9b21..d7575c45b 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_brick_furnace.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_brick_furnace.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:rhyolite_brick_furnace" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:rhyolite_brick_furnace" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:slabs/rhyolite/brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:rhyolite_brick_furnace" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:rhyolite_brick_furnace" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:slabs/rhyolite/brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_brick_slab.json b/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_brick_slab.json index 04484fa33..8c3a2bb84 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_brick_slab.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_brick_slab.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:rhyolite_brick_slab" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:rhyolite_brick_slab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:rhyolite_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:rhyolite_brick_slab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:rhyolite_brick_slab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:rhyolite_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_brick_slab_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_brick_slab_polishing.json index ed864edfe..e83968c85 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_brick_slab_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_brick_slab_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:rhyolite_brick_slab_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:rhyolite_brick_slab_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:rhyolite_brick_slab" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:rhyolite_brick_slab_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:rhyolite_brick_slab_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:rhyolite_brick_slab" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_brick_slab_recombination.json b/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_brick_slab_recombination.json index 4220e9a77..7edd8d142 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_brick_slab_recombination.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_brick_slab_recombination.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:rhyolite_brick_slab_recombination" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:rhyolite_brick_slab_recombination" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:rhyolite_brick_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:rhyolite_brick_slab_recombination" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:rhyolite_brick_slab_recombination" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:rhyolite_brick_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_brick_stairs.json b/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_brick_stairs.json index 5ae551097..c7a923e6c 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_brick_stairs.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_brick_stairs.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:rhyolite_brick_stairs" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:rhyolite_brick_stairs" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/rhyolite/brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:rhyolite_brick_stairs" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:rhyolite_brick_stairs" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/rhyolite/brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_brick_stairs_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_brick_stairs_polishing.json index f0609a8c0..d89a4a0f1 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_brick_stairs_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_brick_stairs_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:rhyolite_brick_stairs_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:rhyolite_brick_stairs_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:rhyolite_brick_stairs" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:rhyolite_brick_stairs_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:rhyolite_brick_stairs_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:rhyolite_brick_stairs" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_brick_wall.json b/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_brick_wall.json index 6b43770da..e149ff90f 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_brick_wall.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_brick_wall.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:rhyolite_brick_wall" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:rhyolite_brick_wall" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/rhyolite/brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:rhyolite_brick_wall" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:rhyolite_brick_wall" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/rhyolite/brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_brick_wall_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_brick_wall_polishing.json index 0bec19e5b..78344910d 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_brick_wall_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_brick_wall_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:rhyolite_brick_wall_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:rhyolite_brick_wall_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:rhyolite_brick_wall" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:rhyolite_brick_wall_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:rhyolite_brick_wall_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:rhyolite_brick_wall" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_cobblestone.json b/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_cobblestone.json index 2a73b46c0..603080085 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_cobblestone.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_cobblestone.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:rhyolite_cobblestone" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:rhyolite_cobblestone" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/rhyolite" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:rhyolite_cobblestone" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:rhyolite_cobblestone" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/rhyolite" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_furnace.json b/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_furnace.json index e90de0c4e..be539c084 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_furnace.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_furnace.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:rhyolite_furnace" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:rhyolite_furnace" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:slabs/rhyolite" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:rhyolite_furnace" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:rhyolite_furnace" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:slabs/rhyolite" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_polished_brick_slab_recombination.json b/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_polished_brick_slab_recombination.json index a16fea882..aeb308937 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_polished_brick_slab_recombination.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_polished_brick_slab_recombination.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:rhyolite_polished_brick_slab_recombination" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:rhyolite_polished_brick_slab_recombination" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:rhyolite_smooth_brick_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:rhyolite_polished_brick_slab_recombination" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:rhyolite_polished_brick_slab_recombination" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:rhyolite_smooth_brick_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_polished_slab_recombination.json b/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_polished_slab_recombination.json index 13d3aa0de..30c4c94cc 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_polished_slab_recombination.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_polished_slab_recombination.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:rhyolite_polished_slab_recombination" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:rhyolite_polished_slab_recombination" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:rhyolite_smooth_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:rhyolite_polished_slab_recombination" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:rhyolite_polished_slab_recombination" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:rhyolite_smooth_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_polished_slabs_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_polished_slabs_to_brick.json index 2091cca78..744f0e941 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_polished_slabs_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_polished_slabs_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:rhyolite_polished_slabs_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:rhyolite_polished_slabs_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:rhyolite_smooth_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:rhyolite_polished_slabs_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:rhyolite_polished_slabs_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:rhyolite_smooth_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_polished_stairs_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_polished_stairs_to_brick.json index f54cc2ad3..de160db79 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_polished_stairs_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_polished_stairs_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:rhyolite_polished_stairs_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:rhyolite_polished_stairs_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:rhyolite_smooth_stairs" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:rhyolite_polished_stairs_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:rhyolite_polished_stairs_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:rhyolite_smooth_stairs" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_polished_walls_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_polished_walls_to_brick.json index 070bddc38..927efdbc2 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_polished_walls_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_polished_walls_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:rhyolite_polished_walls_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:rhyolite_polished_walls_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:rhyolite_smooth_wall" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:rhyolite_polished_walls_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:rhyolite_polished_walls_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:rhyolite_smooth_wall" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_raw_slab_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_raw_slab_polishing.json index 7f845f14a..c56bb861f 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_raw_slab_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_raw_slab_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:rhyolite_raw_slab_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:rhyolite_raw_slab_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:rhyolite_slab" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:rhyolite_raw_slab_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:rhyolite_raw_slab_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:rhyolite_slab" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_raw_slab_recombination.json b/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_raw_slab_recombination.json index 122f9f784..9ee188b21 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_raw_slab_recombination.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_raw_slab_recombination.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:rhyolite_raw_slab_recombination" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:rhyolite_raw_slab_recombination" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:rhyolite_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:rhyolite_raw_slab_recombination" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:rhyolite_raw_slab_recombination" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:rhyolite_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_raw_slabs_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_raw_slabs_to_brick.json index 8bde190df..33aa96a0d 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_raw_slabs_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_raw_slabs_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:rhyolite_raw_slabs_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:rhyolite_raw_slabs_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:rhyolite_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:rhyolite_raw_slabs_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:rhyolite_raw_slabs_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:rhyolite_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_raw_stairs_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_raw_stairs_polishing.json index a29aa0735..e9537e3e6 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_raw_stairs_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_raw_stairs_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:rhyolite_raw_stairs_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:rhyolite_raw_stairs_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:rhyolite_stairs" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:rhyolite_raw_stairs_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:rhyolite_raw_stairs_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:rhyolite_stairs" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_raw_stairs_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_raw_stairs_to_brick.json index d4094d32b..715f01a52 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_raw_stairs_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_raw_stairs_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:rhyolite_raw_stairs_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:rhyolite_raw_stairs_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:rhyolite_stairs" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:rhyolite_raw_stairs_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:rhyolite_raw_stairs_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:rhyolite_stairs" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_raw_wall_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_raw_wall_polishing.json index f701116ad..4d0e11b01 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_raw_wall_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_raw_wall_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:rhyolite_raw_wall_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:rhyolite_raw_wall_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:rhyolite_wall" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:rhyolite_raw_wall_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:rhyolite_raw_wall_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:rhyolite_wall" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_raw_walls_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_raw_walls_to_brick.json index d870112de..39bddaf83 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_raw_walls_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_raw_walls_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:rhyolite_raw_walls_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:rhyolite_raw_walls_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:rhyolite_wall" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:rhyolite_raw_walls_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:rhyolite_raw_walls_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:rhyolite_wall" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_relief_axe.json b/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_relief_axe.json index 366069090..f847db4ef 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_relief_axe.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_relief_axe.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:rhyolite_relief_axe" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:rhyolite_relief_axe" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:rhyolite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:rhyolite_relief_axe" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:rhyolite_relief_axe" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:rhyolite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_relief_blank.json b/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_relief_blank.json index b172eb5c4..6e59d4649 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_relief_blank.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_relief_blank.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:rhyolite_relief_blank" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:rhyolite_relief_blank" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:rhyolite_smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:rhyolite_relief_blank" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:rhyolite_relief_blank" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:rhyolite_smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_relief_cross.json b/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_relief_cross.json index 6f8e1c68e..c25e96e4d 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_relief_cross.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_relief_cross.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:rhyolite_relief_cross" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:rhyolite_relief_cross" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:rhyolite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:rhyolite_relief_cross" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:rhyolite_relief_cross" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:rhyolite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_relief_hammer.json b/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_relief_hammer.json index 7db075b41..7be30d2bd 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_relief_hammer.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_relief_hammer.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:rhyolite_relief_hammer" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:rhyolite_relief_hammer" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:rhyolite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:rhyolite_relief_hammer" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:rhyolite_relief_hammer" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:rhyolite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_relief_hoe.json b/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_relief_hoe.json index 30a831da4..c38432501 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_relief_hoe.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_relief_hoe.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:rhyolite_relief_hoe" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:rhyolite_relief_hoe" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:rhyolite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:rhyolite_relief_hoe" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:rhyolite_relief_hoe" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:rhyolite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_relief_horizontal.json b/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_relief_horizontal.json index 985a0da60..c966df2a8 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_relief_horizontal.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_relief_horizontal.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:rhyolite_relief_horizontal" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:rhyolite_relief_horizontal" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:rhyolite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:rhyolite_relief_horizontal" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:rhyolite_relief_horizontal" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:rhyolite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_relief_i.json b/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_relief_i.json index e0fd514b1..5a9c27f5d 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_relief_i.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_relief_i.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:rhyolite_relief_i" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:rhyolite_relief_i" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:rhyolite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:rhyolite_relief_i" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:rhyolite_relief_i" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:rhyolite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_relief_left.json b/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_relief_left.json index 087063839..268a95d4c 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_relief_left.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_relief_left.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:rhyolite_relief_left" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:rhyolite_relief_left" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:rhyolite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:rhyolite_relief_left" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:rhyolite_relief_left" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:rhyolite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_relief_pickaxe.json b/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_relief_pickaxe.json index 43e040038..a27a61413 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_relief_pickaxe.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_relief_pickaxe.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:rhyolite_relief_pickaxe" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:rhyolite_relief_pickaxe" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:rhyolite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:rhyolite_relief_pickaxe" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:rhyolite_relief_pickaxe" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:rhyolite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_relief_plus.json b/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_relief_plus.json index 88402fb77..39d61ccc6 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_relief_plus.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_relief_plus.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:rhyolite_relief_plus" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:rhyolite_relief_plus" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:rhyolite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:rhyolite_relief_plus" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:rhyolite_relief_plus" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:rhyolite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_relief_right.json b/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_relief_right.json index 4d9d92305..b73931853 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_relief_right.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_relief_right.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:rhyolite_relief_right" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:rhyolite_relief_right" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:rhyolite_relief_left" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:rhyolite_relief_right" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:rhyolite_relief_right" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:rhyolite_relief_left" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_relief_sword.json b/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_relief_sword.json index 0130fb593..8343809a6 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_relief_sword.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_relief_sword.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:rhyolite_relief_sword" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:rhyolite_relief_sword" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:rhyolite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:rhyolite_relief_sword" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:rhyolite_relief_sword" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:rhyolite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_relief_vertical.json b/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_relief_vertical.json index 9e8e2d86d..6bc0767d9 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_relief_vertical.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_relief_vertical.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:rhyolite_relief_vertical" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:rhyolite_relief_vertical" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:rhyolite_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:rhyolite_relief_vertical" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:rhyolite_relief_vertical" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:rhyolite_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_slab.json b/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_slab.json index 976804b49..36f7f89b4 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_slab.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_slab.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:rhyolite_slab" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:rhyolite_slab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:rhyolite" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:rhyolite_slab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:rhyolite_slab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:rhyolite" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_smooth.json b/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_smooth.json index e9f22bd22..ebb21fa08 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_smooth.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_smooth.json @@ -1,48 +1,46 @@ { - "rewards": { - "recipes": [ - "mineralogy:rhyolite_smooth" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:rhyolite_smooth" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/rhyolite" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:rhyolite_smooth" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:rhyolite_smooth" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/rhyolite" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_smooth_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_smooth_brick.json index d0f2cb7ba..8d28073bc 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_smooth_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_smooth_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:rhyolite_smooth_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:rhyolite_smooth_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/rhyolite/smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:rhyolite_smooth_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:rhyolite_smooth_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/rhyolite/smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_smooth_brick_furnace.json b/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_smooth_brick_furnace.json index a75448822..9237a31a0 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_smooth_brick_furnace.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_smooth_brick_furnace.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:rhyolite_smooth_brick_furnace" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:rhyolite_smooth_brick_furnace" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:slabs/rhyolite/smooth_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:rhyolite_smooth_brick_furnace" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:rhyolite_smooth_brick_furnace" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:slabs/rhyolite/smooth_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_smooth_brick_slab.json b/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_smooth_brick_slab.json index 1ef791eef..b0939cef0 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_smooth_brick_slab.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_smooth_brick_slab.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:rhyolite_smooth_brick_slab" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:rhyolite_smooth_brick_slab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:rhyolite_smooth_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:rhyolite_smooth_brick_slab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:rhyolite_smooth_brick_slab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:rhyolite_smooth_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_smooth_brick_stairs.json b/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_smooth_brick_stairs.json index 4d2ea387f..a69f5da42 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_smooth_brick_stairs.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_smooth_brick_stairs.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:rhyolite_smooth_brick_stairs" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:rhyolite_smooth_brick_stairs" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/rhyolite/smooth_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:rhyolite_smooth_brick_stairs" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:rhyolite_smooth_brick_stairs" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/rhyolite/smooth_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_smooth_brick_wall.json b/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_smooth_brick_wall.json index 832af4f6f..5e5d49d39 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_smooth_brick_wall.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_smooth_brick_wall.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:rhyolite_smooth_brick_wall" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:rhyolite_smooth_brick_wall" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/rhyolite/smooth_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:rhyolite_smooth_brick_wall" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:rhyolite_smooth_brick_wall" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/rhyolite/smooth_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_smooth_furnace.json b/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_smooth_furnace.json index 4ae0ffcb5..fea762fae 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_smooth_furnace.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_smooth_furnace.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:rhyolite_smooth_furnace" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:rhyolite_smooth_furnace" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:slabs/rhyolite/smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:rhyolite_smooth_furnace" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:rhyolite_smooth_furnace" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:slabs/rhyolite/smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_smooth_slab.json b/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_smooth_slab.json index dce8d41a3..1cc70ea05 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_smooth_slab.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_smooth_slab.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:rhyolite_smooth_slab" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:rhyolite_smooth_slab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:rhyolite_smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:rhyolite_smooth_slab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:rhyolite_smooth_slab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:rhyolite_smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_smooth_stairs.json b/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_smooth_stairs.json index f67fd9645..00a974f70 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_smooth_stairs.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_smooth_stairs.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:rhyolite_smooth_stairs" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:rhyolite_smooth_stairs" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/rhyolite/smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:rhyolite_smooth_stairs" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:rhyolite_smooth_stairs" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/rhyolite/smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_smooth_wall.json b/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_smooth_wall.json index b99ced29d..bd63f8c7e 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_smooth_wall.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_smooth_wall.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:rhyolite_smooth_wall" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:rhyolite_smooth_wall" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/rhyolite/smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:rhyolite_smooth_wall" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:rhyolite_smooth_wall" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/rhyolite/smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_stairs.json b/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_stairs.json index 492407bcc..015a61e83 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_stairs.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_stairs.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:rhyolite_stairs" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:rhyolite_stairs" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/rhyolite" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:rhyolite_stairs" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:rhyolite_stairs" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/rhyolite" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_to_stone.json b/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_to_stone.json index be0fa8c26..84e156ed6 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_to_stone.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_to_stone.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:rhyolite_to_stone" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:rhyolite_to_stone" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:rhyolite" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:rhyolite_to_stone" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:rhyolite_to_stone" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:rhyolite" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_wall.json b/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_wall.json index 53660d777..8d0f47195 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_wall.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/rhyolite_wall.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:rhyolite_wall" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:rhyolite_wall" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/rhyolite" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:rhyolite_wall" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:rhyolite_wall" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/rhyolite" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/rock_salt.json b/src/main/resources/data/mineralogy/advancement/recipes/rock_salt.json index 69f1130f7..f97f23bda 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/rock_salt.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/rock_salt.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:rock_salt" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:rock_salt" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:rock_salt_dust" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:rock_salt" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:rock_salt" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:rock_salt_dust" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_brick.json index 59f483472..e519eac16 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:rock_salt_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:rock_salt_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/rock_salt" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:rock_salt_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:rock_salt_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/rock_salt" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_brick_block_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_brick_block_polishing.json index f0f19f920..8f6232ed8 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_brick_block_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_brick_block_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:rock_salt_brick_block_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:rock_salt_brick_block_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:rock_salt_brick" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:rock_salt_brick_block_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:rock_salt_brick_block_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:rock_salt_brick" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_brick_furnace.json b/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_brick_furnace.json index 6fa8434c2..f3f090839 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_brick_furnace.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_brick_furnace.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:rock_salt_brick_furnace" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:rock_salt_brick_furnace" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:slabs/rock_salt/brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:rock_salt_brick_furnace" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:rock_salt_brick_furnace" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:slabs/rock_salt/brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_brick_slab.json b/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_brick_slab.json index 7b59e38c5..6a3b5f9fc 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_brick_slab.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_brick_slab.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:rock_salt_brick_slab" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:rock_salt_brick_slab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:rock_salt_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:rock_salt_brick_slab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:rock_salt_brick_slab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:rock_salt_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_brick_slab_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_brick_slab_polishing.json index f387eebe7..bdb696441 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_brick_slab_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_brick_slab_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:rock_salt_brick_slab_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:rock_salt_brick_slab_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:rock_salt_brick_slab" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:rock_salt_brick_slab_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:rock_salt_brick_slab_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:rock_salt_brick_slab" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_brick_slab_recombination.json b/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_brick_slab_recombination.json index 36d99efbf..86f3ce2b4 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_brick_slab_recombination.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_brick_slab_recombination.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:rock_salt_brick_slab_recombination" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:rock_salt_brick_slab_recombination" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:rock_salt_brick_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:rock_salt_brick_slab_recombination" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:rock_salt_brick_slab_recombination" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:rock_salt_brick_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_brick_stairs.json b/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_brick_stairs.json index d4c6e1da3..b205f7873 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_brick_stairs.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_brick_stairs.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:rock_salt_brick_stairs" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:rock_salt_brick_stairs" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/rock_salt/brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:rock_salt_brick_stairs" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:rock_salt_brick_stairs" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/rock_salt/brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_brick_stairs_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_brick_stairs_polishing.json index af4999572..c677a2c40 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_brick_stairs_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_brick_stairs_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:rock_salt_brick_stairs_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:rock_salt_brick_stairs_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:rock_salt_brick_stairs" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:rock_salt_brick_stairs_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:rock_salt_brick_stairs_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:rock_salt_brick_stairs" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_brick_wall.json b/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_brick_wall.json index 24a5be168..2f41c36e9 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_brick_wall.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_brick_wall.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:rock_salt_brick_wall" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:rock_salt_brick_wall" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/rock_salt/brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:rock_salt_brick_wall" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:rock_salt_brick_wall" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/rock_salt/brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_brick_wall_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_brick_wall_polishing.json index 9a0b85f85..9e57f12aa 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_brick_wall_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_brick_wall_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:rock_salt_brick_wall_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:rock_salt_brick_wall_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:rock_salt_brick_wall" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:rock_salt_brick_wall_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:rock_salt_brick_wall_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:rock_salt_brick_wall" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_cobblestone.json b/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_cobblestone.json index 78f7bce56..09185ebb2 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_cobblestone.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_cobblestone.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:rock_salt_cobblestone" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:rock_salt_cobblestone" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/rock_salt" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:rock_salt_cobblestone" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:rock_salt_cobblestone" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/rock_salt" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_dust.json b/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_dust.json index 76a7c6f6f..68d623d01 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_dust.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_dust.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:rock_salt_dust" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:rock_salt_dust" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:rock_salt" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:rock_salt_dust" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:rock_salt_dust" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:rock_salt" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_furnace.json b/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_furnace.json index 116889500..6bbcab74f 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_furnace.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_furnace.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:rock_salt_furnace" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:rock_salt_furnace" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:slabs/rock_salt" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:rock_salt_furnace" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:rock_salt_furnace" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:slabs/rock_salt" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_polished_brick_slab_recombination.json b/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_polished_brick_slab_recombination.json index 33b91ef2b..9b7b239c5 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_polished_brick_slab_recombination.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_polished_brick_slab_recombination.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:rock_salt_polished_brick_slab_recombination" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:rock_salt_polished_brick_slab_recombination" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:rock_salt_smooth_brick_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:rock_salt_polished_brick_slab_recombination" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:rock_salt_polished_brick_slab_recombination" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:rock_salt_smooth_brick_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_polished_slab_recombination.json b/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_polished_slab_recombination.json index bf478867f..df7176c84 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_polished_slab_recombination.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_polished_slab_recombination.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:rock_salt_polished_slab_recombination" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:rock_salt_polished_slab_recombination" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:rock_salt_smooth_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:rock_salt_polished_slab_recombination" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:rock_salt_polished_slab_recombination" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:rock_salt_smooth_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_polished_slabs_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_polished_slabs_to_brick.json index 6f36cb807..9adca6dc1 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_polished_slabs_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_polished_slabs_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:rock_salt_polished_slabs_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:rock_salt_polished_slabs_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:rock_salt_smooth_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:rock_salt_polished_slabs_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:rock_salt_polished_slabs_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:rock_salt_smooth_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_polished_stairs_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_polished_stairs_to_brick.json index 690f2583f..8c57a4f17 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_polished_stairs_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_polished_stairs_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:rock_salt_polished_stairs_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:rock_salt_polished_stairs_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:rock_salt_smooth_stairs" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:rock_salt_polished_stairs_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:rock_salt_polished_stairs_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:rock_salt_smooth_stairs" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_polished_walls_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_polished_walls_to_brick.json index 82717c129..eff7d2ddb 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_polished_walls_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_polished_walls_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:rock_salt_polished_walls_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:rock_salt_polished_walls_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:rock_salt_smooth_wall" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:rock_salt_polished_walls_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:rock_salt_polished_walls_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:rock_salt_smooth_wall" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_raw_slab_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_raw_slab_polishing.json index c812a96ae..40e8fe059 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_raw_slab_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_raw_slab_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:rock_salt_raw_slab_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:rock_salt_raw_slab_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:rock_salt_slab" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:rock_salt_raw_slab_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:rock_salt_raw_slab_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:rock_salt_slab" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_raw_slab_recombination.json b/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_raw_slab_recombination.json index f8a6362ea..1117e994a 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_raw_slab_recombination.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_raw_slab_recombination.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:rock_salt_raw_slab_recombination" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:rock_salt_raw_slab_recombination" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:rock_salt_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:rock_salt_raw_slab_recombination" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:rock_salt_raw_slab_recombination" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:rock_salt_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_raw_slabs_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_raw_slabs_to_brick.json index 0d3502f38..d4d8d86a3 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_raw_slabs_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_raw_slabs_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:rock_salt_raw_slabs_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:rock_salt_raw_slabs_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:rock_salt_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:rock_salt_raw_slabs_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:rock_salt_raw_slabs_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:rock_salt_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_raw_stairs_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_raw_stairs_polishing.json index 03bc3b621..32b99dba0 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_raw_stairs_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_raw_stairs_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:rock_salt_raw_stairs_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:rock_salt_raw_stairs_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:rock_salt_stairs" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:rock_salt_raw_stairs_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:rock_salt_raw_stairs_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:rock_salt_stairs" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_raw_stairs_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_raw_stairs_to_brick.json index 5f8e736c8..a7a928eed 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_raw_stairs_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_raw_stairs_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:rock_salt_raw_stairs_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:rock_salt_raw_stairs_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:rock_salt_stairs" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:rock_salt_raw_stairs_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:rock_salt_raw_stairs_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:rock_salt_stairs" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_raw_wall_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_raw_wall_polishing.json index 03c1e575c..3d1576977 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_raw_wall_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_raw_wall_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:rock_salt_raw_wall_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:rock_salt_raw_wall_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:rock_salt_wall" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:rock_salt_raw_wall_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:rock_salt_raw_wall_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:rock_salt_wall" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_raw_walls_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_raw_walls_to_brick.json index 0674cd3e6..91d3d26f5 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_raw_walls_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_raw_walls_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:rock_salt_raw_walls_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:rock_salt_raw_walls_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:rock_salt_wall" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:rock_salt_raw_walls_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:rock_salt_raw_walls_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:rock_salt_wall" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_relief_axe.json b/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_relief_axe.json index c34387fb5..4922a71be 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_relief_axe.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_relief_axe.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:rock_salt_relief_axe" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:rock_salt_relief_axe" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:rock_salt_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:rock_salt_relief_axe" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:rock_salt_relief_axe" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:rock_salt_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_relief_blank.json b/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_relief_blank.json index 131234ca0..9cca56fbe 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_relief_blank.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_relief_blank.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:rock_salt_relief_blank" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:rock_salt_relief_blank" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:rock_salt_smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:rock_salt_relief_blank" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:rock_salt_relief_blank" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:rock_salt_smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_relief_cross.json b/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_relief_cross.json index 5ba0fa29e..93872c295 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_relief_cross.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_relief_cross.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:rock_salt_relief_cross" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:rock_salt_relief_cross" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:rock_salt_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:rock_salt_relief_cross" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:rock_salt_relief_cross" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:rock_salt_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_relief_hammer.json b/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_relief_hammer.json index 2fe9a2b56..b91d2aea8 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_relief_hammer.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_relief_hammer.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:rock_salt_relief_hammer" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:rock_salt_relief_hammer" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:rock_salt_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:rock_salt_relief_hammer" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:rock_salt_relief_hammer" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:rock_salt_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_relief_hoe.json b/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_relief_hoe.json index 694d76ab9..9fd07a1e7 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_relief_hoe.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_relief_hoe.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:rock_salt_relief_hoe" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:rock_salt_relief_hoe" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:rock_salt_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:rock_salt_relief_hoe" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:rock_salt_relief_hoe" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:rock_salt_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_relief_horizontal.json b/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_relief_horizontal.json index 502c6152c..1209fd367 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_relief_horizontal.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_relief_horizontal.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:rock_salt_relief_horizontal" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:rock_salt_relief_horizontal" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:rock_salt_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:rock_salt_relief_horizontal" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:rock_salt_relief_horizontal" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:rock_salt_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_relief_i.json b/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_relief_i.json index 9a2c0ebf7..3a3697b39 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_relief_i.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_relief_i.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:rock_salt_relief_i" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:rock_salt_relief_i" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:rock_salt_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:rock_salt_relief_i" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:rock_salt_relief_i" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:rock_salt_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_relief_left.json b/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_relief_left.json index cf89a0727..1747f90c4 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_relief_left.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_relief_left.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:rock_salt_relief_left" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:rock_salt_relief_left" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:rock_salt_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:rock_salt_relief_left" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:rock_salt_relief_left" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:rock_salt_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_relief_pickaxe.json b/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_relief_pickaxe.json index 8978a1c7f..eeeabfec7 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_relief_pickaxe.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_relief_pickaxe.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:rock_salt_relief_pickaxe" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:rock_salt_relief_pickaxe" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:rock_salt_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:rock_salt_relief_pickaxe" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:rock_salt_relief_pickaxe" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:rock_salt_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_relief_plus.json b/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_relief_plus.json index c93d26b09..60ced5c98 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_relief_plus.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_relief_plus.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:rock_salt_relief_plus" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:rock_salt_relief_plus" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:rock_salt_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:rock_salt_relief_plus" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:rock_salt_relief_plus" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:rock_salt_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_relief_right.json b/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_relief_right.json index 64bd95953..1d6aa88ab 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_relief_right.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_relief_right.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:rock_salt_relief_right" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:rock_salt_relief_right" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:rock_salt_relief_left" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:rock_salt_relief_right" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:rock_salt_relief_right" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:rock_salt_relief_left" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_relief_sword.json b/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_relief_sword.json index 673c9a99f..d0b0135fa 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_relief_sword.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_relief_sword.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:rock_salt_relief_sword" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:rock_salt_relief_sword" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:rock_salt_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:rock_salt_relief_sword" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:rock_salt_relief_sword" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:rock_salt_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_relief_vertical.json b/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_relief_vertical.json index be904c48e..6798a1044 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_relief_vertical.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_relief_vertical.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:rock_salt_relief_vertical" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:rock_salt_relief_vertical" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:rock_salt_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:rock_salt_relief_vertical" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:rock_salt_relief_vertical" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:rock_salt_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_slab.json b/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_slab.json index 81b0ef701..4e915e73a 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_slab.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_slab.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:rock_salt_slab" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:rock_salt_slab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:rock_salt" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:rock_salt_slab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:rock_salt_slab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:rock_salt" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_smooth.json b/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_smooth.json index c349f9b5d..4ca23d5ba 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_smooth.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_smooth.json @@ -1,48 +1,46 @@ { - "rewards": { - "recipes": [ - "mineralogy:rock_salt_smooth" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:rock_salt_smooth" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/rock_salt" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:rock_salt_smooth" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:rock_salt_smooth" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/rock_salt" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_smooth_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_smooth_brick.json index 1f0b602e6..d4382964f 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_smooth_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_smooth_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:rock_salt_smooth_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:rock_salt_smooth_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/rock_salt/smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:rock_salt_smooth_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:rock_salt_smooth_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/rock_salt/smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_smooth_brick_furnace.json b/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_smooth_brick_furnace.json index 896539cf9..751d4c125 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_smooth_brick_furnace.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_smooth_brick_furnace.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:rock_salt_smooth_brick_furnace" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:rock_salt_smooth_brick_furnace" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:slabs/rock_salt/smooth_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:rock_salt_smooth_brick_furnace" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:rock_salt_smooth_brick_furnace" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:slabs/rock_salt/smooth_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_smooth_brick_slab.json b/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_smooth_brick_slab.json index 77277e6a2..63b38190b 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_smooth_brick_slab.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_smooth_brick_slab.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:rock_salt_smooth_brick_slab" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:rock_salt_smooth_brick_slab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:rock_salt_smooth_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:rock_salt_smooth_brick_slab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:rock_salt_smooth_brick_slab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:rock_salt_smooth_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_smooth_brick_stairs.json b/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_smooth_brick_stairs.json index dffd73540..ed09bd021 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_smooth_brick_stairs.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_smooth_brick_stairs.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:rock_salt_smooth_brick_stairs" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:rock_salt_smooth_brick_stairs" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/rock_salt/smooth_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:rock_salt_smooth_brick_stairs" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:rock_salt_smooth_brick_stairs" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/rock_salt/smooth_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_smooth_brick_wall.json b/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_smooth_brick_wall.json index 447b034a2..c15971d17 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_smooth_brick_wall.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_smooth_brick_wall.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:rock_salt_smooth_brick_wall" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:rock_salt_smooth_brick_wall" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/rock_salt/smooth_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:rock_salt_smooth_brick_wall" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:rock_salt_smooth_brick_wall" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/rock_salt/smooth_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_smooth_furnace.json b/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_smooth_furnace.json index 21b25b679..d2cd2209b 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_smooth_furnace.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_smooth_furnace.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:rock_salt_smooth_furnace" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:rock_salt_smooth_furnace" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:slabs/rock_salt/smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:rock_salt_smooth_furnace" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:rock_salt_smooth_furnace" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:slabs/rock_salt/smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_smooth_slab.json b/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_smooth_slab.json index 7784298ea..0f536b75c 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_smooth_slab.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_smooth_slab.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:rock_salt_smooth_slab" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:rock_salt_smooth_slab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:rock_salt_smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:rock_salt_smooth_slab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:rock_salt_smooth_slab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:rock_salt_smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_smooth_stairs.json b/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_smooth_stairs.json index fa1cc3d99..f46d36ec3 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_smooth_stairs.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_smooth_stairs.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:rock_salt_smooth_stairs" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:rock_salt_smooth_stairs" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/rock_salt/smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:rock_salt_smooth_stairs" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:rock_salt_smooth_stairs" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/rock_salt/smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_smooth_wall.json b/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_smooth_wall.json index cae7ca355..edddbb972 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_smooth_wall.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_smooth_wall.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:rock_salt_smooth_wall" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:rock_salt_smooth_wall" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/rock_salt/smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:rock_salt_smooth_wall" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:rock_salt_smooth_wall" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/rock_salt/smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_stairs.json b/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_stairs.json index 80c0ae9b2..c02ec05bd 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_stairs.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_stairs.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:rock_salt_stairs" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:rock_salt_stairs" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/rock_salt" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:rock_salt_stairs" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:rock_salt_stairs" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/rock_salt" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_to_stone.json b/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_to_stone.json index 8bfac0b7f..278f129b0 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_to_stone.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_to_stone.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:rock_salt_to_stone" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:rock_salt_to_stone" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:rock_salt" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:rock_salt_to_stone" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:rock_salt_to_stone" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:rock_salt" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_wall.json b/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_wall.json index 2c45c837a..6342b14d4 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_wall.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/rock_salt_wall.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:rock_salt_wall" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:rock_salt_wall" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/rock_salt" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:rock_salt_wall" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:rock_salt_wall" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/rock_salt" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/rocksaltlamp.json b/src/main/resources/data/mineralogy/advancement/recipes/rocksaltlamp.json index 6a2112842..b8cf66cf6 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/rocksaltlamp.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/rocksaltlamp.json @@ -1,38 +1,38 @@ { - "neoforge:conditions": [ - { - "type": "mineralogy:config", - "flag": "ENABLE_ROCK_SALT_LAMPS" - } - ], - "rewards": { - "recipes": [ - "mineralogy:rocksaltlamp" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:rocksaltlamp" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:rock_salt" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "neoforge:conditions": [ + { + "type": "mineralogy:config", + "flag": "ENABLE_ROCK_SALT_LAMPS" + } + ], + "rewards": { + "recipes": [ + "mineralogy:rocksaltlamp" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:rocksaltlamp" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:rock_salt" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/rocksaltstreetlamp.json b/src/main/resources/data/mineralogy/advancement/recipes/rocksaltstreetlamp.json index caa67dd0f..fc36ffef8 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/rocksaltstreetlamp.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/rocksaltstreetlamp.json @@ -1,38 +1,38 @@ { - "neoforge:conditions": [ - { - "type": "mineralogy:config", - "flag": "ENABLE_ROCK_SALT_LAMPS" - } - ], - "rewards": { - "recipes": [ - "mineralogy:rocksaltstreetlamp" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:rocksaltstreetlamp" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:rocksaltlamp" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "neoforge:conditions": [ + { + "type": "mineralogy:config", + "flag": "ENABLE_ROCK_SALT_LAMPS" + } + ], + "rewards": { + "recipes": [ + "mineralogy:rocksaltstreetlamp" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:rocksaltstreetlamp" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:rocksaltlamp" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/schist_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/schist_brick.json index 6ca994621..9cbaaf97e 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/schist_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/schist_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:schist_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:schist_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/schist" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:schist_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:schist_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/schist" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/schist_brick_block_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/schist_brick_block_polishing.json index 6e733aadb..be9486a1e 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/schist_brick_block_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/schist_brick_block_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:schist_brick_block_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:schist_brick_block_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:schist_brick" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:schist_brick_block_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:schist_brick_block_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:schist_brick" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/schist_brick_furnace.json b/src/main/resources/data/mineralogy/advancement/recipes/schist_brick_furnace.json index 27e268976..d1c603f75 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/schist_brick_furnace.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/schist_brick_furnace.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:schist_brick_furnace" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:schist_brick_furnace" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:slabs/schist/brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:schist_brick_furnace" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:schist_brick_furnace" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:slabs/schist/brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/schist_brick_slab.json b/src/main/resources/data/mineralogy/advancement/recipes/schist_brick_slab.json index 7f8d887b7..fc844d012 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/schist_brick_slab.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/schist_brick_slab.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:schist_brick_slab" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:schist_brick_slab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:schist_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:schist_brick_slab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:schist_brick_slab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:schist_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/schist_brick_slab_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/schist_brick_slab_polishing.json index 03db354c6..8af242af9 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/schist_brick_slab_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/schist_brick_slab_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:schist_brick_slab_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:schist_brick_slab_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:schist_brick_slab" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:schist_brick_slab_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:schist_brick_slab_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:schist_brick_slab" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/schist_brick_slab_recombination.json b/src/main/resources/data/mineralogy/advancement/recipes/schist_brick_slab_recombination.json index 8481bb8b6..c9cb5cc46 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/schist_brick_slab_recombination.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/schist_brick_slab_recombination.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:schist_brick_slab_recombination" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:schist_brick_slab_recombination" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:schist_brick_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:schist_brick_slab_recombination" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:schist_brick_slab_recombination" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:schist_brick_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/schist_brick_stairs.json b/src/main/resources/data/mineralogy/advancement/recipes/schist_brick_stairs.json index 681038410..b0931759f 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/schist_brick_stairs.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/schist_brick_stairs.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:schist_brick_stairs" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:schist_brick_stairs" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/schist/brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:schist_brick_stairs" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:schist_brick_stairs" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/schist/brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/schist_brick_stairs_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/schist_brick_stairs_polishing.json index 5e1c2689b..85e10bfa1 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/schist_brick_stairs_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/schist_brick_stairs_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:schist_brick_stairs_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:schist_brick_stairs_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:schist_brick_stairs" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:schist_brick_stairs_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:schist_brick_stairs_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:schist_brick_stairs" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/schist_brick_wall.json b/src/main/resources/data/mineralogy/advancement/recipes/schist_brick_wall.json index 31fb288da..a3d5917bc 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/schist_brick_wall.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/schist_brick_wall.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:schist_brick_wall" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:schist_brick_wall" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/schist/brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:schist_brick_wall" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:schist_brick_wall" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/schist/brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/schist_brick_wall_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/schist_brick_wall_polishing.json index a44e3f7eb..dec5c7365 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/schist_brick_wall_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/schist_brick_wall_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:schist_brick_wall_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:schist_brick_wall_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:schist_brick_wall" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:schist_brick_wall_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:schist_brick_wall_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:schist_brick_wall" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/schist_cobblestone.json b/src/main/resources/data/mineralogy/advancement/recipes/schist_cobblestone.json index aac8f3197..27112fe1b 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/schist_cobblestone.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/schist_cobblestone.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:schist_cobblestone" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:schist_cobblestone" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/schist" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:schist_cobblestone" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:schist_cobblestone" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/schist" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/schist_furnace.json b/src/main/resources/data/mineralogy/advancement/recipes/schist_furnace.json index 680feb047..fc284e61c 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/schist_furnace.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/schist_furnace.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:schist_furnace" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:schist_furnace" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:slabs/schist" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:schist_furnace" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:schist_furnace" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:slabs/schist" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/schist_polished_brick_slab_recombination.json b/src/main/resources/data/mineralogy/advancement/recipes/schist_polished_brick_slab_recombination.json index f7a860002..38f046e15 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/schist_polished_brick_slab_recombination.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/schist_polished_brick_slab_recombination.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:schist_polished_brick_slab_recombination" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:schist_polished_brick_slab_recombination" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:schist_smooth_brick_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:schist_polished_brick_slab_recombination" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:schist_polished_brick_slab_recombination" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:schist_smooth_brick_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/schist_polished_slab_recombination.json b/src/main/resources/data/mineralogy/advancement/recipes/schist_polished_slab_recombination.json index c2e472079..a255816ca 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/schist_polished_slab_recombination.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/schist_polished_slab_recombination.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:schist_polished_slab_recombination" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:schist_polished_slab_recombination" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:schist_smooth_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:schist_polished_slab_recombination" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:schist_polished_slab_recombination" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:schist_smooth_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/schist_polished_slabs_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/schist_polished_slabs_to_brick.json index 6f1b62251..5a8f0e191 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/schist_polished_slabs_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/schist_polished_slabs_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:schist_polished_slabs_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:schist_polished_slabs_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:schist_smooth_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:schist_polished_slabs_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:schist_polished_slabs_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:schist_smooth_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/schist_polished_stairs_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/schist_polished_stairs_to_brick.json index e06c23757..4809b0c00 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/schist_polished_stairs_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/schist_polished_stairs_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:schist_polished_stairs_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:schist_polished_stairs_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:schist_smooth_stairs" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:schist_polished_stairs_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:schist_polished_stairs_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:schist_smooth_stairs" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/schist_polished_walls_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/schist_polished_walls_to_brick.json index 4423146f1..9ca8caab7 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/schist_polished_walls_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/schist_polished_walls_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:schist_polished_walls_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:schist_polished_walls_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:schist_smooth_wall" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:schist_polished_walls_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:schist_polished_walls_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:schist_smooth_wall" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/schist_raw_slab_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/schist_raw_slab_polishing.json index 27854ac6a..137295e16 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/schist_raw_slab_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/schist_raw_slab_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:schist_raw_slab_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:schist_raw_slab_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:schist_slab" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:schist_raw_slab_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:schist_raw_slab_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:schist_slab" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/schist_raw_slab_recombination.json b/src/main/resources/data/mineralogy/advancement/recipes/schist_raw_slab_recombination.json index 68bc9d14e..b16b3f959 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/schist_raw_slab_recombination.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/schist_raw_slab_recombination.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:schist_raw_slab_recombination" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:schist_raw_slab_recombination" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:schist_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:schist_raw_slab_recombination" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:schist_raw_slab_recombination" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:schist_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/schist_raw_slabs_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/schist_raw_slabs_to_brick.json index 01891c9f1..66fa36ba4 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/schist_raw_slabs_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/schist_raw_slabs_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:schist_raw_slabs_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:schist_raw_slabs_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:schist_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:schist_raw_slabs_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:schist_raw_slabs_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:schist_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/schist_raw_stairs_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/schist_raw_stairs_polishing.json index 9f28fbc83..b6ac2a6e5 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/schist_raw_stairs_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/schist_raw_stairs_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:schist_raw_stairs_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:schist_raw_stairs_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:schist_stairs" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:schist_raw_stairs_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:schist_raw_stairs_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:schist_stairs" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/schist_raw_stairs_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/schist_raw_stairs_to_brick.json index 917c03d8a..9ce3bb8bf 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/schist_raw_stairs_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/schist_raw_stairs_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:schist_raw_stairs_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:schist_raw_stairs_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:schist_stairs" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:schist_raw_stairs_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:schist_raw_stairs_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:schist_stairs" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/schist_raw_wall_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/schist_raw_wall_polishing.json index 6bb80e994..417b34746 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/schist_raw_wall_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/schist_raw_wall_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:schist_raw_wall_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:schist_raw_wall_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:schist_wall" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:schist_raw_wall_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:schist_raw_wall_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:schist_wall" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/schist_raw_walls_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/schist_raw_walls_to_brick.json index 71234bd96..232363403 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/schist_raw_walls_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/schist_raw_walls_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:schist_raw_walls_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:schist_raw_walls_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:schist_wall" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:schist_raw_walls_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:schist_raw_walls_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:schist_wall" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/schist_relief_axe.json b/src/main/resources/data/mineralogy/advancement/recipes/schist_relief_axe.json index ac15ca201..1dc708f45 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/schist_relief_axe.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/schist_relief_axe.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:schist_relief_axe" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:schist_relief_axe" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:schist_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:schist_relief_axe" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:schist_relief_axe" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:schist_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/schist_relief_blank.json b/src/main/resources/data/mineralogy/advancement/recipes/schist_relief_blank.json index 4a5ebc88a..16055add3 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/schist_relief_blank.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/schist_relief_blank.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:schist_relief_blank" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:schist_relief_blank" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:schist_smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:schist_relief_blank" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:schist_relief_blank" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:schist_smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/schist_relief_cross.json b/src/main/resources/data/mineralogy/advancement/recipes/schist_relief_cross.json index fc906d87b..466157ba2 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/schist_relief_cross.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/schist_relief_cross.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:schist_relief_cross" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:schist_relief_cross" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:schist_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:schist_relief_cross" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:schist_relief_cross" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:schist_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/schist_relief_hammer.json b/src/main/resources/data/mineralogy/advancement/recipes/schist_relief_hammer.json index cbf997d4e..bae276600 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/schist_relief_hammer.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/schist_relief_hammer.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:schist_relief_hammer" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:schist_relief_hammer" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:schist_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:schist_relief_hammer" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:schist_relief_hammer" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:schist_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/schist_relief_hoe.json b/src/main/resources/data/mineralogy/advancement/recipes/schist_relief_hoe.json index 1d6293c02..fab27fb69 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/schist_relief_hoe.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/schist_relief_hoe.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:schist_relief_hoe" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:schist_relief_hoe" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:schist_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:schist_relief_hoe" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:schist_relief_hoe" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:schist_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/schist_relief_horizontal.json b/src/main/resources/data/mineralogy/advancement/recipes/schist_relief_horizontal.json index 7c43e4b63..4db0ab4b0 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/schist_relief_horizontal.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/schist_relief_horizontal.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:schist_relief_horizontal" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:schist_relief_horizontal" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:schist_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:schist_relief_horizontal" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:schist_relief_horizontal" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:schist_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/schist_relief_i.json b/src/main/resources/data/mineralogy/advancement/recipes/schist_relief_i.json index 758e584ea..8e517a53c 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/schist_relief_i.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/schist_relief_i.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:schist_relief_i" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:schist_relief_i" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:schist_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:schist_relief_i" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:schist_relief_i" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:schist_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/schist_relief_left.json b/src/main/resources/data/mineralogy/advancement/recipes/schist_relief_left.json index b33748041..3134aab57 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/schist_relief_left.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/schist_relief_left.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:schist_relief_left" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:schist_relief_left" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:schist_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:schist_relief_left" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:schist_relief_left" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:schist_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/schist_relief_pickaxe.json b/src/main/resources/data/mineralogy/advancement/recipes/schist_relief_pickaxe.json index 9a95b9b84..8b14c23b3 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/schist_relief_pickaxe.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/schist_relief_pickaxe.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:schist_relief_pickaxe" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:schist_relief_pickaxe" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:schist_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:schist_relief_pickaxe" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:schist_relief_pickaxe" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:schist_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/schist_relief_plus.json b/src/main/resources/data/mineralogy/advancement/recipes/schist_relief_plus.json index a73c7f7d8..291f60584 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/schist_relief_plus.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/schist_relief_plus.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:schist_relief_plus" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:schist_relief_plus" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:schist_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:schist_relief_plus" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:schist_relief_plus" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:schist_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/schist_relief_right.json b/src/main/resources/data/mineralogy/advancement/recipes/schist_relief_right.json index 644ea5a11..be92d2811 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/schist_relief_right.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/schist_relief_right.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:schist_relief_right" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:schist_relief_right" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:schist_relief_left" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:schist_relief_right" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:schist_relief_right" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:schist_relief_left" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/schist_relief_sword.json b/src/main/resources/data/mineralogy/advancement/recipes/schist_relief_sword.json index 748ecca1c..02da44706 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/schist_relief_sword.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/schist_relief_sword.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:schist_relief_sword" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:schist_relief_sword" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:schist_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:schist_relief_sword" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:schist_relief_sword" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:schist_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/schist_relief_vertical.json b/src/main/resources/data/mineralogy/advancement/recipes/schist_relief_vertical.json index 333a40775..e84febaae 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/schist_relief_vertical.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/schist_relief_vertical.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:schist_relief_vertical" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:schist_relief_vertical" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:schist_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:schist_relief_vertical" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:schist_relief_vertical" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:schist_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/schist_slab.json b/src/main/resources/data/mineralogy/advancement/recipes/schist_slab.json index a92c5115a..b02024d6d 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/schist_slab.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/schist_slab.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:schist_slab" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:schist_slab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:schist" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:schist_slab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:schist_slab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:schist" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/schist_smooth.json b/src/main/resources/data/mineralogy/advancement/recipes/schist_smooth.json index aa04d7986..ca98aba6e 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/schist_smooth.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/schist_smooth.json @@ -1,48 +1,46 @@ { - "rewards": { - "recipes": [ - "mineralogy:schist_smooth" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:schist_smooth" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/schist" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:schist_smooth" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:schist_smooth" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/schist" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/schist_smooth_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/schist_smooth_brick.json index 75793b628..d0c4d6fb9 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/schist_smooth_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/schist_smooth_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:schist_smooth_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:schist_smooth_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/schist/smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:schist_smooth_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:schist_smooth_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/schist/smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/schist_smooth_brick_furnace.json b/src/main/resources/data/mineralogy/advancement/recipes/schist_smooth_brick_furnace.json index e0eb0bb49..d91142bdf 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/schist_smooth_brick_furnace.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/schist_smooth_brick_furnace.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:schist_smooth_brick_furnace" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:schist_smooth_brick_furnace" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:slabs/schist/smooth_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:schist_smooth_brick_furnace" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:schist_smooth_brick_furnace" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:slabs/schist/smooth_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/schist_smooth_brick_slab.json b/src/main/resources/data/mineralogy/advancement/recipes/schist_smooth_brick_slab.json index 275fa9f2f..f2290862f 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/schist_smooth_brick_slab.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/schist_smooth_brick_slab.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:schist_smooth_brick_slab" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:schist_smooth_brick_slab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:schist_smooth_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:schist_smooth_brick_slab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:schist_smooth_brick_slab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:schist_smooth_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/schist_smooth_brick_stairs.json b/src/main/resources/data/mineralogy/advancement/recipes/schist_smooth_brick_stairs.json index cfbe19687..03d20af53 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/schist_smooth_brick_stairs.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/schist_smooth_brick_stairs.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:schist_smooth_brick_stairs" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:schist_smooth_brick_stairs" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/schist/smooth_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:schist_smooth_brick_stairs" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:schist_smooth_brick_stairs" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/schist/smooth_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/schist_smooth_brick_wall.json b/src/main/resources/data/mineralogy/advancement/recipes/schist_smooth_brick_wall.json index 8a5209316..42fa7ecfa 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/schist_smooth_brick_wall.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/schist_smooth_brick_wall.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:schist_smooth_brick_wall" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:schist_smooth_brick_wall" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/schist/smooth_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:schist_smooth_brick_wall" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:schist_smooth_brick_wall" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/schist/smooth_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/schist_smooth_furnace.json b/src/main/resources/data/mineralogy/advancement/recipes/schist_smooth_furnace.json index 7e9708766..4fb93767d 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/schist_smooth_furnace.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/schist_smooth_furnace.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:schist_smooth_furnace" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:schist_smooth_furnace" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:slabs/schist/smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:schist_smooth_furnace" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:schist_smooth_furnace" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:slabs/schist/smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/schist_smooth_slab.json b/src/main/resources/data/mineralogy/advancement/recipes/schist_smooth_slab.json index 759f6266b..47db55386 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/schist_smooth_slab.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/schist_smooth_slab.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:schist_smooth_slab" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:schist_smooth_slab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:schist_smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:schist_smooth_slab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:schist_smooth_slab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:schist_smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/schist_smooth_stairs.json b/src/main/resources/data/mineralogy/advancement/recipes/schist_smooth_stairs.json index a05cb6402..83a0ff6f8 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/schist_smooth_stairs.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/schist_smooth_stairs.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:schist_smooth_stairs" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:schist_smooth_stairs" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/schist/smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:schist_smooth_stairs" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:schist_smooth_stairs" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/schist/smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/schist_smooth_wall.json b/src/main/resources/data/mineralogy/advancement/recipes/schist_smooth_wall.json index 966393101..e9dac4763 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/schist_smooth_wall.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/schist_smooth_wall.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:schist_smooth_wall" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:schist_smooth_wall" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/schist/smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:schist_smooth_wall" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:schist_smooth_wall" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/schist/smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/schist_stairs.json b/src/main/resources/data/mineralogy/advancement/recipes/schist_stairs.json index 21e05dfec..7dbbd4c06 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/schist_stairs.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/schist_stairs.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:schist_stairs" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:schist_stairs" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/schist" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:schist_stairs" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:schist_stairs" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/schist" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/schist_to_stone.json b/src/main/resources/data/mineralogy/advancement/recipes/schist_to_stone.json index b08debb75..eb9d092fd 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/schist_to_stone.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/schist_to_stone.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:schist_to_stone" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:schist_to_stone" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:schist" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:schist_to_stone" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:schist_to_stone" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:schist" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/schist_wall.json b/src/main/resources/data/mineralogy/advancement/recipes/schist_wall.json index e47f3c6d4..403aa047b 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/schist_wall.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/schist_wall.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:schist_wall" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:schist_wall" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/schist" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:schist_wall" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:schist_wall" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/schist" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/scoria_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/scoria_brick.json index e42605669..0e2129c20 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/scoria_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/scoria_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:scoria_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:scoria_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/scoria" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:scoria_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:scoria_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/scoria" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/scoria_brick_block_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/scoria_brick_block_polishing.json index 5fe2ef49d..59d5551b5 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/scoria_brick_block_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/scoria_brick_block_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:scoria_brick_block_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:scoria_brick_block_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:scoria_brick" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:scoria_brick_block_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:scoria_brick_block_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:scoria_brick" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/scoria_brick_furnace.json b/src/main/resources/data/mineralogy/advancement/recipes/scoria_brick_furnace.json index f1f17dde3..235182aba 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/scoria_brick_furnace.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/scoria_brick_furnace.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:scoria_brick_furnace" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:scoria_brick_furnace" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:slabs/scoria/brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:scoria_brick_furnace" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:scoria_brick_furnace" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:slabs/scoria/brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/scoria_brick_slab.json b/src/main/resources/data/mineralogy/advancement/recipes/scoria_brick_slab.json index 2daaa13d2..8492f0e2b 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/scoria_brick_slab.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/scoria_brick_slab.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:scoria_brick_slab" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:scoria_brick_slab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:scoria_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:scoria_brick_slab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:scoria_brick_slab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:scoria_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/scoria_brick_slab_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/scoria_brick_slab_polishing.json index 9842573af..10afe2be3 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/scoria_brick_slab_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/scoria_brick_slab_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:scoria_brick_slab_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:scoria_brick_slab_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:scoria_brick_slab" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:scoria_brick_slab_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:scoria_brick_slab_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:scoria_brick_slab" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/scoria_brick_slab_recombination.json b/src/main/resources/data/mineralogy/advancement/recipes/scoria_brick_slab_recombination.json index 7d28cce97..c28c59d26 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/scoria_brick_slab_recombination.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/scoria_brick_slab_recombination.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:scoria_brick_slab_recombination" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:scoria_brick_slab_recombination" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:scoria_brick_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:scoria_brick_slab_recombination" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:scoria_brick_slab_recombination" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:scoria_brick_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/scoria_brick_stairs.json b/src/main/resources/data/mineralogy/advancement/recipes/scoria_brick_stairs.json index 1d74dfad1..7f7e6f4e4 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/scoria_brick_stairs.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/scoria_brick_stairs.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:scoria_brick_stairs" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:scoria_brick_stairs" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/scoria/brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:scoria_brick_stairs" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:scoria_brick_stairs" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/scoria/brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/scoria_brick_stairs_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/scoria_brick_stairs_polishing.json index 454122ce7..b128a9e63 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/scoria_brick_stairs_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/scoria_brick_stairs_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:scoria_brick_stairs_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:scoria_brick_stairs_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:scoria_brick_stairs" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:scoria_brick_stairs_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:scoria_brick_stairs_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:scoria_brick_stairs" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/scoria_brick_wall.json b/src/main/resources/data/mineralogy/advancement/recipes/scoria_brick_wall.json index 9e0b1a9ef..f69a34fdf 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/scoria_brick_wall.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/scoria_brick_wall.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:scoria_brick_wall" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:scoria_brick_wall" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/scoria/brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:scoria_brick_wall" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:scoria_brick_wall" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/scoria/brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/scoria_brick_wall_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/scoria_brick_wall_polishing.json index 4632c26a8..1be73988d 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/scoria_brick_wall_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/scoria_brick_wall_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:scoria_brick_wall_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:scoria_brick_wall_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:scoria_brick_wall" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:scoria_brick_wall_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:scoria_brick_wall_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:scoria_brick_wall" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/scoria_cobblestone.json b/src/main/resources/data/mineralogy/advancement/recipes/scoria_cobblestone.json index b851d1082..a5fa4edfb 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/scoria_cobblestone.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/scoria_cobblestone.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:scoria_cobblestone" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:scoria_cobblestone" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/scoria" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:scoria_cobblestone" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:scoria_cobblestone" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/scoria" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/scoria_furnace.json b/src/main/resources/data/mineralogy/advancement/recipes/scoria_furnace.json index 17e50c8c9..2cc6e6934 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/scoria_furnace.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/scoria_furnace.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:scoria_furnace" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:scoria_furnace" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:slabs/scoria" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:scoria_furnace" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:scoria_furnace" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:slabs/scoria" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/scoria_polished_brick_slab_recombination.json b/src/main/resources/data/mineralogy/advancement/recipes/scoria_polished_brick_slab_recombination.json index add26ba2e..6f0353842 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/scoria_polished_brick_slab_recombination.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/scoria_polished_brick_slab_recombination.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:scoria_polished_brick_slab_recombination" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:scoria_polished_brick_slab_recombination" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:scoria_smooth_brick_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:scoria_polished_brick_slab_recombination" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:scoria_polished_brick_slab_recombination" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:scoria_smooth_brick_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/scoria_polished_slab_recombination.json b/src/main/resources/data/mineralogy/advancement/recipes/scoria_polished_slab_recombination.json index 0949c1fdf..7f0f739e6 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/scoria_polished_slab_recombination.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/scoria_polished_slab_recombination.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:scoria_polished_slab_recombination" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:scoria_polished_slab_recombination" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:scoria_smooth_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:scoria_polished_slab_recombination" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:scoria_polished_slab_recombination" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:scoria_smooth_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/scoria_polished_slabs_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/scoria_polished_slabs_to_brick.json index 2dca5f2f6..dd5a5f44c 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/scoria_polished_slabs_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/scoria_polished_slabs_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:scoria_polished_slabs_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:scoria_polished_slabs_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:scoria_smooth_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:scoria_polished_slabs_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:scoria_polished_slabs_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:scoria_smooth_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/scoria_polished_stairs_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/scoria_polished_stairs_to_brick.json index 574c1db43..024717660 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/scoria_polished_stairs_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/scoria_polished_stairs_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:scoria_polished_stairs_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:scoria_polished_stairs_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:scoria_smooth_stairs" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:scoria_polished_stairs_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:scoria_polished_stairs_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:scoria_smooth_stairs" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/scoria_polished_walls_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/scoria_polished_walls_to_brick.json index 7409a6b6b..ffef2b736 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/scoria_polished_walls_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/scoria_polished_walls_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:scoria_polished_walls_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:scoria_polished_walls_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:scoria_smooth_wall" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:scoria_polished_walls_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:scoria_polished_walls_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:scoria_smooth_wall" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/scoria_raw_slab_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/scoria_raw_slab_polishing.json index 2d72c2fae..78a53f3b1 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/scoria_raw_slab_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/scoria_raw_slab_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:scoria_raw_slab_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:scoria_raw_slab_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:scoria_slab" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:scoria_raw_slab_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:scoria_raw_slab_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:scoria_slab" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/scoria_raw_slab_recombination.json b/src/main/resources/data/mineralogy/advancement/recipes/scoria_raw_slab_recombination.json index 80d2fe93b..62387f0d3 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/scoria_raw_slab_recombination.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/scoria_raw_slab_recombination.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:scoria_raw_slab_recombination" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:scoria_raw_slab_recombination" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:scoria_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:scoria_raw_slab_recombination" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:scoria_raw_slab_recombination" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:scoria_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/scoria_raw_slabs_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/scoria_raw_slabs_to_brick.json index e08e2257f..2c7b71385 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/scoria_raw_slabs_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/scoria_raw_slabs_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:scoria_raw_slabs_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:scoria_raw_slabs_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:scoria_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:scoria_raw_slabs_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:scoria_raw_slabs_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:scoria_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/scoria_raw_stairs_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/scoria_raw_stairs_polishing.json index 36f67198a..c44a09c97 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/scoria_raw_stairs_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/scoria_raw_stairs_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:scoria_raw_stairs_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:scoria_raw_stairs_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:scoria_stairs" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:scoria_raw_stairs_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:scoria_raw_stairs_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:scoria_stairs" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/scoria_raw_stairs_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/scoria_raw_stairs_to_brick.json index 975173f11..e1b399d92 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/scoria_raw_stairs_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/scoria_raw_stairs_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:scoria_raw_stairs_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:scoria_raw_stairs_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:scoria_stairs" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:scoria_raw_stairs_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:scoria_raw_stairs_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:scoria_stairs" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/scoria_raw_wall_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/scoria_raw_wall_polishing.json index 1286483ab..fda689d9c 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/scoria_raw_wall_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/scoria_raw_wall_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:scoria_raw_wall_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:scoria_raw_wall_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:scoria_wall" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:scoria_raw_wall_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:scoria_raw_wall_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:scoria_wall" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/scoria_raw_walls_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/scoria_raw_walls_to_brick.json index 56a214431..0eb92ddeb 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/scoria_raw_walls_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/scoria_raw_walls_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:scoria_raw_walls_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:scoria_raw_walls_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:scoria_wall" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:scoria_raw_walls_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:scoria_raw_walls_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:scoria_wall" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/scoria_relief_axe.json b/src/main/resources/data/mineralogy/advancement/recipes/scoria_relief_axe.json index 2618c1147..52aea2e88 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/scoria_relief_axe.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/scoria_relief_axe.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:scoria_relief_axe" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:scoria_relief_axe" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:scoria_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:scoria_relief_axe" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:scoria_relief_axe" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:scoria_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/scoria_relief_blank.json b/src/main/resources/data/mineralogy/advancement/recipes/scoria_relief_blank.json index ee0c7681c..bf58afd8d 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/scoria_relief_blank.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/scoria_relief_blank.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:scoria_relief_blank" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:scoria_relief_blank" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:scoria_smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:scoria_relief_blank" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:scoria_relief_blank" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:scoria_smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/scoria_relief_cross.json b/src/main/resources/data/mineralogy/advancement/recipes/scoria_relief_cross.json index a733f64d4..e8d1011a5 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/scoria_relief_cross.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/scoria_relief_cross.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:scoria_relief_cross" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:scoria_relief_cross" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:scoria_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:scoria_relief_cross" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:scoria_relief_cross" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:scoria_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/scoria_relief_hammer.json b/src/main/resources/data/mineralogy/advancement/recipes/scoria_relief_hammer.json index d4c43c7bb..cfbce76a9 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/scoria_relief_hammer.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/scoria_relief_hammer.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:scoria_relief_hammer" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:scoria_relief_hammer" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:scoria_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:scoria_relief_hammer" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:scoria_relief_hammer" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:scoria_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/scoria_relief_hoe.json b/src/main/resources/data/mineralogy/advancement/recipes/scoria_relief_hoe.json index dc36b69d5..dd5631d2a 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/scoria_relief_hoe.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/scoria_relief_hoe.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:scoria_relief_hoe" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:scoria_relief_hoe" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:scoria_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:scoria_relief_hoe" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:scoria_relief_hoe" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:scoria_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/scoria_relief_horizontal.json b/src/main/resources/data/mineralogy/advancement/recipes/scoria_relief_horizontal.json index 795a5a96c..21eaf06e0 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/scoria_relief_horizontal.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/scoria_relief_horizontal.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:scoria_relief_horizontal" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:scoria_relief_horizontal" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:scoria_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:scoria_relief_horizontal" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:scoria_relief_horizontal" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:scoria_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/scoria_relief_i.json b/src/main/resources/data/mineralogy/advancement/recipes/scoria_relief_i.json index 263879016..2b1d4fc60 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/scoria_relief_i.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/scoria_relief_i.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:scoria_relief_i" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:scoria_relief_i" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:scoria_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:scoria_relief_i" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:scoria_relief_i" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:scoria_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/scoria_relief_left.json b/src/main/resources/data/mineralogy/advancement/recipes/scoria_relief_left.json index 69f97c5b2..25789b99e 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/scoria_relief_left.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/scoria_relief_left.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:scoria_relief_left" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:scoria_relief_left" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:scoria_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:scoria_relief_left" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:scoria_relief_left" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:scoria_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/scoria_relief_pickaxe.json b/src/main/resources/data/mineralogy/advancement/recipes/scoria_relief_pickaxe.json index 406033113..8d51f20be 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/scoria_relief_pickaxe.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/scoria_relief_pickaxe.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:scoria_relief_pickaxe" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:scoria_relief_pickaxe" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:scoria_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:scoria_relief_pickaxe" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:scoria_relief_pickaxe" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:scoria_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/scoria_relief_plus.json b/src/main/resources/data/mineralogy/advancement/recipes/scoria_relief_plus.json index f0606eb18..650832433 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/scoria_relief_plus.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/scoria_relief_plus.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:scoria_relief_plus" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:scoria_relief_plus" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:scoria_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:scoria_relief_plus" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:scoria_relief_plus" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:scoria_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/scoria_relief_right.json b/src/main/resources/data/mineralogy/advancement/recipes/scoria_relief_right.json index 95c9461f5..5d6422347 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/scoria_relief_right.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/scoria_relief_right.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:scoria_relief_right" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:scoria_relief_right" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:scoria_relief_left" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:scoria_relief_right" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:scoria_relief_right" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:scoria_relief_left" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/scoria_relief_sword.json b/src/main/resources/data/mineralogy/advancement/recipes/scoria_relief_sword.json index d067dc450..0d7f26e13 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/scoria_relief_sword.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/scoria_relief_sword.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:scoria_relief_sword" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:scoria_relief_sword" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:scoria_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:scoria_relief_sword" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:scoria_relief_sword" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:scoria_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/scoria_relief_vertical.json b/src/main/resources/data/mineralogy/advancement/recipes/scoria_relief_vertical.json index 29bc8cb71..ae79a132f 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/scoria_relief_vertical.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/scoria_relief_vertical.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:scoria_relief_vertical" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:scoria_relief_vertical" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:scoria_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:scoria_relief_vertical" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:scoria_relief_vertical" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:scoria_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/scoria_slab.json b/src/main/resources/data/mineralogy/advancement/recipes/scoria_slab.json index d3bfe6071..060881005 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/scoria_slab.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/scoria_slab.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:scoria_slab" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:scoria_slab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:scoria" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:scoria_slab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:scoria_slab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:scoria" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/scoria_smooth.json b/src/main/resources/data/mineralogy/advancement/recipes/scoria_smooth.json index 2a4e47e8d..ca6f726dc 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/scoria_smooth.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/scoria_smooth.json @@ -1,48 +1,46 @@ { - "rewards": { - "recipes": [ - "mineralogy:scoria_smooth" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:scoria_smooth" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/scoria" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:scoria_smooth" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:scoria_smooth" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/scoria" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/scoria_smooth_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/scoria_smooth_brick.json index 8a6b9b1de..ebd67b2e9 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/scoria_smooth_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/scoria_smooth_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:scoria_smooth_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:scoria_smooth_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/scoria/smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:scoria_smooth_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:scoria_smooth_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/scoria/smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/scoria_smooth_brick_furnace.json b/src/main/resources/data/mineralogy/advancement/recipes/scoria_smooth_brick_furnace.json index 2a45cab57..e0bb1d85e 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/scoria_smooth_brick_furnace.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/scoria_smooth_brick_furnace.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:scoria_smooth_brick_furnace" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:scoria_smooth_brick_furnace" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:slabs/scoria/smooth_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:scoria_smooth_brick_furnace" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:scoria_smooth_brick_furnace" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:slabs/scoria/smooth_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/scoria_smooth_brick_slab.json b/src/main/resources/data/mineralogy/advancement/recipes/scoria_smooth_brick_slab.json index 168bf4864..ef3722395 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/scoria_smooth_brick_slab.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/scoria_smooth_brick_slab.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:scoria_smooth_brick_slab" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:scoria_smooth_brick_slab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:scoria_smooth_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:scoria_smooth_brick_slab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:scoria_smooth_brick_slab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:scoria_smooth_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/scoria_smooth_brick_stairs.json b/src/main/resources/data/mineralogy/advancement/recipes/scoria_smooth_brick_stairs.json index 9be45bb38..9345a019a 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/scoria_smooth_brick_stairs.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/scoria_smooth_brick_stairs.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:scoria_smooth_brick_stairs" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:scoria_smooth_brick_stairs" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/scoria/smooth_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:scoria_smooth_brick_stairs" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:scoria_smooth_brick_stairs" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/scoria/smooth_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/scoria_smooth_brick_wall.json b/src/main/resources/data/mineralogy/advancement/recipes/scoria_smooth_brick_wall.json index 295267d3e..92b626632 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/scoria_smooth_brick_wall.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/scoria_smooth_brick_wall.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:scoria_smooth_brick_wall" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:scoria_smooth_brick_wall" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/scoria/smooth_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:scoria_smooth_brick_wall" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:scoria_smooth_brick_wall" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/scoria/smooth_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/scoria_smooth_furnace.json b/src/main/resources/data/mineralogy/advancement/recipes/scoria_smooth_furnace.json index 959ca4dcd..ee0db622a 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/scoria_smooth_furnace.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/scoria_smooth_furnace.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:scoria_smooth_furnace" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:scoria_smooth_furnace" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:slabs/scoria/smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:scoria_smooth_furnace" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:scoria_smooth_furnace" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:slabs/scoria/smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/scoria_smooth_slab.json b/src/main/resources/data/mineralogy/advancement/recipes/scoria_smooth_slab.json index 99fac6071..382fbc2b2 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/scoria_smooth_slab.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/scoria_smooth_slab.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:scoria_smooth_slab" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:scoria_smooth_slab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:scoria_smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:scoria_smooth_slab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:scoria_smooth_slab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:scoria_smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/scoria_smooth_stairs.json b/src/main/resources/data/mineralogy/advancement/recipes/scoria_smooth_stairs.json index 4327a50e0..a31242cdd 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/scoria_smooth_stairs.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/scoria_smooth_stairs.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:scoria_smooth_stairs" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:scoria_smooth_stairs" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/scoria/smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:scoria_smooth_stairs" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:scoria_smooth_stairs" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/scoria/smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/scoria_smooth_wall.json b/src/main/resources/data/mineralogy/advancement/recipes/scoria_smooth_wall.json index 6ba496254..5bafb8527 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/scoria_smooth_wall.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/scoria_smooth_wall.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:scoria_smooth_wall" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:scoria_smooth_wall" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/scoria/smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:scoria_smooth_wall" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:scoria_smooth_wall" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/scoria/smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/scoria_stairs.json b/src/main/resources/data/mineralogy/advancement/recipes/scoria_stairs.json index beca0fdf1..9bcee6bd8 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/scoria_stairs.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/scoria_stairs.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:scoria_stairs" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:scoria_stairs" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/scoria" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:scoria_stairs" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:scoria_stairs" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/scoria" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/scoria_to_stone.json b/src/main/resources/data/mineralogy/advancement/recipes/scoria_to_stone.json index 92efbf6e2..2e1b38733 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/scoria_to_stone.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/scoria_to_stone.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:scoria_to_stone" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:scoria_to_stone" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:scoria" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:scoria_to_stone" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:scoria_to_stone" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:scoria" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/scoria_wall.json b/src/main/resources/data/mineralogy/advancement/recipes/scoria_wall.json index 1ea4ce7e0..623c871b3 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/scoria_wall.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/scoria_wall.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:scoria_wall" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:scoria_wall" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/scoria" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:scoria_wall" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:scoria_wall" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/scoria" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/shale_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/shale_brick.json index 128256081..d9dd76a45 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/shale_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/shale_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:shale_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:shale_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/shale" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:shale_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:shale_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/shale" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/shale_brick_block_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/shale_brick_block_polishing.json index c6c701b70..945bdd51d 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/shale_brick_block_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/shale_brick_block_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:shale_brick_block_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:shale_brick_block_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:shale_brick" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:shale_brick_block_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:shale_brick_block_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:shale_brick" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/shale_brick_furnace.json b/src/main/resources/data/mineralogy/advancement/recipes/shale_brick_furnace.json index 01c548f6d..40ee5e5e5 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/shale_brick_furnace.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/shale_brick_furnace.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:shale_brick_furnace" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:shale_brick_furnace" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:slabs/shale/brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:shale_brick_furnace" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:shale_brick_furnace" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:slabs/shale/brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/shale_brick_slab.json b/src/main/resources/data/mineralogy/advancement/recipes/shale_brick_slab.json index 051fee840..3b8754473 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/shale_brick_slab.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/shale_brick_slab.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:shale_brick_slab" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:shale_brick_slab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:shale_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:shale_brick_slab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:shale_brick_slab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:shale_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/shale_brick_slab_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/shale_brick_slab_polishing.json index d37228219..830dc896f 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/shale_brick_slab_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/shale_brick_slab_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:shale_brick_slab_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:shale_brick_slab_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:shale_brick_slab" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:shale_brick_slab_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:shale_brick_slab_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:shale_brick_slab" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/shale_brick_slab_recombination.json b/src/main/resources/data/mineralogy/advancement/recipes/shale_brick_slab_recombination.json index 507b50145..b0e3d5298 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/shale_brick_slab_recombination.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/shale_brick_slab_recombination.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:shale_brick_slab_recombination" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:shale_brick_slab_recombination" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:shale_brick_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:shale_brick_slab_recombination" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:shale_brick_slab_recombination" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:shale_brick_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/shale_brick_stairs.json b/src/main/resources/data/mineralogy/advancement/recipes/shale_brick_stairs.json index de75c615d..0918ad60e 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/shale_brick_stairs.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/shale_brick_stairs.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:shale_brick_stairs" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:shale_brick_stairs" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/shale/brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:shale_brick_stairs" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:shale_brick_stairs" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/shale/brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/shale_brick_stairs_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/shale_brick_stairs_polishing.json index 6bb7ee9ee..ad4746602 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/shale_brick_stairs_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/shale_brick_stairs_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:shale_brick_stairs_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:shale_brick_stairs_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:shale_brick_stairs" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:shale_brick_stairs_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:shale_brick_stairs_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:shale_brick_stairs" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/shale_brick_wall.json b/src/main/resources/data/mineralogy/advancement/recipes/shale_brick_wall.json index c10993710..ca621ba08 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/shale_brick_wall.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/shale_brick_wall.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:shale_brick_wall" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:shale_brick_wall" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/shale/brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:shale_brick_wall" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:shale_brick_wall" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/shale/brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/shale_brick_wall_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/shale_brick_wall_polishing.json index 7f6b5f1d7..a31bfa912 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/shale_brick_wall_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/shale_brick_wall_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:shale_brick_wall_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:shale_brick_wall_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:shale_brick_wall" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:shale_brick_wall_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:shale_brick_wall_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:shale_brick_wall" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/shale_cobblestone.json b/src/main/resources/data/mineralogy/advancement/recipes/shale_cobblestone.json index fecf06016..d667e1479 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/shale_cobblestone.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/shale_cobblestone.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:shale_cobblestone" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:shale_cobblestone" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/shale" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:shale_cobblestone" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:shale_cobblestone" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/shale" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/shale_furnace.json b/src/main/resources/data/mineralogy/advancement/recipes/shale_furnace.json index 77771b6b0..73a3bf684 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/shale_furnace.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/shale_furnace.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:shale_furnace" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:shale_furnace" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:slabs/shale" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:shale_furnace" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:shale_furnace" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:slabs/shale" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/shale_polished_brick_slab_recombination.json b/src/main/resources/data/mineralogy/advancement/recipes/shale_polished_brick_slab_recombination.json index db748cfef..ae75d8c69 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/shale_polished_brick_slab_recombination.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/shale_polished_brick_slab_recombination.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:shale_polished_brick_slab_recombination" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:shale_polished_brick_slab_recombination" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:shale_smooth_brick_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:shale_polished_brick_slab_recombination" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:shale_polished_brick_slab_recombination" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:shale_smooth_brick_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/shale_polished_slab_recombination.json b/src/main/resources/data/mineralogy/advancement/recipes/shale_polished_slab_recombination.json index e63a7c626..30aab12db 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/shale_polished_slab_recombination.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/shale_polished_slab_recombination.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:shale_polished_slab_recombination" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:shale_polished_slab_recombination" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:shale_smooth_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:shale_polished_slab_recombination" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:shale_polished_slab_recombination" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:shale_smooth_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/shale_polished_slabs_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/shale_polished_slabs_to_brick.json index 49b5b77a9..d98fb660a 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/shale_polished_slabs_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/shale_polished_slabs_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:shale_polished_slabs_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:shale_polished_slabs_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:shale_smooth_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:shale_polished_slabs_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:shale_polished_slabs_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:shale_smooth_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/shale_polished_stairs_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/shale_polished_stairs_to_brick.json index 7a4df6b8f..4eaa7eb1d 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/shale_polished_stairs_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/shale_polished_stairs_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:shale_polished_stairs_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:shale_polished_stairs_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:shale_smooth_stairs" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:shale_polished_stairs_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:shale_polished_stairs_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:shale_smooth_stairs" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/shale_polished_walls_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/shale_polished_walls_to_brick.json index 825c32e93..c9d0e9b7e 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/shale_polished_walls_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/shale_polished_walls_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:shale_polished_walls_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:shale_polished_walls_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:shale_smooth_wall" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:shale_polished_walls_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:shale_polished_walls_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:shale_smooth_wall" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/shale_raw_slab_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/shale_raw_slab_polishing.json index e3d9109a1..a0664e37e 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/shale_raw_slab_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/shale_raw_slab_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:shale_raw_slab_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:shale_raw_slab_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:shale_slab" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:shale_raw_slab_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:shale_raw_slab_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:shale_slab" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/shale_raw_slab_recombination.json b/src/main/resources/data/mineralogy/advancement/recipes/shale_raw_slab_recombination.json index dbbe59b96..49e66cc88 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/shale_raw_slab_recombination.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/shale_raw_slab_recombination.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:shale_raw_slab_recombination" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:shale_raw_slab_recombination" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:shale_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:shale_raw_slab_recombination" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:shale_raw_slab_recombination" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:shale_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/shale_raw_slabs_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/shale_raw_slabs_to_brick.json index 431dc9662..de52008ce 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/shale_raw_slabs_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/shale_raw_slabs_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:shale_raw_slabs_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:shale_raw_slabs_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:shale_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:shale_raw_slabs_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:shale_raw_slabs_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:shale_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/shale_raw_stairs_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/shale_raw_stairs_polishing.json index 2981abd32..057388585 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/shale_raw_stairs_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/shale_raw_stairs_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:shale_raw_stairs_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:shale_raw_stairs_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:shale_stairs" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:shale_raw_stairs_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:shale_raw_stairs_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:shale_stairs" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/shale_raw_stairs_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/shale_raw_stairs_to_brick.json index 2d80712c8..ae90414dc 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/shale_raw_stairs_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/shale_raw_stairs_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:shale_raw_stairs_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:shale_raw_stairs_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:shale_stairs" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:shale_raw_stairs_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:shale_raw_stairs_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:shale_stairs" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/shale_raw_wall_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/shale_raw_wall_polishing.json index 50ccf8489..01ec9ae19 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/shale_raw_wall_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/shale_raw_wall_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:shale_raw_wall_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:shale_raw_wall_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:shale_wall" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:shale_raw_wall_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:shale_raw_wall_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:shale_wall" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/shale_raw_walls_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/shale_raw_walls_to_brick.json index e5cd5098e..8be736d5b 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/shale_raw_walls_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/shale_raw_walls_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:shale_raw_walls_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:shale_raw_walls_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:shale_wall" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:shale_raw_walls_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:shale_raw_walls_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:shale_wall" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/shale_relief_axe.json b/src/main/resources/data/mineralogy/advancement/recipes/shale_relief_axe.json index 62197dda4..a721de4d2 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/shale_relief_axe.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/shale_relief_axe.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:shale_relief_axe" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:shale_relief_axe" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:shale_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:shale_relief_axe" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:shale_relief_axe" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:shale_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/shale_relief_blank.json b/src/main/resources/data/mineralogy/advancement/recipes/shale_relief_blank.json index 4fa102e31..9950abef4 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/shale_relief_blank.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/shale_relief_blank.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:shale_relief_blank" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:shale_relief_blank" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:shale_smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:shale_relief_blank" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:shale_relief_blank" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:shale_smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/shale_relief_cross.json b/src/main/resources/data/mineralogy/advancement/recipes/shale_relief_cross.json index ae95a2c27..0efbc9941 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/shale_relief_cross.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/shale_relief_cross.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:shale_relief_cross" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:shale_relief_cross" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:shale_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:shale_relief_cross" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:shale_relief_cross" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:shale_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/shale_relief_hammer.json b/src/main/resources/data/mineralogy/advancement/recipes/shale_relief_hammer.json index 1a5dff5f6..fdf9096c7 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/shale_relief_hammer.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/shale_relief_hammer.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:shale_relief_hammer" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:shale_relief_hammer" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:shale_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:shale_relief_hammer" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:shale_relief_hammer" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:shale_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/shale_relief_hoe.json b/src/main/resources/data/mineralogy/advancement/recipes/shale_relief_hoe.json index eec28dd52..edce5e4ed 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/shale_relief_hoe.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/shale_relief_hoe.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:shale_relief_hoe" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:shale_relief_hoe" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:shale_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:shale_relief_hoe" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:shale_relief_hoe" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:shale_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/shale_relief_horizontal.json b/src/main/resources/data/mineralogy/advancement/recipes/shale_relief_horizontal.json index b2ff8100e..978d395b9 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/shale_relief_horizontal.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/shale_relief_horizontal.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:shale_relief_horizontal" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:shale_relief_horizontal" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:shale_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:shale_relief_horizontal" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:shale_relief_horizontal" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:shale_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/shale_relief_i.json b/src/main/resources/data/mineralogy/advancement/recipes/shale_relief_i.json index a5109b343..20e3c8c1b 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/shale_relief_i.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/shale_relief_i.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:shale_relief_i" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:shale_relief_i" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:shale_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:shale_relief_i" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:shale_relief_i" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:shale_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/shale_relief_left.json b/src/main/resources/data/mineralogy/advancement/recipes/shale_relief_left.json index c895445e2..4e5b3e1f4 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/shale_relief_left.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/shale_relief_left.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:shale_relief_left" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:shale_relief_left" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:shale_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:shale_relief_left" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:shale_relief_left" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:shale_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/shale_relief_pickaxe.json b/src/main/resources/data/mineralogy/advancement/recipes/shale_relief_pickaxe.json index e18e55b9d..26e0983ad 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/shale_relief_pickaxe.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/shale_relief_pickaxe.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:shale_relief_pickaxe" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:shale_relief_pickaxe" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:shale_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:shale_relief_pickaxe" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:shale_relief_pickaxe" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:shale_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/shale_relief_plus.json b/src/main/resources/data/mineralogy/advancement/recipes/shale_relief_plus.json index 2ff196a5a..69ef568d6 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/shale_relief_plus.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/shale_relief_plus.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:shale_relief_plus" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:shale_relief_plus" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:shale_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:shale_relief_plus" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:shale_relief_plus" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:shale_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/shale_relief_right.json b/src/main/resources/data/mineralogy/advancement/recipes/shale_relief_right.json index 07bcf5a9d..2cc4d2749 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/shale_relief_right.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/shale_relief_right.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:shale_relief_right" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:shale_relief_right" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:shale_relief_left" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:shale_relief_right" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:shale_relief_right" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:shale_relief_left" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/shale_relief_sword.json b/src/main/resources/data/mineralogy/advancement/recipes/shale_relief_sword.json index 956b56ac8..ed22c89a4 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/shale_relief_sword.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/shale_relief_sword.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:shale_relief_sword" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:shale_relief_sword" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:shale_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:shale_relief_sword" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:shale_relief_sword" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:shale_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/shale_relief_vertical.json b/src/main/resources/data/mineralogy/advancement/recipes/shale_relief_vertical.json index bb03b44a2..45545a1e8 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/shale_relief_vertical.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/shale_relief_vertical.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:shale_relief_vertical" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:shale_relief_vertical" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:shale_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:shale_relief_vertical" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:shale_relief_vertical" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:shale_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/shale_slab.json b/src/main/resources/data/mineralogy/advancement/recipes/shale_slab.json index 22ce0471c..705a63334 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/shale_slab.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/shale_slab.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:shale_slab" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:shale_slab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:shale" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:shale_slab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:shale_slab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:shale" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/shale_smooth.json b/src/main/resources/data/mineralogy/advancement/recipes/shale_smooth.json index 861a0efb2..337fdd472 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/shale_smooth.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/shale_smooth.json @@ -1,48 +1,46 @@ { - "rewards": { - "recipes": [ - "mineralogy:shale_smooth" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:shale_smooth" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/shale" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:shale_smooth" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:shale_smooth" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/shale" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/shale_smooth_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/shale_smooth_brick.json index cd112da6f..3ac6b1f59 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/shale_smooth_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/shale_smooth_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:shale_smooth_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:shale_smooth_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/shale/smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:shale_smooth_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:shale_smooth_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/shale/smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/shale_smooth_brick_furnace.json b/src/main/resources/data/mineralogy/advancement/recipes/shale_smooth_brick_furnace.json index efcef10c8..8abf32970 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/shale_smooth_brick_furnace.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/shale_smooth_brick_furnace.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:shale_smooth_brick_furnace" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:shale_smooth_brick_furnace" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:slabs/shale/smooth_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:shale_smooth_brick_furnace" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:shale_smooth_brick_furnace" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:slabs/shale/smooth_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/shale_smooth_brick_slab.json b/src/main/resources/data/mineralogy/advancement/recipes/shale_smooth_brick_slab.json index 0ea95f70d..651d8219b 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/shale_smooth_brick_slab.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/shale_smooth_brick_slab.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:shale_smooth_brick_slab" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:shale_smooth_brick_slab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:shale_smooth_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:shale_smooth_brick_slab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:shale_smooth_brick_slab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:shale_smooth_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/shale_smooth_brick_stairs.json b/src/main/resources/data/mineralogy/advancement/recipes/shale_smooth_brick_stairs.json index 76f55af5a..d7f6f0d8b 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/shale_smooth_brick_stairs.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/shale_smooth_brick_stairs.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:shale_smooth_brick_stairs" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:shale_smooth_brick_stairs" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/shale/smooth_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:shale_smooth_brick_stairs" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:shale_smooth_brick_stairs" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/shale/smooth_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/shale_smooth_brick_wall.json b/src/main/resources/data/mineralogy/advancement/recipes/shale_smooth_brick_wall.json index 2e405b8c1..9f1c044f6 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/shale_smooth_brick_wall.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/shale_smooth_brick_wall.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:shale_smooth_brick_wall" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:shale_smooth_brick_wall" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/shale/smooth_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:shale_smooth_brick_wall" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:shale_smooth_brick_wall" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/shale/smooth_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/shale_smooth_furnace.json b/src/main/resources/data/mineralogy/advancement/recipes/shale_smooth_furnace.json index 531a2027c..ed39815b5 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/shale_smooth_furnace.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/shale_smooth_furnace.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:shale_smooth_furnace" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:shale_smooth_furnace" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:slabs/shale/smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:shale_smooth_furnace" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:shale_smooth_furnace" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:slabs/shale/smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/shale_smooth_slab.json b/src/main/resources/data/mineralogy/advancement/recipes/shale_smooth_slab.json index f76a4c5fd..c5f646979 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/shale_smooth_slab.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/shale_smooth_slab.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:shale_smooth_slab" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:shale_smooth_slab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:shale_smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:shale_smooth_slab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:shale_smooth_slab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:shale_smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/shale_smooth_stairs.json b/src/main/resources/data/mineralogy/advancement/recipes/shale_smooth_stairs.json index c6213421a..1c9803914 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/shale_smooth_stairs.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/shale_smooth_stairs.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:shale_smooth_stairs" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:shale_smooth_stairs" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/shale/smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:shale_smooth_stairs" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:shale_smooth_stairs" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/shale/smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/shale_smooth_wall.json b/src/main/resources/data/mineralogy/advancement/recipes/shale_smooth_wall.json index 828190203..4cbfdeac2 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/shale_smooth_wall.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/shale_smooth_wall.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:shale_smooth_wall" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:shale_smooth_wall" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/shale/smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:shale_smooth_wall" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:shale_smooth_wall" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/shale/smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/shale_stairs.json b/src/main/resources/data/mineralogy/advancement/recipes/shale_stairs.json index b00e673b6..1decb22e6 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/shale_stairs.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/shale_stairs.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:shale_stairs" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:shale_stairs" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/shale" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:shale_stairs" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:shale_stairs" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/shale" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/shale_to_stone.json b/src/main/resources/data/mineralogy/advancement/recipes/shale_to_stone.json index b7b96d3b0..f7d7649c7 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/shale_to_stone.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/shale_to_stone.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:shale_to_stone" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:shale_to_stone" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:shale" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:shale_to_stone" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:shale_to_stone" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:shale" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/shale_wall.json b/src/main/resources/data/mineralogy/advancement/recipes/shale_wall.json index 010fec91f..29c8ff7c6 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/shale_wall.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/shale_wall.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:shale_wall" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:shale_wall" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/shale" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:shale_wall" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:shale_wall" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/shale" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/siltstone_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/siltstone_brick.json index d011fc7c4..6dba4f934 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/siltstone_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/siltstone_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:siltstone_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:siltstone_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/siltstone" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:siltstone_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:siltstone_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/siltstone" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/siltstone_brick_block_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/siltstone_brick_block_polishing.json index 0d3bfab4b..66a207443 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/siltstone_brick_block_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/siltstone_brick_block_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:siltstone_brick_block_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:siltstone_brick_block_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:siltstone_brick" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:siltstone_brick_block_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:siltstone_brick_block_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:siltstone_brick" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/siltstone_brick_furnace.json b/src/main/resources/data/mineralogy/advancement/recipes/siltstone_brick_furnace.json index ec2bb3885..a32c5f426 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/siltstone_brick_furnace.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/siltstone_brick_furnace.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:siltstone_brick_furnace" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:siltstone_brick_furnace" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:slabs/siltstone/brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:siltstone_brick_furnace" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:siltstone_brick_furnace" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:slabs/siltstone/brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/siltstone_brick_slab.json b/src/main/resources/data/mineralogy/advancement/recipes/siltstone_brick_slab.json index 523419226..2b0a14f56 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/siltstone_brick_slab.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/siltstone_brick_slab.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:siltstone_brick_slab" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:siltstone_brick_slab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:siltstone_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:siltstone_brick_slab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:siltstone_brick_slab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:siltstone_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/siltstone_brick_slab_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/siltstone_brick_slab_polishing.json index 47fd1882f..c7a0e5206 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/siltstone_brick_slab_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/siltstone_brick_slab_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:siltstone_brick_slab_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:siltstone_brick_slab_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:siltstone_brick_slab" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:siltstone_brick_slab_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:siltstone_brick_slab_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:siltstone_brick_slab" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/siltstone_brick_slab_recombination.json b/src/main/resources/data/mineralogy/advancement/recipes/siltstone_brick_slab_recombination.json index 750fb5fe5..e08aa61f7 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/siltstone_brick_slab_recombination.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/siltstone_brick_slab_recombination.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:siltstone_brick_slab_recombination" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:siltstone_brick_slab_recombination" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:siltstone_brick_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:siltstone_brick_slab_recombination" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:siltstone_brick_slab_recombination" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:siltstone_brick_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/siltstone_brick_stairs.json b/src/main/resources/data/mineralogy/advancement/recipes/siltstone_brick_stairs.json index 3f556e825..b6b4c1183 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/siltstone_brick_stairs.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/siltstone_brick_stairs.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:siltstone_brick_stairs" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:siltstone_brick_stairs" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/siltstone/brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:siltstone_brick_stairs" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:siltstone_brick_stairs" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/siltstone/brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/siltstone_brick_stairs_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/siltstone_brick_stairs_polishing.json index 2e04de866..827d92dad 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/siltstone_brick_stairs_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/siltstone_brick_stairs_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:siltstone_brick_stairs_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:siltstone_brick_stairs_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:siltstone_brick_stairs" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:siltstone_brick_stairs_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:siltstone_brick_stairs_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:siltstone_brick_stairs" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/siltstone_brick_wall.json b/src/main/resources/data/mineralogy/advancement/recipes/siltstone_brick_wall.json index 960847824..2885de4f0 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/siltstone_brick_wall.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/siltstone_brick_wall.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:siltstone_brick_wall" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:siltstone_brick_wall" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/siltstone/brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:siltstone_brick_wall" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:siltstone_brick_wall" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/siltstone/brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/siltstone_brick_wall_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/siltstone_brick_wall_polishing.json index 866a603ca..2d807c2b0 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/siltstone_brick_wall_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/siltstone_brick_wall_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:siltstone_brick_wall_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:siltstone_brick_wall_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:siltstone_brick_wall" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:siltstone_brick_wall_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:siltstone_brick_wall_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:siltstone_brick_wall" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/siltstone_cobblestone.json b/src/main/resources/data/mineralogy/advancement/recipes/siltstone_cobblestone.json index 362d10f41..7a4d76720 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/siltstone_cobblestone.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/siltstone_cobblestone.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:siltstone_cobblestone" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:siltstone_cobblestone" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/siltstone" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:siltstone_cobblestone" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:siltstone_cobblestone" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/siltstone" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/siltstone_furnace.json b/src/main/resources/data/mineralogy/advancement/recipes/siltstone_furnace.json index a59cc7294..8977e5397 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/siltstone_furnace.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/siltstone_furnace.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:siltstone_furnace" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:siltstone_furnace" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:slabs/siltstone" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:siltstone_furnace" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:siltstone_furnace" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:slabs/siltstone" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/siltstone_polished_brick_slab_recombination.json b/src/main/resources/data/mineralogy/advancement/recipes/siltstone_polished_brick_slab_recombination.json index 6920d04b1..28e84a769 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/siltstone_polished_brick_slab_recombination.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/siltstone_polished_brick_slab_recombination.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:siltstone_polished_brick_slab_recombination" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:siltstone_polished_brick_slab_recombination" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:siltstone_smooth_brick_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:siltstone_polished_brick_slab_recombination" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:siltstone_polished_brick_slab_recombination" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:siltstone_smooth_brick_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/siltstone_polished_slab_recombination.json b/src/main/resources/data/mineralogy/advancement/recipes/siltstone_polished_slab_recombination.json index fee911cf6..6697a572b 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/siltstone_polished_slab_recombination.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/siltstone_polished_slab_recombination.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:siltstone_polished_slab_recombination" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:siltstone_polished_slab_recombination" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:siltstone_smooth_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:siltstone_polished_slab_recombination" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:siltstone_polished_slab_recombination" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:siltstone_smooth_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/siltstone_polished_slabs_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/siltstone_polished_slabs_to_brick.json index 6302121a7..0fa401eaf 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/siltstone_polished_slabs_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/siltstone_polished_slabs_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:siltstone_polished_slabs_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:siltstone_polished_slabs_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:siltstone_smooth_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:siltstone_polished_slabs_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:siltstone_polished_slabs_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:siltstone_smooth_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/siltstone_polished_stairs_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/siltstone_polished_stairs_to_brick.json index c31098ea0..4da7bcf67 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/siltstone_polished_stairs_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/siltstone_polished_stairs_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:siltstone_polished_stairs_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:siltstone_polished_stairs_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:siltstone_smooth_stairs" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:siltstone_polished_stairs_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:siltstone_polished_stairs_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:siltstone_smooth_stairs" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/siltstone_polished_walls_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/siltstone_polished_walls_to_brick.json index cafb69a9a..c7610457c 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/siltstone_polished_walls_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/siltstone_polished_walls_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:siltstone_polished_walls_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:siltstone_polished_walls_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:siltstone_smooth_wall" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:siltstone_polished_walls_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:siltstone_polished_walls_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:siltstone_smooth_wall" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/siltstone_raw_slab_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/siltstone_raw_slab_polishing.json index b05d130f9..00a2fc106 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/siltstone_raw_slab_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/siltstone_raw_slab_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:siltstone_raw_slab_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:siltstone_raw_slab_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:siltstone_slab" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:siltstone_raw_slab_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:siltstone_raw_slab_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:siltstone_slab" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/siltstone_raw_slab_recombination.json b/src/main/resources/data/mineralogy/advancement/recipes/siltstone_raw_slab_recombination.json index 75881ff0b..4ef25858f 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/siltstone_raw_slab_recombination.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/siltstone_raw_slab_recombination.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:siltstone_raw_slab_recombination" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:siltstone_raw_slab_recombination" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:siltstone_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:siltstone_raw_slab_recombination" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:siltstone_raw_slab_recombination" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:siltstone_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/siltstone_raw_slabs_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/siltstone_raw_slabs_to_brick.json index 9b3416887..0dfd226f1 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/siltstone_raw_slabs_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/siltstone_raw_slabs_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:siltstone_raw_slabs_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:siltstone_raw_slabs_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:siltstone_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:siltstone_raw_slabs_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:siltstone_raw_slabs_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:siltstone_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/siltstone_raw_stairs_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/siltstone_raw_stairs_polishing.json index bdb3c586a..8af9f637a 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/siltstone_raw_stairs_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/siltstone_raw_stairs_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:siltstone_raw_stairs_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:siltstone_raw_stairs_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:siltstone_stairs" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:siltstone_raw_stairs_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:siltstone_raw_stairs_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:siltstone_stairs" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/siltstone_raw_stairs_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/siltstone_raw_stairs_to_brick.json index b16fa5117..05acf4b62 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/siltstone_raw_stairs_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/siltstone_raw_stairs_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:siltstone_raw_stairs_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:siltstone_raw_stairs_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:siltstone_stairs" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:siltstone_raw_stairs_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:siltstone_raw_stairs_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:siltstone_stairs" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/siltstone_raw_wall_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/siltstone_raw_wall_polishing.json index af04171a9..18bec4e06 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/siltstone_raw_wall_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/siltstone_raw_wall_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:siltstone_raw_wall_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:siltstone_raw_wall_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:siltstone_wall" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:siltstone_raw_wall_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:siltstone_raw_wall_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:siltstone_wall" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/siltstone_raw_walls_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/siltstone_raw_walls_to_brick.json index 1cf07786c..36243e59c 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/siltstone_raw_walls_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/siltstone_raw_walls_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:siltstone_raw_walls_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:siltstone_raw_walls_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:siltstone_wall" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:siltstone_raw_walls_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:siltstone_raw_walls_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:siltstone_wall" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/siltstone_relief_axe.json b/src/main/resources/data/mineralogy/advancement/recipes/siltstone_relief_axe.json index e2e7a0df8..fbee535df 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/siltstone_relief_axe.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/siltstone_relief_axe.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:siltstone_relief_axe" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:siltstone_relief_axe" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:siltstone_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:siltstone_relief_axe" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:siltstone_relief_axe" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:siltstone_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/siltstone_relief_blank.json b/src/main/resources/data/mineralogy/advancement/recipes/siltstone_relief_blank.json index 80d8fd1e2..23da5f3fd 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/siltstone_relief_blank.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/siltstone_relief_blank.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:siltstone_relief_blank" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:siltstone_relief_blank" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:siltstone_smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:siltstone_relief_blank" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:siltstone_relief_blank" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:siltstone_smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/siltstone_relief_cross.json b/src/main/resources/data/mineralogy/advancement/recipes/siltstone_relief_cross.json index 96f96b7c6..ea6dc883e 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/siltstone_relief_cross.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/siltstone_relief_cross.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:siltstone_relief_cross" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:siltstone_relief_cross" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:siltstone_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:siltstone_relief_cross" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:siltstone_relief_cross" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:siltstone_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/siltstone_relief_hammer.json b/src/main/resources/data/mineralogy/advancement/recipes/siltstone_relief_hammer.json index 1a5961f26..c756142ce 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/siltstone_relief_hammer.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/siltstone_relief_hammer.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:siltstone_relief_hammer" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:siltstone_relief_hammer" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:siltstone_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:siltstone_relief_hammer" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:siltstone_relief_hammer" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:siltstone_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/siltstone_relief_hoe.json b/src/main/resources/data/mineralogy/advancement/recipes/siltstone_relief_hoe.json index 54276fb49..6b6f99ed4 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/siltstone_relief_hoe.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/siltstone_relief_hoe.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:siltstone_relief_hoe" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:siltstone_relief_hoe" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:siltstone_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:siltstone_relief_hoe" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:siltstone_relief_hoe" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:siltstone_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/siltstone_relief_horizontal.json b/src/main/resources/data/mineralogy/advancement/recipes/siltstone_relief_horizontal.json index a0ed28bdd..4ccc4ba5b 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/siltstone_relief_horizontal.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/siltstone_relief_horizontal.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:siltstone_relief_horizontal" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:siltstone_relief_horizontal" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:siltstone_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:siltstone_relief_horizontal" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:siltstone_relief_horizontal" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:siltstone_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/siltstone_relief_i.json b/src/main/resources/data/mineralogy/advancement/recipes/siltstone_relief_i.json index 050b5448c..a49321cb7 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/siltstone_relief_i.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/siltstone_relief_i.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:siltstone_relief_i" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:siltstone_relief_i" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:siltstone_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:siltstone_relief_i" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:siltstone_relief_i" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:siltstone_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/siltstone_relief_left.json b/src/main/resources/data/mineralogy/advancement/recipes/siltstone_relief_left.json index 2122b8f45..89687107b 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/siltstone_relief_left.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/siltstone_relief_left.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:siltstone_relief_left" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:siltstone_relief_left" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:siltstone_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:siltstone_relief_left" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:siltstone_relief_left" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:siltstone_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/siltstone_relief_pickaxe.json b/src/main/resources/data/mineralogy/advancement/recipes/siltstone_relief_pickaxe.json index 498d9f39f..195a3caa1 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/siltstone_relief_pickaxe.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/siltstone_relief_pickaxe.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:siltstone_relief_pickaxe" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:siltstone_relief_pickaxe" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:siltstone_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:siltstone_relief_pickaxe" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:siltstone_relief_pickaxe" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:siltstone_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/siltstone_relief_plus.json b/src/main/resources/data/mineralogy/advancement/recipes/siltstone_relief_plus.json index 6cf0aae6e..15bfcfd7d 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/siltstone_relief_plus.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/siltstone_relief_plus.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:siltstone_relief_plus" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:siltstone_relief_plus" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:siltstone_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:siltstone_relief_plus" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:siltstone_relief_plus" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:siltstone_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/siltstone_relief_right.json b/src/main/resources/data/mineralogy/advancement/recipes/siltstone_relief_right.json index 30f2acb9b..92f3e4584 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/siltstone_relief_right.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/siltstone_relief_right.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:siltstone_relief_right" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:siltstone_relief_right" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:siltstone_relief_left" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:siltstone_relief_right" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:siltstone_relief_right" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:siltstone_relief_left" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/siltstone_relief_sword.json b/src/main/resources/data/mineralogy/advancement/recipes/siltstone_relief_sword.json index c5b060a38..3f2d9b6ed 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/siltstone_relief_sword.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/siltstone_relief_sword.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:siltstone_relief_sword" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:siltstone_relief_sword" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:siltstone_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:siltstone_relief_sword" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:siltstone_relief_sword" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:siltstone_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/siltstone_relief_vertical.json b/src/main/resources/data/mineralogy/advancement/recipes/siltstone_relief_vertical.json index c5ee8ff11..95ef473cf 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/siltstone_relief_vertical.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/siltstone_relief_vertical.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:siltstone_relief_vertical" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:siltstone_relief_vertical" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:siltstone_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:siltstone_relief_vertical" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:siltstone_relief_vertical" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:siltstone_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/siltstone_slab.json b/src/main/resources/data/mineralogy/advancement/recipes/siltstone_slab.json index 3ad5645b9..e1e19c41c 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/siltstone_slab.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/siltstone_slab.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:siltstone_slab" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:siltstone_slab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:siltstone" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:siltstone_slab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:siltstone_slab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:siltstone" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/siltstone_smooth.json b/src/main/resources/data/mineralogy/advancement/recipes/siltstone_smooth.json index 324353a6a..68b4d7296 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/siltstone_smooth.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/siltstone_smooth.json @@ -1,48 +1,46 @@ { - "rewards": { - "recipes": [ - "mineralogy:siltstone_smooth" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:siltstone_smooth" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/siltstone" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:siltstone_smooth" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:siltstone_smooth" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/siltstone" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/siltstone_smooth_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/siltstone_smooth_brick.json index 48a624d05..6e2c256c7 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/siltstone_smooth_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/siltstone_smooth_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:siltstone_smooth_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:siltstone_smooth_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/siltstone/smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:siltstone_smooth_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:siltstone_smooth_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/siltstone/smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/siltstone_smooth_brick_furnace.json b/src/main/resources/data/mineralogy/advancement/recipes/siltstone_smooth_brick_furnace.json index 506c9745d..f38f06320 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/siltstone_smooth_brick_furnace.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/siltstone_smooth_brick_furnace.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:siltstone_smooth_brick_furnace" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:siltstone_smooth_brick_furnace" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:slabs/siltstone/smooth_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:siltstone_smooth_brick_furnace" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:siltstone_smooth_brick_furnace" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:slabs/siltstone/smooth_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/siltstone_smooth_brick_slab.json b/src/main/resources/data/mineralogy/advancement/recipes/siltstone_smooth_brick_slab.json index d1bf16c45..791d68bf7 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/siltstone_smooth_brick_slab.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/siltstone_smooth_brick_slab.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:siltstone_smooth_brick_slab" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:siltstone_smooth_brick_slab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:siltstone_smooth_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:siltstone_smooth_brick_slab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:siltstone_smooth_brick_slab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:siltstone_smooth_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/siltstone_smooth_brick_stairs.json b/src/main/resources/data/mineralogy/advancement/recipes/siltstone_smooth_brick_stairs.json index 9bfedc876..58548d76b 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/siltstone_smooth_brick_stairs.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/siltstone_smooth_brick_stairs.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:siltstone_smooth_brick_stairs" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:siltstone_smooth_brick_stairs" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/siltstone/smooth_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:siltstone_smooth_brick_stairs" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:siltstone_smooth_brick_stairs" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/siltstone/smooth_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/siltstone_smooth_brick_wall.json b/src/main/resources/data/mineralogy/advancement/recipes/siltstone_smooth_brick_wall.json index cd76ad612..ea448fe65 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/siltstone_smooth_brick_wall.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/siltstone_smooth_brick_wall.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:siltstone_smooth_brick_wall" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:siltstone_smooth_brick_wall" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/siltstone/smooth_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:siltstone_smooth_brick_wall" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:siltstone_smooth_brick_wall" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/siltstone/smooth_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/siltstone_smooth_furnace.json b/src/main/resources/data/mineralogy/advancement/recipes/siltstone_smooth_furnace.json index bbdb88953..a07b1edb3 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/siltstone_smooth_furnace.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/siltstone_smooth_furnace.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:siltstone_smooth_furnace" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:siltstone_smooth_furnace" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:slabs/siltstone/smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:siltstone_smooth_furnace" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:siltstone_smooth_furnace" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:slabs/siltstone/smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/siltstone_smooth_slab.json b/src/main/resources/data/mineralogy/advancement/recipes/siltstone_smooth_slab.json index 43c587b3d..3973983b0 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/siltstone_smooth_slab.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/siltstone_smooth_slab.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:siltstone_smooth_slab" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:siltstone_smooth_slab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:siltstone_smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:siltstone_smooth_slab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:siltstone_smooth_slab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:siltstone_smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/siltstone_smooth_stairs.json b/src/main/resources/data/mineralogy/advancement/recipes/siltstone_smooth_stairs.json index bfcb831c8..8a7ec8e03 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/siltstone_smooth_stairs.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/siltstone_smooth_stairs.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:siltstone_smooth_stairs" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:siltstone_smooth_stairs" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/siltstone/smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:siltstone_smooth_stairs" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:siltstone_smooth_stairs" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/siltstone/smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/siltstone_smooth_wall.json b/src/main/resources/data/mineralogy/advancement/recipes/siltstone_smooth_wall.json index 3962b838c..5b83aadf0 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/siltstone_smooth_wall.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/siltstone_smooth_wall.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:siltstone_smooth_wall" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:siltstone_smooth_wall" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/siltstone/smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:siltstone_smooth_wall" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:siltstone_smooth_wall" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/siltstone/smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/siltstone_stairs.json b/src/main/resources/data/mineralogy/advancement/recipes/siltstone_stairs.json index 7ec2137a0..cc7e19f63 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/siltstone_stairs.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/siltstone_stairs.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:siltstone_stairs" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:siltstone_stairs" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/siltstone" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:siltstone_stairs" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:siltstone_stairs" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/siltstone" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/siltstone_to_stone.json b/src/main/resources/data/mineralogy/advancement/recipes/siltstone_to_stone.json index c484cd2ca..c8d79b669 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/siltstone_to_stone.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/siltstone_to_stone.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:siltstone_to_stone" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:siltstone_to_stone" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:siltstone" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:siltstone_to_stone" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:siltstone_to_stone" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:siltstone" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/siltstone_wall.json b/src/main/resources/data/mineralogy/advancement/recipes/siltstone_wall.json index 725e478fd..9e87cdf74 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/siltstone_wall.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/siltstone_wall.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:siltstone_wall" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:siltstone_wall" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/siltstone" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:siltstone_wall" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:siltstone_wall" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/siltstone" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/slate_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/slate_brick.json index e5fec4d34..e2311a49b 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/slate_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/slate_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:slate_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:slate_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/slate" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:slate_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:slate_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/slate" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/slate_brick_block_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/slate_brick_block_polishing.json index 97c472df8..fdb6ecb80 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/slate_brick_block_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/slate_brick_block_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:slate_brick_block_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:slate_brick_block_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:slate_brick" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:slate_brick_block_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:slate_brick_block_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:slate_brick" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/slate_brick_furnace.json b/src/main/resources/data/mineralogy/advancement/recipes/slate_brick_furnace.json index 326581410..c46c24538 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/slate_brick_furnace.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/slate_brick_furnace.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:slate_brick_furnace" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:slate_brick_furnace" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:slabs/slate/brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:slate_brick_furnace" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:slate_brick_furnace" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:slabs/slate/brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/slate_brick_slab.json b/src/main/resources/data/mineralogy/advancement/recipes/slate_brick_slab.json index eeab86216..a705dd331 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/slate_brick_slab.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/slate_brick_slab.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:slate_brick_slab" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:slate_brick_slab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:slate_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:slate_brick_slab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:slate_brick_slab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:slate_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/slate_brick_slab_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/slate_brick_slab_polishing.json index 5043a415b..4ecf2a065 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/slate_brick_slab_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/slate_brick_slab_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:slate_brick_slab_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:slate_brick_slab_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:slate_brick_slab" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:slate_brick_slab_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:slate_brick_slab_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:slate_brick_slab" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/slate_brick_slab_recombination.json b/src/main/resources/data/mineralogy/advancement/recipes/slate_brick_slab_recombination.json index 0d2ac27f0..081eba22e 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/slate_brick_slab_recombination.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/slate_brick_slab_recombination.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:slate_brick_slab_recombination" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:slate_brick_slab_recombination" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:slate_brick_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:slate_brick_slab_recombination" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:slate_brick_slab_recombination" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:slate_brick_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/slate_brick_stairs.json b/src/main/resources/data/mineralogy/advancement/recipes/slate_brick_stairs.json index c542aa960..26d6d0c67 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/slate_brick_stairs.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/slate_brick_stairs.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:slate_brick_stairs" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:slate_brick_stairs" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/slate/brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:slate_brick_stairs" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:slate_brick_stairs" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/slate/brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/slate_brick_stairs_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/slate_brick_stairs_polishing.json index c44b7b320..e44d488aa 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/slate_brick_stairs_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/slate_brick_stairs_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:slate_brick_stairs_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:slate_brick_stairs_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:slate_brick_stairs" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:slate_brick_stairs_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:slate_brick_stairs_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:slate_brick_stairs" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/slate_brick_wall.json b/src/main/resources/data/mineralogy/advancement/recipes/slate_brick_wall.json index aafd06e4e..e11279b82 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/slate_brick_wall.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/slate_brick_wall.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:slate_brick_wall" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:slate_brick_wall" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/slate/brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:slate_brick_wall" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:slate_brick_wall" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/slate/brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/slate_brick_wall_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/slate_brick_wall_polishing.json index 62bf8f313..da7ae98ca 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/slate_brick_wall_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/slate_brick_wall_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:slate_brick_wall_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:slate_brick_wall_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:slate_brick_wall" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:slate_brick_wall_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:slate_brick_wall_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:slate_brick_wall" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/slate_cobblestone.json b/src/main/resources/data/mineralogy/advancement/recipes/slate_cobblestone.json index 99f52e928..8950ce346 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/slate_cobblestone.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/slate_cobblestone.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:slate_cobblestone" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:slate_cobblestone" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/slate" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:slate_cobblestone" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:slate_cobblestone" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/slate" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/slate_furnace.json b/src/main/resources/data/mineralogy/advancement/recipes/slate_furnace.json index 0973a4c81..6f52eb4fa 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/slate_furnace.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/slate_furnace.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:slate_furnace" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:slate_furnace" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:slabs/slate" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:slate_furnace" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:slate_furnace" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:slabs/slate" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/slate_polished_brick_slab_recombination.json b/src/main/resources/data/mineralogy/advancement/recipes/slate_polished_brick_slab_recombination.json index 34b8698f9..b3143b115 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/slate_polished_brick_slab_recombination.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/slate_polished_brick_slab_recombination.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:slate_polished_brick_slab_recombination" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:slate_polished_brick_slab_recombination" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:slate_smooth_brick_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:slate_polished_brick_slab_recombination" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:slate_polished_brick_slab_recombination" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:slate_smooth_brick_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/slate_polished_slab_recombination.json b/src/main/resources/data/mineralogy/advancement/recipes/slate_polished_slab_recombination.json index 1d6d712fd..fe1c4b35b 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/slate_polished_slab_recombination.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/slate_polished_slab_recombination.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:slate_polished_slab_recombination" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:slate_polished_slab_recombination" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:slate_smooth_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:slate_polished_slab_recombination" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:slate_polished_slab_recombination" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:slate_smooth_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/slate_polished_slabs_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/slate_polished_slabs_to_brick.json index 69ca0108e..e9e509739 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/slate_polished_slabs_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/slate_polished_slabs_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:slate_polished_slabs_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:slate_polished_slabs_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:slate_smooth_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:slate_polished_slabs_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:slate_polished_slabs_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:slate_smooth_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/slate_polished_stairs_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/slate_polished_stairs_to_brick.json index 704d14c52..b70c155e8 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/slate_polished_stairs_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/slate_polished_stairs_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:slate_polished_stairs_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:slate_polished_stairs_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:slate_smooth_stairs" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:slate_polished_stairs_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:slate_polished_stairs_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:slate_smooth_stairs" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/slate_polished_walls_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/slate_polished_walls_to_brick.json index 505eba7bc..138ec0d87 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/slate_polished_walls_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/slate_polished_walls_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:slate_polished_walls_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:slate_polished_walls_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:slate_smooth_wall" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:slate_polished_walls_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:slate_polished_walls_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:slate_smooth_wall" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/slate_raw_slab_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/slate_raw_slab_polishing.json index 2e05cf18f..e59143f1b 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/slate_raw_slab_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/slate_raw_slab_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:slate_raw_slab_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:slate_raw_slab_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:slate_slab" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:slate_raw_slab_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:slate_raw_slab_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:slate_slab" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/slate_raw_slab_recombination.json b/src/main/resources/data/mineralogy/advancement/recipes/slate_raw_slab_recombination.json index 5ce84809a..6b035e593 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/slate_raw_slab_recombination.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/slate_raw_slab_recombination.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:slate_raw_slab_recombination" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:slate_raw_slab_recombination" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:slate_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:slate_raw_slab_recombination" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:slate_raw_slab_recombination" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:slate_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/slate_raw_slabs_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/slate_raw_slabs_to_brick.json index 85f1ee307..7e6c34086 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/slate_raw_slabs_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/slate_raw_slabs_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:slate_raw_slabs_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:slate_raw_slabs_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:slate_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:slate_raw_slabs_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:slate_raw_slabs_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:slate_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/slate_raw_stairs_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/slate_raw_stairs_polishing.json index 2bc2de2a4..74159ed1e 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/slate_raw_stairs_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/slate_raw_stairs_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:slate_raw_stairs_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:slate_raw_stairs_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:slate_stairs" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:slate_raw_stairs_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:slate_raw_stairs_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:slate_stairs" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/slate_raw_stairs_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/slate_raw_stairs_to_brick.json index 6cd9a9172..b6945b55a 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/slate_raw_stairs_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/slate_raw_stairs_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:slate_raw_stairs_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:slate_raw_stairs_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:slate_stairs" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:slate_raw_stairs_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:slate_raw_stairs_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:slate_stairs" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/slate_raw_wall_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/slate_raw_wall_polishing.json index c6cac6240..f3d6aeb75 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/slate_raw_wall_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/slate_raw_wall_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:slate_raw_wall_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:slate_raw_wall_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:slate_wall" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:slate_raw_wall_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:slate_raw_wall_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:slate_wall" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/slate_raw_walls_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/slate_raw_walls_to_brick.json index 22d2ccdd1..bd9640a4e 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/slate_raw_walls_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/slate_raw_walls_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:slate_raw_walls_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:slate_raw_walls_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:slate_wall" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:slate_raw_walls_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:slate_raw_walls_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:slate_wall" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/slate_relief_axe.json b/src/main/resources/data/mineralogy/advancement/recipes/slate_relief_axe.json index 0e866b472..06bbf4698 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/slate_relief_axe.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/slate_relief_axe.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:slate_relief_axe" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:slate_relief_axe" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:slate_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:slate_relief_axe" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:slate_relief_axe" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:slate_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/slate_relief_blank.json b/src/main/resources/data/mineralogy/advancement/recipes/slate_relief_blank.json index a2d36d6c9..bdf90d850 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/slate_relief_blank.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/slate_relief_blank.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:slate_relief_blank" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:slate_relief_blank" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:slate_smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:slate_relief_blank" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:slate_relief_blank" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:slate_smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/slate_relief_cross.json b/src/main/resources/data/mineralogy/advancement/recipes/slate_relief_cross.json index c7ac256ff..6a8b91a2d 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/slate_relief_cross.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/slate_relief_cross.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:slate_relief_cross" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:slate_relief_cross" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:slate_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:slate_relief_cross" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:slate_relief_cross" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:slate_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/slate_relief_hammer.json b/src/main/resources/data/mineralogy/advancement/recipes/slate_relief_hammer.json index 2649fbcd3..c060e6954 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/slate_relief_hammer.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/slate_relief_hammer.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:slate_relief_hammer" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:slate_relief_hammer" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:slate_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:slate_relief_hammer" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:slate_relief_hammer" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:slate_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/slate_relief_hoe.json b/src/main/resources/data/mineralogy/advancement/recipes/slate_relief_hoe.json index 53ffc3ab6..f24e90e1e 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/slate_relief_hoe.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/slate_relief_hoe.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:slate_relief_hoe" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:slate_relief_hoe" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:slate_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:slate_relief_hoe" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:slate_relief_hoe" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:slate_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/slate_relief_horizontal.json b/src/main/resources/data/mineralogy/advancement/recipes/slate_relief_horizontal.json index 2c347e153..f688d36aa 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/slate_relief_horizontal.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/slate_relief_horizontal.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:slate_relief_horizontal" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:slate_relief_horizontal" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:slate_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:slate_relief_horizontal" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:slate_relief_horizontal" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:slate_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/slate_relief_i.json b/src/main/resources/data/mineralogy/advancement/recipes/slate_relief_i.json index b072221e4..20f3d0cb6 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/slate_relief_i.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/slate_relief_i.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:slate_relief_i" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:slate_relief_i" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:slate_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:slate_relief_i" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:slate_relief_i" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:slate_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/slate_relief_left.json b/src/main/resources/data/mineralogy/advancement/recipes/slate_relief_left.json index 16bac79ad..a6ce7fd2a 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/slate_relief_left.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/slate_relief_left.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:slate_relief_left" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:slate_relief_left" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:slate_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:slate_relief_left" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:slate_relief_left" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:slate_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/slate_relief_pickaxe.json b/src/main/resources/data/mineralogy/advancement/recipes/slate_relief_pickaxe.json index eb3a08600..7039403e2 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/slate_relief_pickaxe.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/slate_relief_pickaxe.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:slate_relief_pickaxe" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:slate_relief_pickaxe" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:slate_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:slate_relief_pickaxe" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:slate_relief_pickaxe" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:slate_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/slate_relief_plus.json b/src/main/resources/data/mineralogy/advancement/recipes/slate_relief_plus.json index b83e92a44..5db141ca6 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/slate_relief_plus.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/slate_relief_plus.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:slate_relief_plus" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:slate_relief_plus" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:slate_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:slate_relief_plus" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:slate_relief_plus" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:slate_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/slate_relief_right.json b/src/main/resources/data/mineralogy/advancement/recipes/slate_relief_right.json index 089cbc0eb..7ac9b6f17 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/slate_relief_right.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/slate_relief_right.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:slate_relief_right" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:slate_relief_right" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:slate_relief_left" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:slate_relief_right" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:slate_relief_right" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:slate_relief_left" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/slate_relief_sword.json b/src/main/resources/data/mineralogy/advancement/recipes/slate_relief_sword.json index d92bcae59..094912948 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/slate_relief_sword.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/slate_relief_sword.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:slate_relief_sword" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:slate_relief_sword" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:slate_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:slate_relief_sword" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:slate_relief_sword" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:slate_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/slate_relief_vertical.json b/src/main/resources/data/mineralogy/advancement/recipes/slate_relief_vertical.json index 8e3bab314..2a39e3c5e 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/slate_relief_vertical.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/slate_relief_vertical.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:slate_relief_vertical" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:slate_relief_vertical" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:slate_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:slate_relief_vertical" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:slate_relief_vertical" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:slate_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/slate_slab.json b/src/main/resources/data/mineralogy/advancement/recipes/slate_slab.json index 04f2ff093..25d45f91c 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/slate_slab.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/slate_slab.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:slate_slab" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:slate_slab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:slate" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:slate_slab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:slate_slab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:slate" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/slate_smooth.json b/src/main/resources/data/mineralogy/advancement/recipes/slate_smooth.json index af91e7c83..086f79fca 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/slate_smooth.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/slate_smooth.json @@ -1,48 +1,46 @@ { - "rewards": { - "recipes": [ - "mineralogy:slate_smooth" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:slate_smooth" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/slate" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:slate_smooth" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:slate_smooth" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/slate" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/slate_smooth_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/slate_smooth_brick.json index beca7745d..0c22ac7ec 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/slate_smooth_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/slate_smooth_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:slate_smooth_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:slate_smooth_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/slate/smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:slate_smooth_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:slate_smooth_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/slate/smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/slate_smooth_brick_furnace.json b/src/main/resources/data/mineralogy/advancement/recipes/slate_smooth_brick_furnace.json index 48fa5034f..c50562f58 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/slate_smooth_brick_furnace.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/slate_smooth_brick_furnace.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:slate_smooth_brick_furnace" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:slate_smooth_brick_furnace" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:slabs/slate/smooth_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:slate_smooth_brick_furnace" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:slate_smooth_brick_furnace" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:slabs/slate/smooth_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/slate_smooth_brick_slab.json b/src/main/resources/data/mineralogy/advancement/recipes/slate_smooth_brick_slab.json index 1aff3c02a..26a345f5f 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/slate_smooth_brick_slab.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/slate_smooth_brick_slab.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:slate_smooth_brick_slab" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:slate_smooth_brick_slab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:slate_smooth_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:slate_smooth_brick_slab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:slate_smooth_brick_slab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:slate_smooth_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/slate_smooth_brick_stairs.json b/src/main/resources/data/mineralogy/advancement/recipes/slate_smooth_brick_stairs.json index 3cc75846e..82970ed14 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/slate_smooth_brick_stairs.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/slate_smooth_brick_stairs.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:slate_smooth_brick_stairs" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:slate_smooth_brick_stairs" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/slate/smooth_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:slate_smooth_brick_stairs" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:slate_smooth_brick_stairs" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/slate/smooth_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/slate_smooth_brick_wall.json b/src/main/resources/data/mineralogy/advancement/recipes/slate_smooth_brick_wall.json index 65ce4b942..349cb78ac 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/slate_smooth_brick_wall.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/slate_smooth_brick_wall.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:slate_smooth_brick_wall" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:slate_smooth_brick_wall" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/slate/smooth_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:slate_smooth_brick_wall" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:slate_smooth_brick_wall" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/slate/smooth_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/slate_smooth_furnace.json b/src/main/resources/data/mineralogy/advancement/recipes/slate_smooth_furnace.json index 2158f4ef2..36a963cc7 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/slate_smooth_furnace.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/slate_smooth_furnace.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:slate_smooth_furnace" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:slate_smooth_furnace" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:slabs/slate/smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:slate_smooth_furnace" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:slate_smooth_furnace" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:slabs/slate/smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/slate_smooth_slab.json b/src/main/resources/data/mineralogy/advancement/recipes/slate_smooth_slab.json index 2c4395b69..08e66e98c 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/slate_smooth_slab.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/slate_smooth_slab.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:slate_smooth_slab" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:slate_smooth_slab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:slate_smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:slate_smooth_slab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:slate_smooth_slab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:slate_smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/slate_smooth_stairs.json b/src/main/resources/data/mineralogy/advancement/recipes/slate_smooth_stairs.json index e239ff2b2..edbe5adc1 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/slate_smooth_stairs.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/slate_smooth_stairs.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:slate_smooth_stairs" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:slate_smooth_stairs" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/slate/smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:slate_smooth_stairs" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:slate_smooth_stairs" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/slate/smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/slate_smooth_wall.json b/src/main/resources/data/mineralogy/advancement/recipes/slate_smooth_wall.json index 1d9979518..61690d2db 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/slate_smooth_wall.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/slate_smooth_wall.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:slate_smooth_wall" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:slate_smooth_wall" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/slate/smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:slate_smooth_wall" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:slate_smooth_wall" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/slate/smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/slate_stairs.json b/src/main/resources/data/mineralogy/advancement/recipes/slate_stairs.json index 20db83cf8..4019938fb 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/slate_stairs.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/slate_stairs.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:slate_stairs" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:slate_stairs" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/slate" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:slate_stairs" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:slate_stairs" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/slate" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/slate_to_stone.json b/src/main/resources/data/mineralogy/advancement/recipes/slate_to_stone.json index c87b12ae8..9b457d186 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/slate_to_stone.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/slate_to_stone.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:slate_to_stone" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:slate_to_stone" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:slate" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:slate_to_stone" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:slate_to_stone" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:slate" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/slate_wall.json b/src/main/resources/data/mineralogy/advancement/recipes/slate_wall.json index a39d09c46..3ad1d6bb6 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/slate_wall.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/slate_wall.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:slate_wall" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:slate_wall" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/slate" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:slate_wall" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:slate_wall" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/slate" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/sulfur_block.json b/src/main/resources/data/mineralogy/advancement/recipes/sulfur_block.json index 5d0c3e96f..a0fbee648 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/sulfur_block.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/sulfur_block.json @@ -1,38 +1,38 @@ { - "neoforge:conditions": [ - { - "type": "mineralogy:config", - "flag": "ENABLE_MINERAL_DUSTS" - } - ], - "rewards": { - "recipes": [ - "mineralogy:sulfur_block" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:sulfur_block" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:sulfur_dust" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "neoforge:conditions": [ + { + "type": "mineralogy:config", + "flag": "ENABLE_MINERAL_DUSTS" + } + ], + "rewards": { + "recipes": [ + "mineralogy:sulfur_block" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:sulfur_block" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:sulfur_dust" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/sulfur_dust.json b/src/main/resources/data/mineralogy/advancement/recipes/sulfur_dust.json index c8b9de8c5..115a4a845 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/sulfur_dust.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/sulfur_dust.json @@ -1,38 +1,38 @@ { - "neoforge:conditions": [ - { - "type": "mineralogy:config", - "flag": "ENABLE_MINERAL_DUSTS" - } - ], - "rewards": { - "recipes": [ - "mineralogy:sulfur_dust" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:sulfur_dust" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:sulfur_block" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "neoforge:conditions": [ + { + "type": "mineralogy:config", + "flag": "ENABLE_MINERAL_DUSTS" + } + ], + "rewards": { + "recipes": [ + "mineralogy:sulfur_dust" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:sulfur_dust" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:sulfur_block" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/tuff_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/tuff_brick.json index a69f0f65c..b5cde0231 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/tuff_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/tuff_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:tuff_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:tuff_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/tuff" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:tuff_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:tuff_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/tuff" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/tuff_brick_block_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/tuff_brick_block_polishing.json index 3ae2c3d42..e5e04e0a3 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/tuff_brick_block_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/tuff_brick_block_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:tuff_brick_block_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:tuff_brick_block_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:tuff_brick" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:tuff_brick_block_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:tuff_brick_block_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:tuff_brick" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/tuff_brick_furnace.json b/src/main/resources/data/mineralogy/advancement/recipes/tuff_brick_furnace.json index 809616e4e..315a1363c 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/tuff_brick_furnace.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/tuff_brick_furnace.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:tuff_brick_furnace" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:tuff_brick_furnace" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:slabs/tuff/brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:tuff_brick_furnace" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:tuff_brick_furnace" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:slabs/tuff/brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/tuff_brick_slab.json b/src/main/resources/data/mineralogy/advancement/recipes/tuff_brick_slab.json index 2bce1b0e9..3c82b86ed 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/tuff_brick_slab.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/tuff_brick_slab.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:tuff_brick_slab" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:tuff_brick_slab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:tuff_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:tuff_brick_slab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:tuff_brick_slab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:tuff_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/tuff_brick_slab_from_vanilla.json b/src/main/resources/data/mineralogy/advancement/recipes/tuff_brick_slab_from_vanilla.json index 42574e18d..ced4046c2 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/tuff_brick_slab_from_vanilla.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/tuff_brick_slab_from_vanilla.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:tuff_brick_slab_from_vanilla" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:tuff_brick_slab_from_vanilla" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "minecraft:tuff_brick_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:tuff_brick_slab_from_vanilla" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:tuff_brick_slab_from_vanilla" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:tuff_brick_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/tuff_brick_slab_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/tuff_brick_slab_polishing.json index 6000a7a96..c82879910 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/tuff_brick_slab_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/tuff_brick_slab_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:tuff_brick_slab_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:tuff_brick_slab_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:tuff_brick_slab" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:tuff_brick_slab_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:tuff_brick_slab_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:tuff_brick_slab" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/tuff_brick_slab_recombination.json b/src/main/resources/data/mineralogy/advancement/recipes/tuff_brick_slab_recombination.json index 965e032aa..00f39494a 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/tuff_brick_slab_recombination.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/tuff_brick_slab_recombination.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:tuff_brick_slab_recombination" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:tuff_brick_slab_recombination" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:tuff_brick_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:tuff_brick_slab_recombination" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:tuff_brick_slab_recombination" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:tuff_brick_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/tuff_brick_slab_to_vanilla.json b/src/main/resources/data/mineralogy/advancement/recipes/tuff_brick_slab_to_vanilla.json index d54961d2b..5292f3f37 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/tuff_brick_slab_to_vanilla.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/tuff_brick_slab_to_vanilla.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:tuff_brick_slab_to_vanilla" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:tuff_brick_slab_to_vanilla" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:tuff_brick_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:tuff_brick_slab_to_vanilla" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:tuff_brick_slab_to_vanilla" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:tuff_brick_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/tuff_brick_stairs.json b/src/main/resources/data/mineralogy/advancement/recipes/tuff_brick_stairs.json index 3b78a2883..46d861a81 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/tuff_brick_stairs.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/tuff_brick_stairs.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:tuff_brick_stairs" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:tuff_brick_stairs" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:tuff_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:tuff_brick_stairs" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:tuff_brick_stairs" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:tuff_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/tuff_brick_stairs_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/tuff_brick_stairs_polishing.json index 76def8553..e6669911e 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/tuff_brick_stairs_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/tuff_brick_stairs_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:tuff_brick_stairs_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:tuff_brick_stairs_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:tuff_brick_stairs" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:tuff_brick_stairs_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:tuff_brick_stairs_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:tuff_brick_stairs" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/tuff_brick_wall.json b/src/main/resources/data/mineralogy/advancement/recipes/tuff_brick_wall.json index e897d796b..9b2100154 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/tuff_brick_wall.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/tuff_brick_wall.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:tuff_brick_wall" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:tuff_brick_wall" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:tuff_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:tuff_brick_wall" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:tuff_brick_wall" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:tuff_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/tuff_brick_wall_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/tuff_brick_wall_polishing.json index d74531259..6c62494e0 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/tuff_brick_wall_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/tuff_brick_wall_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:tuff_brick_wall_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:tuff_brick_wall_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:tuff_brick_wall" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:tuff_brick_wall_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:tuff_brick_wall_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:tuff_brick_wall" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/tuff_cobblestone.json b/src/main/resources/data/mineralogy/advancement/recipes/tuff_cobblestone.json index d7b2a7249..24b6cc9e7 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/tuff_cobblestone.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/tuff_cobblestone.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:tuff_cobblestone" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:tuff_cobblestone" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/tuff" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:tuff_cobblestone" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:tuff_cobblestone" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/tuff" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/tuff_furnace.json b/src/main/resources/data/mineralogy/advancement/recipes/tuff_furnace.json index 73dcb2005..6501ecb8b 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/tuff_furnace.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/tuff_furnace.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:tuff_furnace" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:tuff_furnace" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:slabs/tuff" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:tuff_furnace" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:tuff_furnace" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:slabs/tuff" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/tuff_polished_brick_slab_recombination.json b/src/main/resources/data/mineralogy/advancement/recipes/tuff_polished_brick_slab_recombination.json index 83835c4d7..9dfe1c47b 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/tuff_polished_brick_slab_recombination.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/tuff_polished_brick_slab_recombination.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:tuff_polished_brick_slab_recombination" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:tuff_polished_brick_slab_recombination" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:tuff_smooth_brick_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:tuff_polished_brick_slab_recombination" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:tuff_polished_brick_slab_recombination" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:tuff_smooth_brick_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/tuff_polished_slab_recombination.json b/src/main/resources/data/mineralogy/advancement/recipes/tuff_polished_slab_recombination.json index 1d6d9cbc5..82370c4bc 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/tuff_polished_slab_recombination.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/tuff_polished_slab_recombination.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:tuff_polished_slab_recombination" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:tuff_polished_slab_recombination" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:tuff_smooth_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:tuff_polished_slab_recombination" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:tuff_polished_slab_recombination" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:tuff_smooth_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/tuff_polished_slabs_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/tuff_polished_slabs_to_brick.json index 5e7dbda8a..9cd954069 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/tuff_polished_slabs_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/tuff_polished_slabs_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:tuff_polished_slabs_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:tuff_polished_slabs_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:tuff_smooth_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:tuff_polished_slabs_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:tuff_polished_slabs_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:tuff_smooth_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/tuff_polished_stairs_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/tuff_polished_stairs_to_brick.json index 8ad578b65..1a7a8fca6 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/tuff_polished_stairs_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/tuff_polished_stairs_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:tuff_polished_stairs_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:tuff_polished_stairs_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:tuff_smooth_stairs" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:tuff_polished_stairs_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:tuff_polished_stairs_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:tuff_smooth_stairs" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/tuff_polished_walls_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/tuff_polished_walls_to_brick.json index d5c0480ff..b9d285c8e 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/tuff_polished_walls_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/tuff_polished_walls_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:tuff_polished_walls_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:tuff_polished_walls_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:tuff_smooth_wall" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:tuff_polished_walls_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:tuff_polished_walls_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:tuff_smooth_wall" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/tuff_raw_slab_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/tuff_raw_slab_polishing.json index 09aca9fb0..df3cee0bf 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/tuff_raw_slab_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/tuff_raw_slab_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:tuff_raw_slab_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:tuff_raw_slab_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:tuff_slab" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:tuff_raw_slab_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:tuff_raw_slab_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:tuff_slab" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/tuff_raw_slab_recombination.json b/src/main/resources/data/mineralogy/advancement/recipes/tuff_raw_slab_recombination.json index 0698c8246..2107ee6d7 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/tuff_raw_slab_recombination.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/tuff_raw_slab_recombination.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:tuff_raw_slab_recombination" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:tuff_raw_slab_recombination" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:tuff_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:tuff_raw_slab_recombination" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:tuff_raw_slab_recombination" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:tuff_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/tuff_raw_slabs_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/tuff_raw_slabs_to_brick.json index 0a50b84ca..a4e963ff5 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/tuff_raw_slabs_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/tuff_raw_slabs_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:tuff_raw_slabs_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:tuff_raw_slabs_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:tuff_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:tuff_raw_slabs_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:tuff_raw_slabs_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:tuff_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/tuff_raw_stairs_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/tuff_raw_stairs_polishing.json index 9a6fde213..e44a91139 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/tuff_raw_stairs_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/tuff_raw_stairs_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:tuff_raw_stairs_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:tuff_raw_stairs_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:tuff_stairs" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:tuff_raw_stairs_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:tuff_raw_stairs_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:tuff_stairs" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/tuff_raw_stairs_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/tuff_raw_stairs_to_brick.json index b2e30f3ea..46cd8a893 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/tuff_raw_stairs_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/tuff_raw_stairs_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:tuff_raw_stairs_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:tuff_raw_stairs_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:tuff_stairs" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:tuff_raw_stairs_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:tuff_raw_stairs_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:tuff_stairs" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/tuff_raw_wall_polishing.json b/src/main/resources/data/mineralogy/advancement/recipes/tuff_raw_wall_polishing.json index 56524a38e..7f51ed1eb 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/tuff_raw_wall_polishing.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/tuff_raw_wall_polishing.json @@ -1,61 +1,57 @@ { - "rewards": { - "recipes": [ - "mineralogy:tuff_raw_wall_polishing" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:tuff_raw_wall_polishing" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:tuff_wall" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_red_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:red_sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand", - "has_red_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:tuff_raw_wall_polishing" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:tuff_raw_wall_polishing" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:tuff_wall" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + }, + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand", + "has_red_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/tuff_raw_walls_to_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/tuff_raw_walls_to_brick.json index 1059f5cc2..1a3257bca 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/tuff_raw_walls_to_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/tuff_raw_walls_to_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:tuff_raw_walls_to_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:tuff_raw_walls_to_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:tuff_wall" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:tuff_raw_walls_to_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:tuff_raw_walls_to_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:tuff_wall" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/tuff_relief_axe.json b/src/main/resources/data/mineralogy/advancement/recipes/tuff_relief_axe.json index 1ffc64054..779df8034 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/tuff_relief_axe.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/tuff_relief_axe.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:tuff_relief_axe" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:tuff_relief_axe" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:tuff_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:tuff_relief_axe" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:tuff_relief_axe" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:tuff_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/tuff_relief_blank.json b/src/main/resources/data/mineralogy/advancement/recipes/tuff_relief_blank.json index 7b75a499f..2032875a2 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/tuff_relief_blank.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/tuff_relief_blank.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:tuff_relief_blank" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:tuff_relief_blank" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/tuff/smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:tuff_relief_blank" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:tuff_relief_blank" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/tuff/smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/tuff_relief_cross.json b/src/main/resources/data/mineralogy/advancement/recipes/tuff_relief_cross.json index fdd4952c9..1aacec9d0 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/tuff_relief_cross.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/tuff_relief_cross.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:tuff_relief_cross" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:tuff_relief_cross" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:tuff_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:tuff_relief_cross" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:tuff_relief_cross" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:tuff_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/tuff_relief_hammer.json b/src/main/resources/data/mineralogy/advancement/recipes/tuff_relief_hammer.json index 01813ec90..2f214ed72 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/tuff_relief_hammer.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/tuff_relief_hammer.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:tuff_relief_hammer" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:tuff_relief_hammer" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:tuff_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:tuff_relief_hammer" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:tuff_relief_hammer" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:tuff_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/tuff_relief_hoe.json b/src/main/resources/data/mineralogy/advancement/recipes/tuff_relief_hoe.json index fafb1dc0e..4523fc20e 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/tuff_relief_hoe.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/tuff_relief_hoe.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:tuff_relief_hoe" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:tuff_relief_hoe" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:tuff_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:tuff_relief_hoe" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:tuff_relief_hoe" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:tuff_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/tuff_relief_horizontal.json b/src/main/resources/data/mineralogy/advancement/recipes/tuff_relief_horizontal.json index 468188bcd..79146bb64 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/tuff_relief_horizontal.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/tuff_relief_horizontal.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:tuff_relief_horizontal" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:tuff_relief_horizontal" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:tuff_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:tuff_relief_horizontal" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:tuff_relief_horizontal" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:tuff_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/tuff_relief_i.json b/src/main/resources/data/mineralogy/advancement/recipes/tuff_relief_i.json index e22b88e43..7caf0cd8d 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/tuff_relief_i.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/tuff_relief_i.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:tuff_relief_i" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:tuff_relief_i" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:tuff_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:tuff_relief_i" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:tuff_relief_i" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:tuff_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/tuff_relief_left.json b/src/main/resources/data/mineralogy/advancement/recipes/tuff_relief_left.json index b7ab95ff3..09228eef5 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/tuff_relief_left.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/tuff_relief_left.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:tuff_relief_left" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:tuff_relief_left" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:tuff_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:tuff_relief_left" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:tuff_relief_left" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:tuff_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/tuff_relief_pickaxe.json b/src/main/resources/data/mineralogy/advancement/recipes/tuff_relief_pickaxe.json index 838226af3..d6303781b 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/tuff_relief_pickaxe.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/tuff_relief_pickaxe.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:tuff_relief_pickaxe" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:tuff_relief_pickaxe" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:tuff_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:tuff_relief_pickaxe" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:tuff_relief_pickaxe" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:tuff_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/tuff_relief_plus.json b/src/main/resources/data/mineralogy/advancement/recipes/tuff_relief_plus.json index 9bddb82aa..4e3e30aff 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/tuff_relief_plus.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/tuff_relief_plus.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:tuff_relief_plus" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:tuff_relief_plus" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:tuff_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:tuff_relief_plus" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:tuff_relief_plus" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:tuff_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/tuff_relief_right.json b/src/main/resources/data/mineralogy/advancement/recipes/tuff_relief_right.json index 444be2c2b..68be2ef6f 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/tuff_relief_right.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/tuff_relief_right.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:tuff_relief_right" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:tuff_relief_right" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:tuff_relief_left" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:tuff_relief_right" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:tuff_relief_right" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:tuff_relief_left" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/tuff_relief_sword.json b/src/main/resources/data/mineralogy/advancement/recipes/tuff_relief_sword.json index 786183fec..f291a6e10 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/tuff_relief_sword.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/tuff_relief_sword.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:tuff_relief_sword" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:tuff_relief_sword" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:tuff_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:tuff_relief_sword" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:tuff_relief_sword" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:tuff_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/tuff_relief_vertical.json b/src/main/resources/data/mineralogy/advancement/recipes/tuff_relief_vertical.json index e52939ef4..2bbbf037d 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/tuff_relief_vertical.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/tuff_relief_vertical.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:tuff_relief_vertical" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:tuff_relief_vertical" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:tuff_relief_blank" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:tuff_relief_vertical" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:tuff_relief_vertical" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:tuff_relief_blank" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/tuff_slab.json b/src/main/resources/data/mineralogy/advancement/recipes/tuff_slab.json index 51b337502..abc45d13a 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/tuff_slab.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/tuff_slab.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:tuff_slab" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:tuff_slab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:tuff" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:tuff_slab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:tuff_slab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:tuff" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/tuff_slab_from_vanilla.json b/src/main/resources/data/mineralogy/advancement/recipes/tuff_slab_from_vanilla.json index 2539e5bf2..6633529ef 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/tuff_slab_from_vanilla.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/tuff_slab_from_vanilla.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:tuff_slab_from_vanilla" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:tuff_slab_from_vanilla" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "minecraft:tuff_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:tuff_slab_from_vanilla" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:tuff_slab_from_vanilla" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:tuff_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/tuff_slab_to_vanilla.json b/src/main/resources/data/mineralogy/advancement/recipes/tuff_slab_to_vanilla.json index 1c33ea31b..4d905243f 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/tuff_slab_to_vanilla.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/tuff_slab_to_vanilla.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:tuff_slab_to_vanilla" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:tuff_slab_to_vanilla" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:tuff_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:tuff_slab_to_vanilla" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:tuff_slab_to_vanilla" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:tuff_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/tuff_smooth.json b/src/main/resources/data/mineralogy/advancement/recipes/tuff_smooth.json index 13c058313..5ae5a161e 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/tuff_smooth.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/tuff_smooth.json @@ -1,48 +1,46 @@ { - "rewards": { - "recipes": [ - "mineralogy:tuff_smooth" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:tuff_smooth" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:tuff" - } - ] - } - }, - "has_sand": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ], - [ - "has_the_recipe", - "has_sand" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:tuff_smooth" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:tuff_smooth" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:tuff" + } + ] + } + }, + "has_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ], + [ + "has_the_recipe", + "has_sand" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/tuff_smooth_brick.json b/src/main/resources/data/mineralogy/advancement/recipes/tuff_smooth_brick.json index d4335a092..b95f626a4 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/tuff_smooth_brick.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/tuff_smooth_brick.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:tuff_smooth_brick" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:tuff_smooth_brick" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:tuff_smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:tuff_smooth_brick" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:tuff_smooth_brick" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:tuff_smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/tuff_smooth_brick_furnace.json b/src/main/resources/data/mineralogy/advancement/recipes/tuff_smooth_brick_furnace.json index 9ef2e9153..3d7419b5b 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/tuff_smooth_brick_furnace.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/tuff_smooth_brick_furnace.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:tuff_smooth_brick_furnace" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:tuff_smooth_brick_furnace" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:slabs/tuff/smooth_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:tuff_smooth_brick_furnace" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:tuff_smooth_brick_furnace" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:slabs/tuff/smooth_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/tuff_smooth_brick_slab.json b/src/main/resources/data/mineralogy/advancement/recipes/tuff_smooth_brick_slab.json index 2ca1cffa1..17c1756a1 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/tuff_smooth_brick_slab.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/tuff_smooth_brick_slab.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:tuff_smooth_brick_slab" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:tuff_smooth_brick_slab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:tuff_smooth_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:tuff_smooth_brick_slab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:tuff_smooth_brick_slab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:tuff_smooth_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/tuff_smooth_brick_stairs.json b/src/main/resources/data/mineralogy/advancement/recipes/tuff_smooth_brick_stairs.json index 5958af177..363d02c19 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/tuff_smooth_brick_stairs.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/tuff_smooth_brick_stairs.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:tuff_smooth_brick_stairs" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:tuff_smooth_brick_stairs" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/tuff/smooth_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:tuff_smooth_brick_stairs" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:tuff_smooth_brick_stairs" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/tuff/smooth_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/tuff_smooth_brick_wall.json b/src/main/resources/data/mineralogy/advancement/recipes/tuff_smooth_brick_wall.json index de82d2a8b..f44505322 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/tuff_smooth_brick_wall.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/tuff_smooth_brick_wall.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:tuff_smooth_brick_wall" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:tuff_smooth_brick_wall" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:stones/tuff/smooth_brick" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:tuff_smooth_brick_wall" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:tuff_smooth_brick_wall" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:stones/tuff/smooth_brick" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/tuff_smooth_furnace.json b/src/main/resources/data/mineralogy/advancement/recipes/tuff_smooth_furnace.json index 122529ff6..df649753d 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/tuff_smooth_furnace.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/tuff_smooth_furnace.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:tuff_smooth_furnace" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:tuff_smooth_furnace" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "#mineralogy:slabs/tuff/smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:tuff_smooth_furnace" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:tuff_smooth_furnace" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "#mineralogy:slabs/tuff/smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/tuff_smooth_slab.json b/src/main/resources/data/mineralogy/advancement/recipes/tuff_smooth_slab.json index 5ab681668..806f40a43 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/tuff_smooth_slab.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/tuff_smooth_slab.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:tuff_smooth_slab" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:tuff_smooth_slab" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:tuff_smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:tuff_smooth_slab" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:tuff_smooth_slab" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:tuff_smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/tuff_smooth_slab_from_vanilla.json b/src/main/resources/data/mineralogy/advancement/recipes/tuff_smooth_slab_from_vanilla.json index 25104a370..1080819be 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/tuff_smooth_slab_from_vanilla.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/tuff_smooth_slab_from_vanilla.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:tuff_smooth_slab_from_vanilla" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:tuff_smooth_slab_from_vanilla" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "minecraft:polished_tuff_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:tuff_smooth_slab_from_vanilla" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:tuff_smooth_slab_from_vanilla" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "minecraft:polished_tuff_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/tuff_smooth_slab_to_vanilla.json b/src/main/resources/data/mineralogy/advancement/recipes/tuff_smooth_slab_to_vanilla.json index 2acf5df1a..cce4cf0b7 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/tuff_smooth_slab_to_vanilla.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/tuff_smooth_slab_to_vanilla.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:tuff_smooth_slab_to_vanilla" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:tuff_smooth_slab_to_vanilla" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:tuff_smooth_slab" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:tuff_smooth_slab_to_vanilla" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:tuff_smooth_slab_to_vanilla" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:tuff_smooth_slab" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/tuff_smooth_stairs.json b/src/main/resources/data/mineralogy/advancement/recipes/tuff_smooth_stairs.json index 664c23694..fff64a9ca 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/tuff_smooth_stairs.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/tuff_smooth_stairs.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:tuff_smooth_stairs" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:tuff_smooth_stairs" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:tuff_smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:tuff_smooth_stairs" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:tuff_smooth_stairs" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:tuff_smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/tuff_smooth_wall.json b/src/main/resources/data/mineralogy/advancement/recipes/tuff_smooth_wall.json index b77a79384..498934b0d 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/tuff_smooth_wall.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/tuff_smooth_wall.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:tuff_smooth_wall" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:tuff_smooth_wall" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:tuff_smooth" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:tuff_smooth_wall" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:tuff_smooth_wall" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:tuff_smooth" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/tuff_stairs.json b/src/main/resources/data/mineralogy/advancement/recipes/tuff_stairs.json index c4664a3a6..61a0fdf4c 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/tuff_stairs.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/tuff_stairs.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:tuff_stairs" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:tuff_stairs" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:tuff" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:tuff_stairs" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:tuff_stairs" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:tuff" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/tuff_to_stone.json b/src/main/resources/data/mineralogy/advancement/recipes/tuff_to_stone.json index 8561df351..0047fb625 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/tuff_to_stone.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/tuff_to_stone.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:tuff_to_stone" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:tuff_to_stone" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:tuff" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:tuff_to_stone" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:tuff_to_stone" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:tuff" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/advancement/recipes/tuff_wall.json b/src/main/resources/data/mineralogy/advancement/recipes/tuff_wall.json index 01fb0676c..a040aed49 100644 --- a/src/main/resources/data/mineralogy/advancement/recipes/tuff_wall.json +++ b/src/main/resources/data/mineralogy/advancement/recipes/tuff_wall.json @@ -1,32 +1,32 @@ { - "rewards": { - "recipes": [ - "mineralogy:tuff_wall" - ] - }, - "criteria": { - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mineralogy:tuff_wall" - } - }, - "has_rock": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": "mineralogy:tuff" - } - ] - } - } - }, - "requirements": [ - [ - "has_the_recipe", - "has_rock" - ] - ], - "sends_telemetry_event": false + "rewards": { + "recipes": [ + "mineralogy:tuff_wall" + ] + }, + "criteria": { + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "mineralogy:tuff_wall" + } + }, + "has_rock": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": "mineralogy:tuff" + } + ] + } + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rock" + ] + ], + "sends_telemetry_event": false } diff --git a/src/main/resources/data/mineralogy/orespawn/provider.json b/src/main/resources/data/mineralogy/orespawn/provider.json index 408c0c3c4..227cc5f57 100644 --- a/src/main/resources/data/mineralogy/orespawn/provider.json +++ b/src/main/resources/data/mineralogy/orespawn/provider.json @@ -587,10 +587,11 @@ "igneous_intrusive", "igneous_volcanic" ], - "host_tags": [ - "minecraft:stone_ore_replaceables", - "minecraft:deepslate_ore_replaceables" - ] + "host_blocks": [ + "minecraft:stone", + "minecraft:deepslate" + ], + "host_tags": [] } }, "block": "mineralogy:sulfur_ore" @@ -611,10 +612,11 @@ "igneous_intrusive", "igneous_volcanic" ], - "host_tags": [ - "minecraft:stone_ore_replaceables", - "minecraft:deepslate_ore_replaceables" - ] + "host_blocks": [ + "minecraft:stone", + "minecraft:deepslate" + ], + "host_tags": [] } }, "block": "mineralogy:phosphorous_ore" @@ -635,10 +637,11 @@ "igneous_intrusive", "igneous_volcanic" ], - "host_tags": [ - "minecraft:stone_ore_replaceables", - "minecraft:deepslate_ore_replaceables" - ] + "host_blocks": [ + "minecraft:stone", + "minecraft:deepslate" + ], + "host_tags": [] } }, "block": "mineralogy:nitrate_ore" diff --git a/src/main/resources/data/mineralogy/recipe/amphibolite_brick.json b/src/main/resources/data/mineralogy/recipe/amphibolite_brick.json index 6cfc2ce68..ac57fe2bc 100644 --- a/src/main/resources/data/mineralogy/recipe/amphibolite_brick.json +++ b/src/main/resources/data/mineralogy/recipe/amphibolite_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/amphibolite" - } - }, - "result": { - "id": "mineralogy:amphibolite_brick", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "#mineralogy:stones/amphibolite" + }, + "result": { + "id": "mineralogy:amphibolite_brick", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/amphibolite_brick_block_polishing.json b/src/main/resources/data/mineralogy/recipe/amphibolite_brick_block_polishing.json index ba179462e..2845ef024 100644 --- a/src/main/resources/data/mineralogy/recipe/amphibolite_brick_block_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/amphibolite_brick_block_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:amphibolite_brick" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:amphibolite_smooth_brick", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:amphibolite_brick", + "#c:sands" + ], + "result": { + "id": "mineralogy:amphibolite_smooth_brick", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/amphibolite_brick_furnace.json b/src/main/resources/data/mineralogy/recipe/amphibolite_brick_furnace.json index 498183973..eb14f4527 100644 --- a/src/main/resources/data/mineralogy/recipe/amphibolite_brick_furnace.json +++ b/src/main/resources/data/mineralogy/recipe/amphibolite_brick_furnace.json @@ -1,22 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "xxx", - "xyx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:slabs/amphibolite/brick" - }, - "y": { - "item": "minecraft:furnace" - } - }, - "result": { - "id": "mineralogy:amphibolite_brick_furnace", - "count": 1 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "xxx", + "xyx", + "xxx" + ], + "key": { + "x": "#mineralogy:slabs/amphibolite/brick", + "y": "minecraft:furnace" + }, + "result": { + "id": "mineralogy:amphibolite_brick_furnace", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/amphibolite_brick_slab.json b/src/main/resources/data/mineralogy/recipe/amphibolite_brick_slab.json index e16623334..096b45dde 100644 --- a/src/main/resources/data/mineralogy/recipe/amphibolite_brick_slab.json +++ b/src/main/resources/data/mineralogy/recipe/amphibolite_brick_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:amphibolite_brick" - } - }, - "result": { - "id": "mineralogy:amphibolite_brick_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:amphibolite_brick" + }, + "result": { + "id": "mineralogy:amphibolite_brick_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/amphibolite_brick_slab_polishing.json b/src/main/resources/data/mineralogy/recipe/amphibolite_brick_slab_polishing.json index a04437b85..874a7113f 100644 --- a/src/main/resources/data/mineralogy/recipe/amphibolite_brick_slab_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/amphibolite_brick_slab_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:amphibolite_brick_slab" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:amphibolite_smooth_brick_slab", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:amphibolite_brick_slab", + "#c:sands" + ], + "result": { + "id": "mineralogy:amphibolite_smooth_brick_slab", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/amphibolite_brick_slab_recombination.json b/src/main/resources/data/mineralogy/recipe/amphibolite_brick_slab_recombination.json index 395ab4033..1336579d9 100644 --- a/src/main/resources/data/mineralogy/recipe/amphibolite_brick_slab_recombination.json +++ b/src/main/resources/data/mineralogy/recipe/amphibolite_brick_slab_recombination.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:amphibolite_brick_slab" - }, - { - "item": "mineralogy:amphibolite_brick_slab" - } - ], - "result": { - "id": "mineralogy:amphibolite_brick", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:amphibolite_brick_slab", + "mineralogy:amphibolite_brick_slab" + ], + "result": { + "id": "mineralogy:amphibolite_brick", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/amphibolite_brick_stairs.json b/src/main/resources/data/mineralogy/recipe/amphibolite_brick_stairs.json index 8115ef3e5..65d1e090f 100644 --- a/src/main/resources/data/mineralogy/recipe/amphibolite_brick_stairs.json +++ b/src/main/resources/data/mineralogy/recipe/amphibolite_brick_stairs.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - "xx ", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/amphibolite/brick" - } - }, - "result": { - "id": "mineralogy:amphibolite_brick_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + "xx ", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/amphibolite/brick" + }, + "result": { + "id": "mineralogy:amphibolite_brick_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/amphibolite_brick_stairs_polishing.json b/src/main/resources/data/mineralogy/recipe/amphibolite_brick_stairs_polishing.json index a2e29ce4a..f2fb6f6f6 100644 --- a/src/main/resources/data/mineralogy/recipe/amphibolite_brick_stairs_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/amphibolite_brick_stairs_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:amphibolite_brick_stairs" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:amphibolite_smooth_brick_stairs", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:amphibolite_brick_stairs", + "#c:sands" + ], + "result": { + "id": "mineralogy:amphibolite_smooth_brick_stairs", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/amphibolite_brick_wall.json b/src/main/resources/data/mineralogy/recipe/amphibolite_brick_wall.json index aba0f870a..9c35a3399 100644 --- a/src/main/resources/data/mineralogy/recipe/amphibolite_brick_wall.json +++ b/src/main/resources/data/mineralogy/recipe/amphibolite_brick_wall.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/amphibolite/brick" - } - }, - "result": { - "id": "mineralogy:amphibolite_brick_wall", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/amphibolite/brick" + }, + "result": { + "id": "mineralogy:amphibolite_brick_wall", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/amphibolite_brick_wall_polishing.json b/src/main/resources/data/mineralogy/recipe/amphibolite_brick_wall_polishing.json index 79e6081c5..d58390a9a 100644 --- a/src/main/resources/data/mineralogy/recipe/amphibolite_brick_wall_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/amphibolite_brick_wall_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:amphibolite_brick_wall" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:amphibolite_smooth_brick_wall", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:amphibolite_brick_wall", + "#c:sands" + ], + "result": { + "id": "mineralogy:amphibolite_smooth_brick_wall", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/amphibolite_cobblestone.json b/src/main/resources/data/mineralogy/recipe/amphibolite_cobblestone.json index 7fd697aaa..16d9079b5 100644 --- a/src/main/resources/data/mineralogy/recipe/amphibolite_cobblestone.json +++ b/src/main/resources/data/mineralogy/recipe/amphibolite_cobblestone.json @@ -1,22 +1,14 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "tag": "mineralogy:stones/amphibolite" - }, - { - "tag": "mineralogy:stones/amphibolite" - }, - { - "item": "minecraft:gravel" - }, - { - "item": "minecraft:gravel" - } - ], - "result": { - "id": "minecraft:cobblestone", - "count": 4 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "#mineralogy:stones/amphibolite", + "#mineralogy:stones/amphibolite", + "minecraft:gravel", + "minecraft:gravel" + ], + "result": { + "id": "minecraft:cobblestone", + "count": 4 + } } diff --git a/src/main/resources/data/mineralogy/recipe/amphibolite_furnace.json b/src/main/resources/data/mineralogy/recipe/amphibolite_furnace.json index ddbb7e77f..52f15a0f9 100644 --- a/src/main/resources/data/mineralogy/recipe/amphibolite_furnace.json +++ b/src/main/resources/data/mineralogy/recipe/amphibolite_furnace.json @@ -1,22 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "xxx", - "xyx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:slabs/amphibolite" - }, - "y": { - "item": "minecraft:furnace" - } - }, - "result": { - "id": "mineralogy:amphibolite_furnace", - "count": 1 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "xxx", + "xyx", + "xxx" + ], + "key": { + "x": "#mineralogy:slabs/amphibolite", + "y": "minecraft:furnace" + }, + "result": { + "id": "mineralogy:amphibolite_furnace", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/amphibolite_polished_brick_slab_recombination.json b/src/main/resources/data/mineralogy/recipe/amphibolite_polished_brick_slab_recombination.json index 2e89c7c84..8426a6bb0 100644 --- a/src/main/resources/data/mineralogy/recipe/amphibolite_polished_brick_slab_recombination.json +++ b/src/main/resources/data/mineralogy/recipe/amphibolite_polished_brick_slab_recombination.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:amphibolite_smooth_brick_slab" - }, - { - "item": "mineralogy:amphibolite_smooth_brick_slab" - } - ], - "result": { - "id": "mineralogy:amphibolite_smooth_brick", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:amphibolite_smooth_brick_slab", + "mineralogy:amphibolite_smooth_brick_slab" + ], + "result": { + "id": "mineralogy:amphibolite_smooth_brick", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/amphibolite_polished_slab_recombination.json b/src/main/resources/data/mineralogy/recipe/amphibolite_polished_slab_recombination.json index 9d5cfc8ba..c144ea272 100644 --- a/src/main/resources/data/mineralogy/recipe/amphibolite_polished_slab_recombination.json +++ b/src/main/resources/data/mineralogy/recipe/amphibolite_polished_slab_recombination.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:amphibolite_smooth_slab" - }, - { - "item": "mineralogy:amphibolite_smooth_slab" - } - ], - "result": { - "id": "mineralogy:amphibolite_smooth", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:amphibolite_smooth_slab", + "mineralogy:amphibolite_smooth_slab" + ], + "result": { + "id": "mineralogy:amphibolite_smooth", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/amphibolite_polished_slabs_to_brick.json b/src/main/resources/data/mineralogy/recipe/amphibolite_polished_slabs_to_brick.json index 4d0dac491..f25844d75 100644 --- a/src/main/resources/data/mineralogy/recipe/amphibolite_polished_slabs_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/amphibolite_polished_slabs_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:amphibolite_smooth_slab" - } - }, - "result": { - "id": "mineralogy:amphibolite_smooth_brick_slab", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:amphibolite_smooth_slab" + }, + "result": { + "id": "mineralogy:amphibolite_smooth_brick_slab", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/amphibolite_polished_stairs_to_brick.json b/src/main/resources/data/mineralogy/recipe/amphibolite_polished_stairs_to_brick.json index 71586be30..25ca981e6 100644 --- a/src/main/resources/data/mineralogy/recipe/amphibolite_polished_stairs_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/amphibolite_polished_stairs_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:amphibolite_smooth_stairs" - } - }, - "result": { - "id": "mineralogy:amphibolite_smooth_brick_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:amphibolite_smooth_stairs" + }, + "result": { + "id": "mineralogy:amphibolite_smooth_brick_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/amphibolite_polished_walls_to_brick.json b/src/main/resources/data/mineralogy/recipe/amphibolite_polished_walls_to_brick.json index 65fbb4ae6..29f10f1f2 100644 --- a/src/main/resources/data/mineralogy/recipe/amphibolite_polished_walls_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/amphibolite_polished_walls_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:amphibolite_smooth_wall" - } - }, - "result": { - "id": "mineralogy:amphibolite_smooth_brick_wall", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:amphibolite_smooth_wall" + }, + "result": { + "id": "mineralogy:amphibolite_smooth_brick_wall", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/amphibolite_raw_slab_polishing.json b/src/main/resources/data/mineralogy/recipe/amphibolite_raw_slab_polishing.json index 189c08a71..91c71cd99 100644 --- a/src/main/resources/data/mineralogy/recipe/amphibolite_raw_slab_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/amphibolite_raw_slab_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:amphibolite_slab" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:amphibolite_smooth_slab", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:amphibolite_slab", + "#c:sands" + ], + "result": { + "id": "mineralogy:amphibolite_smooth_slab", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/amphibolite_raw_slab_recombination.json b/src/main/resources/data/mineralogy/recipe/amphibolite_raw_slab_recombination.json index a835731e1..f459220f3 100644 --- a/src/main/resources/data/mineralogy/recipe/amphibolite_raw_slab_recombination.json +++ b/src/main/resources/data/mineralogy/recipe/amphibolite_raw_slab_recombination.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:amphibolite_slab" - }, - { - "item": "mineralogy:amphibolite_slab" - } - ], - "result": { - "id": "mineralogy:amphibolite", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:amphibolite_slab", + "mineralogy:amphibolite_slab" + ], + "result": { + "id": "mineralogy:amphibolite", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/amphibolite_raw_slabs_to_brick.json b/src/main/resources/data/mineralogy/recipe/amphibolite_raw_slabs_to_brick.json index ed155c317..7d42467e0 100644 --- a/src/main/resources/data/mineralogy/recipe/amphibolite_raw_slabs_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/amphibolite_raw_slabs_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:amphibolite_slab" - } - }, - "result": { - "id": "mineralogy:amphibolite_brick_slab", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:amphibolite_slab" + }, + "result": { + "id": "mineralogy:amphibolite_brick_slab", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/amphibolite_raw_stairs_polishing.json b/src/main/resources/data/mineralogy/recipe/amphibolite_raw_stairs_polishing.json index 392550124..19b533d88 100644 --- a/src/main/resources/data/mineralogy/recipe/amphibolite_raw_stairs_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/amphibolite_raw_stairs_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:amphibolite_stairs" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:amphibolite_smooth_stairs", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:amphibolite_stairs", + "#c:sands" + ], + "result": { + "id": "mineralogy:amphibolite_smooth_stairs", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/amphibolite_raw_stairs_to_brick.json b/src/main/resources/data/mineralogy/recipe/amphibolite_raw_stairs_to_brick.json index b21215424..4b94f9147 100644 --- a/src/main/resources/data/mineralogy/recipe/amphibolite_raw_stairs_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/amphibolite_raw_stairs_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:amphibolite_stairs" - } - }, - "result": { - "id": "mineralogy:amphibolite_brick_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:amphibolite_stairs" + }, + "result": { + "id": "mineralogy:amphibolite_brick_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/amphibolite_raw_wall_polishing.json b/src/main/resources/data/mineralogy/recipe/amphibolite_raw_wall_polishing.json index e8dc6a997..718b6e065 100644 --- a/src/main/resources/data/mineralogy/recipe/amphibolite_raw_wall_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/amphibolite_raw_wall_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:amphibolite_wall" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:amphibolite_smooth_wall", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:amphibolite_wall", + "#c:sands" + ], + "result": { + "id": "mineralogy:amphibolite_smooth_wall", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/amphibolite_raw_walls_to_brick.json b/src/main/resources/data/mineralogy/recipe/amphibolite_raw_walls_to_brick.json index 9457f6917..fc092c556 100644 --- a/src/main/resources/data/mineralogy/recipe/amphibolite_raw_walls_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/amphibolite_raw_walls_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:amphibolite_wall" - } - }, - "result": { - "id": "mineralogy:amphibolite_brick_wall", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:amphibolite_wall" + }, + "result": { + "id": "mineralogy:amphibolite_brick_wall", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/amphibolite_relief_axe.json b/src/main/resources/data/mineralogy/recipe/amphibolite_relief_axe.json index 2af13343a..62fdfd73a 100644 --- a/src/main/resources/data/mineralogy/recipe/amphibolite_relief_axe.json +++ b/src/main/resources/data/mineralogy/recipe/amphibolite_relief_axe.json @@ -1,37 +1,19 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:amphibolite_relief_blank" - }, - { - "item": "mineralogy:amphibolite_relief_blank" - }, - { - "item": "mineralogy:amphibolite_relief_blank" - }, - { - "item": "mineralogy:amphibolite_relief_blank" - }, - { - "item": "mineralogy:amphibolite_relief_blank" - }, - { - "item": "mineralogy:amphibolite_relief_blank" - }, - { - "item": "mineralogy:amphibolite_relief_blank" - }, - { - "item": "mineralogy:amphibolite_relief_blank" - }, - { - "item": "minecraft:stone_axe" - } - ], - "result": { - "id": "mineralogy:amphibolite_relief_axe", - "count": 8 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:amphibolite_relief_blank", + "mineralogy:amphibolite_relief_blank", + "mineralogy:amphibolite_relief_blank", + "mineralogy:amphibolite_relief_blank", + "mineralogy:amphibolite_relief_blank", + "mineralogy:amphibolite_relief_blank", + "mineralogy:amphibolite_relief_blank", + "mineralogy:amphibolite_relief_blank", + "minecraft:stone_axe" + ], + "result": { + "id": "mineralogy:amphibolite_relief_axe", + "count": 8 + } } diff --git a/src/main/resources/data/mineralogy/recipe/amphibolite_relief_blank.json b/src/main/resources/data/mineralogy/recipe/amphibolite_relief_blank.json index 5bf0e224f..a8a5072ae 100644 --- a/src/main/resources/data/mineralogy/recipe/amphibolite_relief_blank.json +++ b/src/main/resources/data/mineralogy/recipe/amphibolite_relief_blank.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx", - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:amphibolite_smooth" - } - }, - "result": { - "id": "mineralogy:amphibolite_relief_blank", - "count": 16 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx", + "xxx" + ], + "key": { + "x": "mineralogy:amphibolite_smooth" + }, + "result": { + "id": "mineralogy:amphibolite_relief_blank", + "count": 16 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/amphibolite_relief_cross.json b/src/main/resources/data/mineralogy/recipe/amphibolite_relief_cross.json index 7ff38d799..9c9a0247a 100644 --- a/src/main/resources/data/mineralogy/recipe/amphibolite_relief_cross.json +++ b/src/main/resources/data/mineralogy/recipe/amphibolite_relief_cross.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x x", - " ", - "x x" - ], - "key": { - "x": { - "item": "mineralogy:amphibolite_relief_blank" - } - }, - "result": { - "id": "mineralogy:amphibolite_relief_cross", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x x", + " ", + "x x" + ], + "key": { + "x": "mineralogy:amphibolite_relief_blank" + }, + "result": { + "id": "mineralogy:amphibolite_relief_cross", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/amphibolite_relief_hammer.json b/src/main/resources/data/mineralogy/recipe/amphibolite_relief_hammer.json index a6267bfa9..6f68b3338 100644 --- a/src/main/resources/data/mineralogy/recipe/amphibolite_relief_hammer.json +++ b/src/main/resources/data/mineralogy/recipe/amphibolite_relief_hammer.json @@ -1,25 +1,19 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "zxz", - "zyz", - "zzz" - ], - "key": { - "x": { - "item": "mineralogy:amphibolite_smooth" - }, - "y": { - "item": "minecraft:stick" - }, - "z": { - "item": "mineralogy:amphibolite_relief_blank" - } - }, - "result": { - "id": "mineralogy:amphibolite_relief_hammer", - "count": 7 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "zxz", + "zyz", + "zzz" + ], + "key": { + "x": "mineralogy:amphibolite_smooth", + "y": "minecraft:stick", + "z": "mineralogy:amphibolite_relief_blank" + }, + "result": { + "id": "mineralogy:amphibolite_relief_hammer", + "count": 7 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/amphibolite_relief_hoe.json b/src/main/resources/data/mineralogy/recipe/amphibolite_relief_hoe.json index 3c2aeadfa..a23cafcf7 100644 --- a/src/main/resources/data/mineralogy/recipe/amphibolite_relief_hoe.json +++ b/src/main/resources/data/mineralogy/recipe/amphibolite_relief_hoe.json @@ -1,37 +1,19 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:amphibolite_relief_blank" - }, - { - "item": "mineralogy:amphibolite_relief_blank" - }, - { - "item": "mineralogy:amphibolite_relief_blank" - }, - { - "item": "mineralogy:amphibolite_relief_blank" - }, - { - "item": "mineralogy:amphibolite_relief_blank" - }, - { - "item": "mineralogy:amphibolite_relief_blank" - }, - { - "item": "mineralogy:amphibolite_relief_blank" - }, - { - "item": "mineralogy:amphibolite_relief_blank" - }, - { - "item": "minecraft:stone_hoe" - } - ], - "result": { - "id": "mineralogy:amphibolite_relief_hoe", - "count": 8 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:amphibolite_relief_blank", + "mineralogy:amphibolite_relief_blank", + "mineralogy:amphibolite_relief_blank", + "mineralogy:amphibolite_relief_blank", + "mineralogy:amphibolite_relief_blank", + "mineralogy:amphibolite_relief_blank", + "mineralogy:amphibolite_relief_blank", + "mineralogy:amphibolite_relief_blank", + "minecraft:stone_hoe" + ], + "result": { + "id": "mineralogy:amphibolite_relief_hoe", + "count": 8 + } } diff --git a/src/main/resources/data/mineralogy/recipe/amphibolite_relief_horizontal.json b/src/main/resources/data/mineralogy/recipe/amphibolite_relief_horizontal.json index 1a2848bb1..82bf36a72 100644 --- a/src/main/resources/data/mineralogy/recipe/amphibolite_relief_horizontal.json +++ b/src/main/resources/data/mineralogy/recipe/amphibolite_relief_horizontal.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:amphibolite_relief_blank" - } - }, - "result": { - "id": "mineralogy:amphibolite_relief_horizontal", - "count": 3 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:amphibolite_relief_blank" + }, + "result": { + "id": "mineralogy:amphibolite_relief_horizontal", + "count": 3 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/amphibolite_relief_i.json b/src/main/resources/data/mineralogy/recipe/amphibolite_relief_i.json index 3b1e98b46..b5d8817f1 100644 --- a/src/main/resources/data/mineralogy/recipe/amphibolite_relief_i.json +++ b/src/main/resources/data/mineralogy/recipe/amphibolite_relief_i.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - " x ", - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:amphibolite_relief_blank" - } - }, - "result": { - "id": "mineralogy:amphibolite_relief_i", - "count": 7 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + " x ", + "xxx" + ], + "key": { + "x": "mineralogy:amphibolite_relief_blank" + }, + "result": { + "id": "mineralogy:amphibolite_relief_i", + "count": 7 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/amphibolite_relief_left.json b/src/main/resources/data/mineralogy/recipe/amphibolite_relief_left.json index 10d144403..329e79c72 100644 --- a/src/main/resources/data/mineralogy/recipe/amphibolite_relief_left.json +++ b/src/main/resources/data/mineralogy/recipe/amphibolite_relief_left.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - " x ", - " x" - ], - "key": { - "x": { - "item": "mineralogy:amphibolite_relief_blank" - } - }, - "result": { - "id": "mineralogy:amphibolite_relief_left", - "count": 3 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + " x ", + " x" + ], + "key": { + "x": "mineralogy:amphibolite_relief_blank" + }, + "result": { + "id": "mineralogy:amphibolite_relief_left", + "count": 3 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/amphibolite_relief_pickaxe.json b/src/main/resources/data/mineralogy/recipe/amphibolite_relief_pickaxe.json index 8d4228b53..8cc9194e1 100644 --- a/src/main/resources/data/mineralogy/recipe/amphibolite_relief_pickaxe.json +++ b/src/main/resources/data/mineralogy/recipe/amphibolite_relief_pickaxe.json @@ -1,37 +1,19 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:amphibolite_relief_blank" - }, - { - "item": "mineralogy:amphibolite_relief_blank" - }, - { - "item": "mineralogy:amphibolite_relief_blank" - }, - { - "item": "mineralogy:amphibolite_relief_blank" - }, - { - "item": "mineralogy:amphibolite_relief_blank" - }, - { - "item": "mineralogy:amphibolite_relief_blank" - }, - { - "item": "mineralogy:amphibolite_relief_blank" - }, - { - "item": "mineralogy:amphibolite_relief_blank" - }, - { - "item": "minecraft:stone_pickaxe" - } - ], - "result": { - "id": "mineralogy:amphibolite_relief_pickaxe", - "count": 8 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:amphibolite_relief_blank", + "mineralogy:amphibolite_relief_blank", + "mineralogy:amphibolite_relief_blank", + "mineralogy:amphibolite_relief_blank", + "mineralogy:amphibolite_relief_blank", + "mineralogy:amphibolite_relief_blank", + "mineralogy:amphibolite_relief_blank", + "mineralogy:amphibolite_relief_blank", + "minecraft:stone_pickaxe" + ], + "result": { + "id": "mineralogy:amphibolite_relief_pickaxe", + "count": 8 + } } diff --git a/src/main/resources/data/mineralogy/recipe/amphibolite_relief_plus.json b/src/main/resources/data/mineralogy/recipe/amphibolite_relief_plus.json index 55ac1cccc..0fc3b0def 100644 --- a/src/main/resources/data/mineralogy/recipe/amphibolite_relief_plus.json +++ b/src/main/resources/data/mineralogy/recipe/amphibolite_relief_plus.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - " x ", - "xxx", - " x " - ], - "key": { - "x": { - "item": "mineralogy:amphibolite_relief_blank" - } - }, - "result": { - "id": "mineralogy:amphibolite_relief_plus", - "count": 5 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + " x ", + "xxx", + " x " + ], + "key": { + "x": "mineralogy:amphibolite_relief_blank" + }, + "result": { + "id": "mineralogy:amphibolite_relief_plus", + "count": 5 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/amphibolite_relief_right.json b/src/main/resources/data/mineralogy/recipe/amphibolite_relief_right.json index 8afa8b8c7..6c9b131b4 100644 --- a/src/main/resources/data/mineralogy/recipe/amphibolite_relief_right.json +++ b/src/main/resources/data/mineralogy/recipe/amphibolite_relief_right.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:amphibolite_relief_left" - }, - { - "item": "mineralogy:amphibolite_relief_left" - } - ], - "result": { - "id": "mineralogy:amphibolite_relief_right", - "count": 2 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:amphibolite_relief_left", + "mineralogy:amphibolite_relief_left" + ], + "result": { + "id": "mineralogy:amphibolite_relief_right", + "count": 2 + } } diff --git a/src/main/resources/data/mineralogy/recipe/amphibolite_relief_sword.json b/src/main/resources/data/mineralogy/recipe/amphibolite_relief_sword.json index afb1ffa0d..9357a47f8 100644 --- a/src/main/resources/data/mineralogy/recipe/amphibolite_relief_sword.json +++ b/src/main/resources/data/mineralogy/recipe/amphibolite_relief_sword.json @@ -1,37 +1,19 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:amphibolite_relief_blank" - }, - { - "item": "mineralogy:amphibolite_relief_blank" - }, - { - "item": "mineralogy:amphibolite_relief_blank" - }, - { - "item": "mineralogy:amphibolite_relief_blank" - }, - { - "item": "mineralogy:amphibolite_relief_blank" - }, - { - "item": "mineralogy:amphibolite_relief_blank" - }, - { - "item": "mineralogy:amphibolite_relief_blank" - }, - { - "item": "mineralogy:amphibolite_relief_blank" - }, - { - "item": "minecraft:stone_sword" - } - ], - "result": { - "id": "mineralogy:amphibolite_relief_sword", - "count": 8 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:amphibolite_relief_blank", + "mineralogy:amphibolite_relief_blank", + "mineralogy:amphibolite_relief_blank", + "mineralogy:amphibolite_relief_blank", + "mineralogy:amphibolite_relief_blank", + "mineralogy:amphibolite_relief_blank", + "mineralogy:amphibolite_relief_blank", + "mineralogy:amphibolite_relief_blank", + "minecraft:stone_sword" + ], + "result": { + "id": "mineralogy:amphibolite_relief_sword", + "count": 8 + } } diff --git a/src/main/resources/data/mineralogy/recipe/amphibolite_relief_vertical.json b/src/main/resources/data/mineralogy/recipe/amphibolite_relief_vertical.json index 53dd3ac8b..21edf3c24 100644 --- a/src/main/resources/data/mineralogy/recipe/amphibolite_relief_vertical.json +++ b/src/main/resources/data/mineralogy/recipe/amphibolite_relief_vertical.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x", - "x", - "x" - ], - "key": { - "x": { - "item": "mineralogy:amphibolite_relief_blank" - } - }, - "result": { - "id": "mineralogy:amphibolite_relief_vertical", - "count": 3 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x", + "x", + "x" + ], + "key": { + "x": "mineralogy:amphibolite_relief_blank" + }, + "result": { + "id": "mineralogy:amphibolite_relief_vertical", + "count": 3 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/amphibolite_slab.json b/src/main/resources/data/mineralogy/recipe/amphibolite_slab.json index 6f4dd5dc8..ba52f55a4 100644 --- a/src/main/resources/data/mineralogy/recipe/amphibolite_slab.json +++ b/src/main/resources/data/mineralogy/recipe/amphibolite_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:amphibolite" - } - }, - "result": { - "id": "mineralogy:amphibolite_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:amphibolite" + }, + "result": { + "id": "mineralogy:amphibolite_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/amphibolite_smooth.json b/src/main/resources/data/mineralogy/recipe/amphibolite_smooth.json index d4a229f57..bad661c6e 100644 --- a/src/main/resources/data/mineralogy/recipe/amphibolite_smooth.json +++ b/src/main/resources/data/mineralogy/recipe/amphibolite_smooth.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "tag": "mineralogy:stones/amphibolite" - }, - { - "item": "minecraft:sand" - } - ], - "result": { - "id": "mineralogy:amphibolite_smooth", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "#mineralogy:stones/amphibolite", + "minecraft:sand" + ], + "result": { + "id": "mineralogy:amphibolite_smooth", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/amphibolite_smooth_brick.json b/src/main/resources/data/mineralogy/recipe/amphibolite_smooth_brick.json index 48c08253f..90283d04a 100644 --- a/src/main/resources/data/mineralogy/recipe/amphibolite_smooth_brick.json +++ b/src/main/resources/data/mineralogy/recipe/amphibolite_smooth_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/amphibolite/smooth" - } - }, - "result": { - "id": "mineralogy:amphibolite_smooth_brick", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "#mineralogy:stones/amphibolite/smooth" + }, + "result": { + "id": "mineralogy:amphibolite_smooth_brick", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/amphibolite_smooth_brick_furnace.json b/src/main/resources/data/mineralogy/recipe/amphibolite_smooth_brick_furnace.json index ba8503c1c..a5cb4056b 100644 --- a/src/main/resources/data/mineralogy/recipe/amphibolite_smooth_brick_furnace.json +++ b/src/main/resources/data/mineralogy/recipe/amphibolite_smooth_brick_furnace.json @@ -1,22 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "xxx", - "xyx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:slabs/amphibolite/smooth_brick" - }, - "y": { - "item": "minecraft:furnace" - } - }, - "result": { - "id": "mineralogy:amphibolite_smooth_brick_furnace", - "count": 1 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "xxx", + "xyx", + "xxx" + ], + "key": { + "x": "#mineralogy:slabs/amphibolite/smooth_brick", + "y": "minecraft:furnace" + }, + "result": { + "id": "mineralogy:amphibolite_smooth_brick_furnace", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/amphibolite_smooth_brick_slab.json b/src/main/resources/data/mineralogy/recipe/amphibolite_smooth_brick_slab.json index bd3614ce3..419123952 100644 --- a/src/main/resources/data/mineralogy/recipe/amphibolite_smooth_brick_slab.json +++ b/src/main/resources/data/mineralogy/recipe/amphibolite_smooth_brick_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:amphibolite_smooth_brick" - } - }, - "result": { - "id": "mineralogy:amphibolite_smooth_brick_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:amphibolite_smooth_brick" + }, + "result": { + "id": "mineralogy:amphibolite_smooth_brick_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/amphibolite_smooth_brick_stairs.json b/src/main/resources/data/mineralogy/recipe/amphibolite_smooth_brick_stairs.json index 771c799f4..ba760b2f3 100644 --- a/src/main/resources/data/mineralogy/recipe/amphibolite_smooth_brick_stairs.json +++ b/src/main/resources/data/mineralogy/recipe/amphibolite_smooth_brick_stairs.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - "xx ", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/amphibolite/smooth_brick" - } - }, - "result": { - "id": "mineralogy:amphibolite_smooth_brick_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + "xx ", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/amphibolite/smooth_brick" + }, + "result": { + "id": "mineralogy:amphibolite_smooth_brick_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/amphibolite_smooth_brick_wall.json b/src/main/resources/data/mineralogy/recipe/amphibolite_smooth_brick_wall.json index bfc43655c..475fbdaa5 100644 --- a/src/main/resources/data/mineralogy/recipe/amphibolite_smooth_brick_wall.json +++ b/src/main/resources/data/mineralogy/recipe/amphibolite_smooth_brick_wall.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/amphibolite/smooth_brick" - } - }, - "result": { - "id": "mineralogy:amphibolite_smooth_brick_wall", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/amphibolite/smooth_brick" + }, + "result": { + "id": "mineralogy:amphibolite_smooth_brick_wall", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/amphibolite_smooth_furnace.json b/src/main/resources/data/mineralogy/recipe/amphibolite_smooth_furnace.json index 195e645ee..2e43b3c07 100644 --- a/src/main/resources/data/mineralogy/recipe/amphibolite_smooth_furnace.json +++ b/src/main/resources/data/mineralogy/recipe/amphibolite_smooth_furnace.json @@ -1,22 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "xxx", - "xyx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:slabs/amphibolite/smooth" - }, - "y": { - "item": "minecraft:furnace" - } - }, - "result": { - "id": "mineralogy:amphibolite_smooth_furnace", - "count": 1 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "xxx", + "xyx", + "xxx" + ], + "key": { + "x": "#mineralogy:slabs/amphibolite/smooth", + "y": "minecraft:furnace" + }, + "result": { + "id": "mineralogy:amphibolite_smooth_furnace", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/amphibolite_smooth_slab.json b/src/main/resources/data/mineralogy/recipe/amphibolite_smooth_slab.json index 942b210be..84fa91b1b 100644 --- a/src/main/resources/data/mineralogy/recipe/amphibolite_smooth_slab.json +++ b/src/main/resources/data/mineralogy/recipe/amphibolite_smooth_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:amphibolite_smooth" - } - }, - "result": { - "id": "mineralogy:amphibolite_smooth_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:amphibolite_smooth" + }, + "result": { + "id": "mineralogy:amphibolite_smooth_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/amphibolite_smooth_stairs.json b/src/main/resources/data/mineralogy/recipe/amphibolite_smooth_stairs.json index 8b71d4793..a7be9e6d5 100644 --- a/src/main/resources/data/mineralogy/recipe/amphibolite_smooth_stairs.json +++ b/src/main/resources/data/mineralogy/recipe/amphibolite_smooth_stairs.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - "xx ", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/amphibolite/smooth" - } - }, - "result": { - "id": "mineralogy:amphibolite_smooth_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + "xx ", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/amphibolite/smooth" + }, + "result": { + "id": "mineralogy:amphibolite_smooth_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/amphibolite_smooth_wall.json b/src/main/resources/data/mineralogy/recipe/amphibolite_smooth_wall.json index fb33d3ca1..aaa5b05b0 100644 --- a/src/main/resources/data/mineralogy/recipe/amphibolite_smooth_wall.json +++ b/src/main/resources/data/mineralogy/recipe/amphibolite_smooth_wall.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/amphibolite/smooth" - } - }, - "result": { - "id": "mineralogy:amphibolite_smooth_wall", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/amphibolite/smooth" + }, + "result": { + "id": "mineralogy:amphibolite_smooth_wall", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/amphibolite_stairs.json b/src/main/resources/data/mineralogy/recipe/amphibolite_stairs.json index b397a841d..3d571b216 100644 --- a/src/main/resources/data/mineralogy/recipe/amphibolite_stairs.json +++ b/src/main/resources/data/mineralogy/recipe/amphibolite_stairs.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - "xx ", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/amphibolite" - } - }, - "result": { - "id": "mineralogy:amphibolite_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + "xx ", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/amphibolite" + }, + "result": { + "id": "mineralogy:amphibolite_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/amphibolite_to_stone.json b/src/main/resources/data/mineralogy/recipe/amphibolite_to_stone.json index 17edeb70b..e3ff519ed 100644 --- a/src/main/resources/data/mineralogy/recipe/amphibolite_to_stone.json +++ b/src/main/resources/data/mineralogy/recipe/amphibolite_to_stone.json @@ -1,12 +1,10 @@ { - "type": "minecraft:smelting", - "category": "blocks", - "ingredient": { - "item": "mineralogy:amphibolite" - }, - "result": { - "id": "minecraft:stone" - }, - "experience": 0.1, - "cookingtime": 200 + "type": "minecraft:smelting", + "category": "blocks", + "ingredient": "mineralogy:amphibolite", + "result": { + "id": "minecraft:stone" + }, + "experience": 0.1, + "cookingtime": 200 } diff --git a/src/main/resources/data/mineralogy/recipe/amphibolite_wall.json b/src/main/resources/data/mineralogy/recipe/amphibolite_wall.json index fe9cc55a1..c9a579f2e 100644 --- a/src/main/resources/data/mineralogy/recipe/amphibolite_wall.json +++ b/src/main/resources/data/mineralogy/recipe/amphibolite_wall.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/amphibolite" - } - }, - "result": { - "id": "mineralogy:amphibolite_wall", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/amphibolite" + }, + "result": { + "id": "mineralogy:amphibolite_wall", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/andesite_brick.json b/src/main/resources/data/mineralogy/recipe/andesite_brick.json index 859110c3f..80670c2fd 100644 --- a/src/main/resources/data/mineralogy/recipe/andesite_brick.json +++ b/src/main/resources/data/mineralogy/recipe/andesite_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/andesite" - } - }, - "result": { - "id": "mineralogy:andesite_brick", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "#mineralogy:stones/andesite" + }, + "result": { + "id": "mineralogy:andesite_brick", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/andesite_brick_block_polishing.json b/src/main/resources/data/mineralogy/recipe/andesite_brick_block_polishing.json index b7081689f..6a080ad7b 100644 --- a/src/main/resources/data/mineralogy/recipe/andesite_brick_block_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/andesite_brick_block_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:andesite_brick" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:andesite_smooth_brick", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:andesite_brick", + "#c:sands" + ], + "result": { + "id": "mineralogy:andesite_smooth_brick", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/andesite_brick_furnace.json b/src/main/resources/data/mineralogy/recipe/andesite_brick_furnace.json index ec98c2f0a..b4ea20d0f 100644 --- a/src/main/resources/data/mineralogy/recipe/andesite_brick_furnace.json +++ b/src/main/resources/data/mineralogy/recipe/andesite_brick_furnace.json @@ -1,22 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "xxx", - "xyx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:slabs/andesite/brick" - }, - "y": { - "item": "minecraft:furnace" - } - }, - "result": { - "id": "mineralogy:andesite_brick_furnace", - "count": 1 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "xxx", + "xyx", + "xxx" + ], + "key": { + "x": "#mineralogy:slabs/andesite/brick", + "y": "minecraft:furnace" + }, + "result": { + "id": "mineralogy:andesite_brick_furnace", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/andesite_brick_slab.json b/src/main/resources/data/mineralogy/recipe/andesite_brick_slab.json index 5859d7c1d..0ac275467 100644 --- a/src/main/resources/data/mineralogy/recipe/andesite_brick_slab.json +++ b/src/main/resources/data/mineralogy/recipe/andesite_brick_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:andesite_brick" - } - }, - "result": { - "id": "mineralogy:andesite_brick_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:andesite_brick" + }, + "result": { + "id": "mineralogy:andesite_brick_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/andesite_brick_slab_polishing.json b/src/main/resources/data/mineralogy/recipe/andesite_brick_slab_polishing.json index ccd8aa176..9aa6e8a4f 100644 --- a/src/main/resources/data/mineralogy/recipe/andesite_brick_slab_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/andesite_brick_slab_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:andesite_brick_slab" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:andesite_smooth_brick_slab", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:andesite_brick_slab", + "#c:sands" + ], + "result": { + "id": "mineralogy:andesite_smooth_brick_slab", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/andesite_brick_slab_recombination.json b/src/main/resources/data/mineralogy/recipe/andesite_brick_slab_recombination.json index 26eaee806..c9bc904e9 100644 --- a/src/main/resources/data/mineralogy/recipe/andesite_brick_slab_recombination.json +++ b/src/main/resources/data/mineralogy/recipe/andesite_brick_slab_recombination.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:andesite_brick_slab" - }, - { - "item": "mineralogy:andesite_brick_slab" - } - ], - "result": { - "id": "mineralogy:andesite_brick", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:andesite_brick_slab", + "mineralogy:andesite_brick_slab" + ], + "result": { + "id": "mineralogy:andesite_brick", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/andesite_brick_stairs.json b/src/main/resources/data/mineralogy/recipe/andesite_brick_stairs.json index e96fec8bb..b0df25206 100644 --- a/src/main/resources/data/mineralogy/recipe/andesite_brick_stairs.json +++ b/src/main/resources/data/mineralogy/recipe/andesite_brick_stairs.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - "xx ", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/andesite/brick" - } - }, - "result": { - "id": "mineralogy:andesite_brick_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + "xx ", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/andesite/brick" + }, + "result": { + "id": "mineralogy:andesite_brick_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/andesite_brick_stairs_polishing.json b/src/main/resources/data/mineralogy/recipe/andesite_brick_stairs_polishing.json index c22a05ec1..959aa2378 100644 --- a/src/main/resources/data/mineralogy/recipe/andesite_brick_stairs_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/andesite_brick_stairs_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:andesite_brick_stairs" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:andesite_smooth_brick_stairs", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:andesite_brick_stairs", + "#c:sands" + ], + "result": { + "id": "mineralogy:andesite_smooth_brick_stairs", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/andesite_brick_wall.json b/src/main/resources/data/mineralogy/recipe/andesite_brick_wall.json index 5bd2e2dc3..3878eed99 100644 --- a/src/main/resources/data/mineralogy/recipe/andesite_brick_wall.json +++ b/src/main/resources/data/mineralogy/recipe/andesite_brick_wall.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/andesite/brick" - } - }, - "result": { - "id": "mineralogy:andesite_brick_wall", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/andesite/brick" + }, + "result": { + "id": "mineralogy:andesite_brick_wall", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/andesite_brick_wall_polishing.json b/src/main/resources/data/mineralogy/recipe/andesite_brick_wall_polishing.json index d084eacf6..10b0fcfdc 100644 --- a/src/main/resources/data/mineralogy/recipe/andesite_brick_wall_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/andesite_brick_wall_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:andesite_brick_wall" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:andesite_smooth_brick_wall", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:andesite_brick_wall", + "#c:sands" + ], + "result": { + "id": "mineralogy:andesite_smooth_brick_wall", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/andesite_cobblestone.json b/src/main/resources/data/mineralogy/recipe/andesite_cobblestone.json index 6ade4dd7f..09b12d5dd 100644 --- a/src/main/resources/data/mineralogy/recipe/andesite_cobblestone.json +++ b/src/main/resources/data/mineralogy/recipe/andesite_cobblestone.json @@ -1,22 +1,14 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "tag": "mineralogy:stones/andesite" - }, - { - "tag": "mineralogy:stones/andesite" - }, - { - "item": "minecraft:gravel" - }, - { - "item": "minecraft:gravel" - } - ], - "result": { - "id": "minecraft:cobblestone", - "count": 4 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "#mineralogy:stones/andesite", + "#mineralogy:stones/andesite", + "minecraft:gravel", + "minecraft:gravel" + ], + "result": { + "id": "minecraft:cobblestone", + "count": 4 + } } diff --git a/src/main/resources/data/mineralogy/recipe/andesite_furnace.json b/src/main/resources/data/mineralogy/recipe/andesite_furnace.json index 8dc5d2d24..f37653622 100644 --- a/src/main/resources/data/mineralogy/recipe/andesite_furnace.json +++ b/src/main/resources/data/mineralogy/recipe/andesite_furnace.json @@ -1,22 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "xxx", - "xyx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:slabs/andesite" - }, - "y": { - "item": "minecraft:furnace" - } - }, - "result": { - "id": "mineralogy:andesite_furnace", - "count": 1 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "xxx", + "xyx", + "xxx" + ], + "key": { + "x": "#mineralogy:slabs/andesite", + "y": "minecraft:furnace" + }, + "result": { + "id": "mineralogy:andesite_furnace", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/andesite_polished_brick_slab_recombination.json b/src/main/resources/data/mineralogy/recipe/andesite_polished_brick_slab_recombination.json index 19807e073..67b6445cc 100644 --- a/src/main/resources/data/mineralogy/recipe/andesite_polished_brick_slab_recombination.json +++ b/src/main/resources/data/mineralogy/recipe/andesite_polished_brick_slab_recombination.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:andesite_smooth_brick_slab" - }, - { - "item": "mineralogy:andesite_smooth_brick_slab" - } - ], - "result": { - "id": "mineralogy:andesite_smooth_brick", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:andesite_smooth_brick_slab", + "mineralogy:andesite_smooth_brick_slab" + ], + "result": { + "id": "mineralogy:andesite_smooth_brick", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/andesite_polished_slab_recombination.json b/src/main/resources/data/mineralogy/recipe/andesite_polished_slab_recombination.json index 18820b4dc..6026e0303 100644 --- a/src/main/resources/data/mineralogy/recipe/andesite_polished_slab_recombination.json +++ b/src/main/resources/data/mineralogy/recipe/andesite_polished_slab_recombination.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:andesite_smooth_slab" - }, - { - "item": "mineralogy:andesite_smooth_slab" - } - ], - "result": { - "id": "mineralogy:andesite_smooth", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:andesite_smooth_slab", + "mineralogy:andesite_smooth_slab" + ], + "result": { + "id": "mineralogy:andesite_smooth", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/andesite_polished_slabs_to_brick.json b/src/main/resources/data/mineralogy/recipe/andesite_polished_slabs_to_brick.json index c2147efbe..24d3e3622 100644 --- a/src/main/resources/data/mineralogy/recipe/andesite_polished_slabs_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/andesite_polished_slabs_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:andesite_smooth_slab" - } - }, - "result": { - "id": "mineralogy:andesite_smooth_brick_slab", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:andesite_smooth_slab" + }, + "result": { + "id": "mineralogy:andesite_smooth_brick_slab", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/andesite_polished_stairs_to_brick.json b/src/main/resources/data/mineralogy/recipe/andesite_polished_stairs_to_brick.json index db1a79ba2..d1e96f7b4 100644 --- a/src/main/resources/data/mineralogy/recipe/andesite_polished_stairs_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/andesite_polished_stairs_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:andesite_smooth_stairs" - } - }, - "result": { - "id": "mineralogy:andesite_smooth_brick_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:andesite_smooth_stairs" + }, + "result": { + "id": "mineralogy:andesite_smooth_brick_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/andesite_polished_walls_to_brick.json b/src/main/resources/data/mineralogy/recipe/andesite_polished_walls_to_brick.json index 2f6cc1dca..56fb539ff 100644 --- a/src/main/resources/data/mineralogy/recipe/andesite_polished_walls_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/andesite_polished_walls_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:andesite_smooth_wall" - } - }, - "result": { - "id": "mineralogy:andesite_smooth_brick_wall", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:andesite_smooth_wall" + }, + "result": { + "id": "mineralogy:andesite_smooth_brick_wall", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/andesite_raw_slab_polishing.json b/src/main/resources/data/mineralogy/recipe/andesite_raw_slab_polishing.json index a95b23798..310b691f5 100644 --- a/src/main/resources/data/mineralogy/recipe/andesite_raw_slab_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/andesite_raw_slab_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:andesite_slab" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:andesite_smooth_slab", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:andesite_slab", + "#c:sands" + ], + "result": { + "id": "mineralogy:andesite_smooth_slab", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/andesite_raw_slab_recombination.json b/src/main/resources/data/mineralogy/recipe/andesite_raw_slab_recombination.json index 7520db369..93f81f20b 100644 --- a/src/main/resources/data/mineralogy/recipe/andesite_raw_slab_recombination.json +++ b/src/main/resources/data/mineralogy/recipe/andesite_raw_slab_recombination.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:andesite_slab" - }, - { - "item": "mineralogy:andesite_slab" - } - ], - "result": { - "id": "mineralogy:andesite", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:andesite_slab", + "mineralogy:andesite_slab" + ], + "result": { + "id": "mineralogy:andesite", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/andesite_raw_slabs_to_brick.json b/src/main/resources/data/mineralogy/recipe/andesite_raw_slabs_to_brick.json index 2fc26d0fe..3d99c4447 100644 --- a/src/main/resources/data/mineralogy/recipe/andesite_raw_slabs_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/andesite_raw_slabs_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:andesite_slab" - } - }, - "result": { - "id": "mineralogy:andesite_brick_slab", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:andesite_slab" + }, + "result": { + "id": "mineralogy:andesite_brick_slab", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/andesite_raw_stairs_polishing.json b/src/main/resources/data/mineralogy/recipe/andesite_raw_stairs_polishing.json index 543aafaf7..0fcb95a12 100644 --- a/src/main/resources/data/mineralogy/recipe/andesite_raw_stairs_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/andesite_raw_stairs_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:andesite_stairs" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:andesite_smooth_stairs", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:andesite_stairs", + "#c:sands" + ], + "result": { + "id": "mineralogy:andesite_smooth_stairs", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/andesite_raw_stairs_to_brick.json b/src/main/resources/data/mineralogy/recipe/andesite_raw_stairs_to_brick.json index a8d40a4d6..366b77c05 100644 --- a/src/main/resources/data/mineralogy/recipe/andesite_raw_stairs_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/andesite_raw_stairs_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:andesite_stairs" - } - }, - "result": { - "id": "mineralogy:andesite_brick_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:andesite_stairs" + }, + "result": { + "id": "mineralogy:andesite_brick_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/andesite_raw_wall_polishing.json b/src/main/resources/data/mineralogy/recipe/andesite_raw_wall_polishing.json index 10900f443..9f72000d7 100644 --- a/src/main/resources/data/mineralogy/recipe/andesite_raw_wall_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/andesite_raw_wall_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:andesite_wall" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:andesite_smooth_wall", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:andesite_wall", + "#c:sands" + ], + "result": { + "id": "mineralogy:andesite_smooth_wall", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/andesite_raw_walls_to_brick.json b/src/main/resources/data/mineralogy/recipe/andesite_raw_walls_to_brick.json index e42923e90..1f741cec1 100644 --- a/src/main/resources/data/mineralogy/recipe/andesite_raw_walls_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/andesite_raw_walls_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:andesite_wall" - } - }, - "result": { - "id": "mineralogy:andesite_brick_wall", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:andesite_wall" + }, + "result": { + "id": "mineralogy:andesite_brick_wall", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/andesite_relief_axe.json b/src/main/resources/data/mineralogy/recipe/andesite_relief_axe.json index b209f080f..2c8202571 100644 --- a/src/main/resources/data/mineralogy/recipe/andesite_relief_axe.json +++ b/src/main/resources/data/mineralogy/recipe/andesite_relief_axe.json @@ -1,37 +1,19 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:andesite_relief_blank" - }, - { - "item": "mineralogy:andesite_relief_blank" - }, - { - "item": "mineralogy:andesite_relief_blank" - }, - { - "item": "mineralogy:andesite_relief_blank" - }, - { - "item": "mineralogy:andesite_relief_blank" - }, - { - "item": "mineralogy:andesite_relief_blank" - }, - { - "item": "mineralogy:andesite_relief_blank" - }, - { - "item": "mineralogy:andesite_relief_blank" - }, - { - "item": "minecraft:stone_axe" - } - ], - "result": { - "id": "mineralogy:andesite_relief_axe", - "count": 8 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:andesite_relief_blank", + "mineralogy:andesite_relief_blank", + "mineralogy:andesite_relief_blank", + "mineralogy:andesite_relief_blank", + "mineralogy:andesite_relief_blank", + "mineralogy:andesite_relief_blank", + "mineralogy:andesite_relief_blank", + "mineralogy:andesite_relief_blank", + "minecraft:stone_axe" + ], + "result": { + "id": "mineralogy:andesite_relief_axe", + "count": 8 + } } diff --git a/src/main/resources/data/mineralogy/recipe/andesite_relief_blank.json b/src/main/resources/data/mineralogy/recipe/andesite_relief_blank.json index 53801ab0c..5a119259d 100644 --- a/src/main/resources/data/mineralogy/recipe/andesite_relief_blank.json +++ b/src/main/resources/data/mineralogy/recipe/andesite_relief_blank.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/andesite/smooth" - } - }, - "result": { - "id": "mineralogy:andesite_relief_blank", - "count": 16 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/andesite/smooth" + }, + "result": { + "id": "mineralogy:andesite_relief_blank", + "count": 16 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/andesite_relief_cross.json b/src/main/resources/data/mineralogy/recipe/andesite_relief_cross.json index 5f14ccf2b..20ac139bb 100644 --- a/src/main/resources/data/mineralogy/recipe/andesite_relief_cross.json +++ b/src/main/resources/data/mineralogy/recipe/andesite_relief_cross.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x x", - " ", - "x x" - ], - "key": { - "x": { - "item": "mineralogy:andesite_relief_blank" - } - }, - "result": { - "id": "mineralogy:andesite_relief_cross", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x x", + " ", + "x x" + ], + "key": { + "x": "mineralogy:andesite_relief_blank" + }, + "result": { + "id": "mineralogy:andesite_relief_cross", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/andesite_relief_hammer.json b/src/main/resources/data/mineralogy/recipe/andesite_relief_hammer.json index e3d1ea762..76e744283 100644 --- a/src/main/resources/data/mineralogy/recipe/andesite_relief_hammer.json +++ b/src/main/resources/data/mineralogy/recipe/andesite_relief_hammer.json @@ -1,25 +1,19 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "zxz", - "zyz", - "zzz" - ], - "key": { - "x": { - "item": "mineralogy:andesite_smooth" - }, - "y": { - "item": "minecraft:stick" - }, - "z": { - "item": "mineralogy:andesite_relief_blank" - } - }, - "result": { - "id": "mineralogy:andesite_relief_hammer", - "count": 7 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "zxz", + "zyz", + "zzz" + ], + "key": { + "x": "mineralogy:andesite_smooth", + "y": "minecraft:stick", + "z": "mineralogy:andesite_relief_blank" + }, + "result": { + "id": "mineralogy:andesite_relief_hammer", + "count": 7 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/andesite_relief_hoe.json b/src/main/resources/data/mineralogy/recipe/andesite_relief_hoe.json index 5b00b85fb..e1672d86b 100644 --- a/src/main/resources/data/mineralogy/recipe/andesite_relief_hoe.json +++ b/src/main/resources/data/mineralogy/recipe/andesite_relief_hoe.json @@ -1,37 +1,19 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:andesite_relief_blank" - }, - { - "item": "mineralogy:andesite_relief_blank" - }, - { - "item": "mineralogy:andesite_relief_blank" - }, - { - "item": "mineralogy:andesite_relief_blank" - }, - { - "item": "mineralogy:andesite_relief_blank" - }, - { - "item": "mineralogy:andesite_relief_blank" - }, - { - "item": "mineralogy:andesite_relief_blank" - }, - { - "item": "mineralogy:andesite_relief_blank" - }, - { - "item": "minecraft:stone_hoe" - } - ], - "result": { - "id": "mineralogy:andesite_relief_hoe", - "count": 8 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:andesite_relief_blank", + "mineralogy:andesite_relief_blank", + "mineralogy:andesite_relief_blank", + "mineralogy:andesite_relief_blank", + "mineralogy:andesite_relief_blank", + "mineralogy:andesite_relief_blank", + "mineralogy:andesite_relief_blank", + "mineralogy:andesite_relief_blank", + "minecraft:stone_hoe" + ], + "result": { + "id": "mineralogy:andesite_relief_hoe", + "count": 8 + } } diff --git a/src/main/resources/data/mineralogy/recipe/andesite_relief_horizontal.json b/src/main/resources/data/mineralogy/recipe/andesite_relief_horizontal.json index e1b250058..39a675b27 100644 --- a/src/main/resources/data/mineralogy/recipe/andesite_relief_horizontal.json +++ b/src/main/resources/data/mineralogy/recipe/andesite_relief_horizontal.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:andesite_relief_blank" - } - }, - "result": { - "id": "mineralogy:andesite_relief_horizontal", - "count": 3 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:andesite_relief_blank" + }, + "result": { + "id": "mineralogy:andesite_relief_horizontal", + "count": 3 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/andesite_relief_i.json b/src/main/resources/data/mineralogy/recipe/andesite_relief_i.json index 4191adb98..41161e857 100644 --- a/src/main/resources/data/mineralogy/recipe/andesite_relief_i.json +++ b/src/main/resources/data/mineralogy/recipe/andesite_relief_i.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - " x ", - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:andesite_relief_blank" - } - }, - "result": { - "id": "mineralogy:andesite_relief_i", - "count": 7 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + " x ", + "xxx" + ], + "key": { + "x": "mineralogy:andesite_relief_blank" + }, + "result": { + "id": "mineralogy:andesite_relief_i", + "count": 7 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/andesite_relief_left.json b/src/main/resources/data/mineralogy/recipe/andesite_relief_left.json index c7488e34b..5bf4a4e13 100644 --- a/src/main/resources/data/mineralogy/recipe/andesite_relief_left.json +++ b/src/main/resources/data/mineralogy/recipe/andesite_relief_left.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - " x ", - " x" - ], - "key": { - "x": { - "item": "mineralogy:andesite_relief_blank" - } - }, - "result": { - "id": "mineralogy:andesite_relief_left", - "count": 3 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + " x ", + " x" + ], + "key": { + "x": "mineralogy:andesite_relief_blank" + }, + "result": { + "id": "mineralogy:andesite_relief_left", + "count": 3 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/andesite_relief_pickaxe.json b/src/main/resources/data/mineralogy/recipe/andesite_relief_pickaxe.json index 738ebf435..177812d4f 100644 --- a/src/main/resources/data/mineralogy/recipe/andesite_relief_pickaxe.json +++ b/src/main/resources/data/mineralogy/recipe/andesite_relief_pickaxe.json @@ -1,37 +1,19 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:andesite_relief_blank" - }, - { - "item": "mineralogy:andesite_relief_blank" - }, - { - "item": "mineralogy:andesite_relief_blank" - }, - { - "item": "mineralogy:andesite_relief_blank" - }, - { - "item": "mineralogy:andesite_relief_blank" - }, - { - "item": "mineralogy:andesite_relief_blank" - }, - { - "item": "mineralogy:andesite_relief_blank" - }, - { - "item": "mineralogy:andesite_relief_blank" - }, - { - "item": "minecraft:stone_pickaxe" - } - ], - "result": { - "id": "mineralogy:andesite_relief_pickaxe", - "count": 8 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:andesite_relief_blank", + "mineralogy:andesite_relief_blank", + "mineralogy:andesite_relief_blank", + "mineralogy:andesite_relief_blank", + "mineralogy:andesite_relief_blank", + "mineralogy:andesite_relief_blank", + "mineralogy:andesite_relief_blank", + "mineralogy:andesite_relief_blank", + "minecraft:stone_pickaxe" + ], + "result": { + "id": "mineralogy:andesite_relief_pickaxe", + "count": 8 + } } diff --git a/src/main/resources/data/mineralogy/recipe/andesite_relief_plus.json b/src/main/resources/data/mineralogy/recipe/andesite_relief_plus.json index bcba6e0d7..adfda1239 100644 --- a/src/main/resources/data/mineralogy/recipe/andesite_relief_plus.json +++ b/src/main/resources/data/mineralogy/recipe/andesite_relief_plus.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - " x ", - "xxx", - " x " - ], - "key": { - "x": { - "item": "mineralogy:andesite_relief_blank" - } - }, - "result": { - "id": "mineralogy:andesite_relief_plus", - "count": 5 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + " x ", + "xxx", + " x " + ], + "key": { + "x": "mineralogy:andesite_relief_blank" + }, + "result": { + "id": "mineralogy:andesite_relief_plus", + "count": 5 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/andesite_relief_right.json b/src/main/resources/data/mineralogy/recipe/andesite_relief_right.json index 6a9f32d5e..f71155f8b 100644 --- a/src/main/resources/data/mineralogy/recipe/andesite_relief_right.json +++ b/src/main/resources/data/mineralogy/recipe/andesite_relief_right.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:andesite_relief_left" - }, - { - "item": "mineralogy:andesite_relief_left" - } - ], - "result": { - "id": "mineralogy:andesite_relief_right", - "count": 2 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:andesite_relief_left", + "mineralogy:andesite_relief_left" + ], + "result": { + "id": "mineralogy:andesite_relief_right", + "count": 2 + } } diff --git a/src/main/resources/data/mineralogy/recipe/andesite_relief_sword.json b/src/main/resources/data/mineralogy/recipe/andesite_relief_sword.json index 9281ada8f..308ba3879 100644 --- a/src/main/resources/data/mineralogy/recipe/andesite_relief_sword.json +++ b/src/main/resources/data/mineralogy/recipe/andesite_relief_sword.json @@ -1,37 +1,19 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:andesite_relief_blank" - }, - { - "item": "mineralogy:andesite_relief_blank" - }, - { - "item": "mineralogy:andesite_relief_blank" - }, - { - "item": "mineralogy:andesite_relief_blank" - }, - { - "item": "mineralogy:andesite_relief_blank" - }, - { - "item": "mineralogy:andesite_relief_blank" - }, - { - "item": "mineralogy:andesite_relief_blank" - }, - { - "item": "mineralogy:andesite_relief_blank" - }, - { - "item": "minecraft:stone_sword" - } - ], - "result": { - "id": "mineralogy:andesite_relief_sword", - "count": 8 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:andesite_relief_blank", + "mineralogy:andesite_relief_blank", + "mineralogy:andesite_relief_blank", + "mineralogy:andesite_relief_blank", + "mineralogy:andesite_relief_blank", + "mineralogy:andesite_relief_blank", + "mineralogy:andesite_relief_blank", + "mineralogy:andesite_relief_blank", + "minecraft:stone_sword" + ], + "result": { + "id": "mineralogy:andesite_relief_sword", + "count": 8 + } } diff --git a/src/main/resources/data/mineralogy/recipe/andesite_relief_vertical.json b/src/main/resources/data/mineralogy/recipe/andesite_relief_vertical.json index c4544fe81..337d55080 100644 --- a/src/main/resources/data/mineralogy/recipe/andesite_relief_vertical.json +++ b/src/main/resources/data/mineralogy/recipe/andesite_relief_vertical.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x", - "x", - "x" - ], - "key": { - "x": { - "item": "mineralogy:andesite_relief_blank" - } - }, - "result": { - "id": "mineralogy:andesite_relief_vertical", - "count": 3 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x", + "x", + "x" + ], + "key": { + "x": "mineralogy:andesite_relief_blank" + }, + "result": { + "id": "mineralogy:andesite_relief_vertical", + "count": 3 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/andesite_slab.json b/src/main/resources/data/mineralogy/recipe/andesite_slab.json index d3c3de9c3..a1bbc1431 100644 --- a/src/main/resources/data/mineralogy/recipe/andesite_slab.json +++ b/src/main/resources/data/mineralogy/recipe/andesite_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:andesite" - } - }, - "result": { - "id": "mineralogy:andesite_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:andesite" + }, + "result": { + "id": "mineralogy:andesite_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/andesite_slab_from_vanilla.json b/src/main/resources/data/mineralogy/recipe/andesite_slab_from_vanilla.json index f69232d25..c385be994 100644 --- a/src/main/resources/data/mineralogy/recipe/andesite_slab_from_vanilla.json +++ b/src/main/resources/data/mineralogy/recipe/andesite_slab_from_vanilla.json @@ -1,13 +1,11 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "minecraft:andesite_slab" - } - ], - "result": { - "id": "mineralogy:andesite_slab", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "minecraft:andesite_slab" + ], + "result": { + "id": "mineralogy:andesite_slab", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/andesite_slab_to_vanilla.json b/src/main/resources/data/mineralogy/recipe/andesite_slab_to_vanilla.json index 004bd7fa7..51b74f06d 100644 --- a/src/main/resources/data/mineralogy/recipe/andesite_slab_to_vanilla.json +++ b/src/main/resources/data/mineralogy/recipe/andesite_slab_to_vanilla.json @@ -1,13 +1,11 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:andesite_slab" - } - ], - "result": { - "id": "minecraft:andesite_slab", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:andesite_slab" + ], + "result": { + "id": "minecraft:andesite_slab", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/andesite_smooth.json b/src/main/resources/data/mineralogy/recipe/andesite_smooth.json index 7ac4a9c7c..ef43a826b 100644 --- a/src/main/resources/data/mineralogy/recipe/andesite_smooth.json +++ b/src/main/resources/data/mineralogy/recipe/andesite_smooth.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:andesite" - }, - { - "item": "minecraft:sand" - } - ], - "result": { - "id": "mineralogy:andesite_smooth", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:andesite", + "minecraft:sand" + ], + "result": { + "id": "mineralogy:andesite_smooth", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/andesite_smooth_brick.json b/src/main/resources/data/mineralogy/recipe/andesite_smooth_brick.json index 34997ace0..92d2c7b7f 100644 --- a/src/main/resources/data/mineralogy/recipe/andesite_smooth_brick.json +++ b/src/main/resources/data/mineralogy/recipe/andesite_smooth_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/andesite/smooth" - } - }, - "result": { - "id": "mineralogy:andesite_smooth_brick", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "#mineralogy:stones/andesite/smooth" + }, + "result": { + "id": "mineralogy:andesite_smooth_brick", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/andesite_smooth_brick_furnace.json b/src/main/resources/data/mineralogy/recipe/andesite_smooth_brick_furnace.json index 3b1421ff0..d3085431b 100644 --- a/src/main/resources/data/mineralogy/recipe/andesite_smooth_brick_furnace.json +++ b/src/main/resources/data/mineralogy/recipe/andesite_smooth_brick_furnace.json @@ -1,22 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "xxx", - "xyx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:slabs/andesite/smooth_brick" - }, - "y": { - "item": "minecraft:furnace" - } - }, - "result": { - "id": "mineralogy:andesite_smooth_brick_furnace", - "count": 1 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "xxx", + "xyx", + "xxx" + ], + "key": { + "x": "#mineralogy:slabs/andesite/smooth_brick", + "y": "minecraft:furnace" + }, + "result": { + "id": "mineralogy:andesite_smooth_brick_furnace", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/andesite_smooth_brick_slab.json b/src/main/resources/data/mineralogy/recipe/andesite_smooth_brick_slab.json index 74e7558a6..b535c04fa 100644 --- a/src/main/resources/data/mineralogy/recipe/andesite_smooth_brick_slab.json +++ b/src/main/resources/data/mineralogy/recipe/andesite_smooth_brick_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:andesite_smooth_brick" - } - }, - "result": { - "id": "mineralogy:andesite_smooth_brick_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:andesite_smooth_brick" + }, + "result": { + "id": "mineralogy:andesite_smooth_brick_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/andesite_smooth_brick_stairs.json b/src/main/resources/data/mineralogy/recipe/andesite_smooth_brick_stairs.json index b944b7851..e53d6b750 100644 --- a/src/main/resources/data/mineralogy/recipe/andesite_smooth_brick_stairs.json +++ b/src/main/resources/data/mineralogy/recipe/andesite_smooth_brick_stairs.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - "xx ", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/andesite/smooth_brick" - } - }, - "result": { - "id": "mineralogy:andesite_smooth_brick_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + "xx ", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/andesite/smooth_brick" + }, + "result": { + "id": "mineralogy:andesite_smooth_brick_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/andesite_smooth_brick_wall.json b/src/main/resources/data/mineralogy/recipe/andesite_smooth_brick_wall.json index c15b159f7..5a36fb342 100644 --- a/src/main/resources/data/mineralogy/recipe/andesite_smooth_brick_wall.json +++ b/src/main/resources/data/mineralogy/recipe/andesite_smooth_brick_wall.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/andesite/smooth_brick" - } - }, - "result": { - "id": "mineralogy:andesite_smooth_brick_wall", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/andesite/smooth_brick" + }, + "result": { + "id": "mineralogy:andesite_smooth_brick_wall", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/andesite_smooth_furnace.json b/src/main/resources/data/mineralogy/recipe/andesite_smooth_furnace.json index 90cf334d8..f183a998c 100644 --- a/src/main/resources/data/mineralogy/recipe/andesite_smooth_furnace.json +++ b/src/main/resources/data/mineralogy/recipe/andesite_smooth_furnace.json @@ -1,22 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "xxx", - "xyx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:slabs/andesite/smooth" - }, - "y": { - "item": "minecraft:furnace" - } - }, - "result": { - "id": "mineralogy:andesite_smooth_furnace", - "count": 1 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "xxx", + "xyx", + "xxx" + ], + "key": { + "x": "#mineralogy:slabs/andesite/smooth", + "y": "minecraft:furnace" + }, + "result": { + "id": "mineralogy:andesite_smooth_furnace", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/andesite_smooth_slab.json b/src/main/resources/data/mineralogy/recipe/andesite_smooth_slab.json index 376eb77e3..3708f7336 100644 --- a/src/main/resources/data/mineralogy/recipe/andesite_smooth_slab.json +++ b/src/main/resources/data/mineralogy/recipe/andesite_smooth_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:andesite_smooth" - } - }, - "result": { - "id": "mineralogy:andesite_smooth_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:andesite_smooth" + }, + "result": { + "id": "mineralogy:andesite_smooth_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/andesite_smooth_slab_from_vanilla.json b/src/main/resources/data/mineralogy/recipe/andesite_smooth_slab_from_vanilla.json index 547669333..e19880405 100644 --- a/src/main/resources/data/mineralogy/recipe/andesite_smooth_slab_from_vanilla.json +++ b/src/main/resources/data/mineralogy/recipe/andesite_smooth_slab_from_vanilla.json @@ -1,13 +1,11 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "minecraft:polished_andesite_slab" - } - ], - "result": { - "id": "mineralogy:andesite_smooth_slab", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "minecraft:polished_andesite_slab" + ], + "result": { + "id": "mineralogy:andesite_smooth_slab", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/andesite_smooth_slab_to_vanilla.json b/src/main/resources/data/mineralogy/recipe/andesite_smooth_slab_to_vanilla.json index 2c64d8ffe..18e08703b 100644 --- a/src/main/resources/data/mineralogy/recipe/andesite_smooth_slab_to_vanilla.json +++ b/src/main/resources/data/mineralogy/recipe/andesite_smooth_slab_to_vanilla.json @@ -1,13 +1,11 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:andesite_smooth_slab" - } - ], - "result": { - "id": "minecraft:polished_andesite_slab", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:andesite_smooth_slab" + ], + "result": { + "id": "minecraft:polished_andesite_slab", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/andesite_smooth_stairs.json b/src/main/resources/data/mineralogy/recipe/andesite_smooth_stairs.json index c454ded9a..b1aa71e69 100644 --- a/src/main/resources/data/mineralogy/recipe/andesite_smooth_stairs.json +++ b/src/main/resources/data/mineralogy/recipe/andesite_smooth_stairs.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - "xx ", - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:andesite_smooth" - } - }, - "result": { - "id": "mineralogy:andesite_smooth_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + "xx ", + "xxx" + ], + "key": { + "x": "mineralogy:andesite_smooth" + }, + "result": { + "id": "mineralogy:andesite_smooth_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/andesite_smooth_wall.json b/src/main/resources/data/mineralogy/recipe/andesite_smooth_wall.json index 72d8809ab..65cc6e10a 100644 --- a/src/main/resources/data/mineralogy/recipe/andesite_smooth_wall.json +++ b/src/main/resources/data/mineralogy/recipe/andesite_smooth_wall.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/andesite/smooth" - } - }, - "result": { - "id": "mineralogy:andesite_smooth_wall", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/andesite/smooth" + }, + "result": { + "id": "mineralogy:andesite_smooth_wall", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/andesite_stairs.json b/src/main/resources/data/mineralogy/recipe/andesite_stairs.json index d5e94c226..cfc617273 100644 --- a/src/main/resources/data/mineralogy/recipe/andesite_stairs.json +++ b/src/main/resources/data/mineralogy/recipe/andesite_stairs.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - "xx ", - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:andesite" - } - }, - "result": { - "id": "mineralogy:andesite_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + "xx ", + "xxx" + ], + "key": { + "x": "mineralogy:andesite" + }, + "result": { + "id": "mineralogy:andesite_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/andesite_to_stone.json b/src/main/resources/data/mineralogy/recipe/andesite_to_stone.json index 836df6a80..03a5e6a82 100644 --- a/src/main/resources/data/mineralogy/recipe/andesite_to_stone.json +++ b/src/main/resources/data/mineralogy/recipe/andesite_to_stone.json @@ -1,12 +1,10 @@ { - "type": "minecraft:smelting", - "category": "blocks", - "ingredient": { - "item": "mineralogy:andesite" - }, - "result": { - "id": "minecraft:stone" - }, - "experience": 0.1, - "cookingtime": 200 + "type": "minecraft:smelting", + "category": "blocks", + "ingredient": "mineralogy:andesite", + "result": { + "id": "minecraft:stone" + }, + "experience": 0.1, + "cookingtime": 200 } diff --git a/src/main/resources/data/mineralogy/recipe/andesite_wall.json b/src/main/resources/data/mineralogy/recipe/andesite_wall.json index 7ae7eb82e..f129f97fe 100644 --- a/src/main/resources/data/mineralogy/recipe/andesite_wall.json +++ b/src/main/resources/data/mineralogy/recipe/andesite_wall.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:andesite" - } - }, - "result": { - "id": "mineralogy:andesite_wall", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx" + ], + "key": { + "x": "mineralogy:andesite" + }, + "result": { + "id": "mineralogy:andesite_wall", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/basalt_brick.json b/src/main/resources/data/mineralogy/recipe/basalt_brick.json index 9403f7adb..25b268949 100644 --- a/src/main/resources/data/mineralogy/recipe/basalt_brick.json +++ b/src/main/resources/data/mineralogy/recipe/basalt_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/basalt" - } - }, - "result": { - "id": "mineralogy:basalt_brick", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "#mineralogy:stones/basalt" + }, + "result": { + "id": "mineralogy:basalt_brick", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/basalt_brick_block_polishing.json b/src/main/resources/data/mineralogy/recipe/basalt_brick_block_polishing.json index 95f7aee72..41675dee0 100644 --- a/src/main/resources/data/mineralogy/recipe/basalt_brick_block_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/basalt_brick_block_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:basalt_brick" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:basalt_smooth_brick", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:basalt_brick", + "#c:sands" + ], + "result": { + "id": "mineralogy:basalt_smooth_brick", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/basalt_brick_furnace.json b/src/main/resources/data/mineralogy/recipe/basalt_brick_furnace.json index 27d9087bd..45935e566 100644 --- a/src/main/resources/data/mineralogy/recipe/basalt_brick_furnace.json +++ b/src/main/resources/data/mineralogy/recipe/basalt_brick_furnace.json @@ -1,22 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "xxx", - "xyx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:slabs/basalt/brick" - }, - "y": { - "item": "minecraft:furnace" - } - }, - "result": { - "id": "mineralogy:basalt_brick_furnace", - "count": 1 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "xxx", + "xyx", + "xxx" + ], + "key": { + "x": "#mineralogy:slabs/basalt/brick", + "y": "minecraft:furnace" + }, + "result": { + "id": "mineralogy:basalt_brick_furnace", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/basalt_brick_slab.json b/src/main/resources/data/mineralogy/recipe/basalt_brick_slab.json index 71e31200b..fa44882cd 100644 --- a/src/main/resources/data/mineralogy/recipe/basalt_brick_slab.json +++ b/src/main/resources/data/mineralogy/recipe/basalt_brick_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:basalt_brick" - } - }, - "result": { - "id": "mineralogy:basalt_brick_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:basalt_brick" + }, + "result": { + "id": "mineralogy:basalt_brick_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/basalt_brick_slab_polishing.json b/src/main/resources/data/mineralogy/recipe/basalt_brick_slab_polishing.json index f8827b4b6..d13aae5a6 100644 --- a/src/main/resources/data/mineralogy/recipe/basalt_brick_slab_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/basalt_brick_slab_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:basalt_brick_slab" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:basalt_smooth_brick_slab", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:basalt_brick_slab", + "#c:sands" + ], + "result": { + "id": "mineralogy:basalt_smooth_brick_slab", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/basalt_brick_slab_recombination.json b/src/main/resources/data/mineralogy/recipe/basalt_brick_slab_recombination.json index 488c08861..f9581ddc1 100644 --- a/src/main/resources/data/mineralogy/recipe/basalt_brick_slab_recombination.json +++ b/src/main/resources/data/mineralogy/recipe/basalt_brick_slab_recombination.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:basalt_brick_slab" - }, - { - "item": "mineralogy:basalt_brick_slab" - } - ], - "result": { - "id": "mineralogy:basalt_brick", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:basalt_brick_slab", + "mineralogy:basalt_brick_slab" + ], + "result": { + "id": "mineralogy:basalt_brick", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/basalt_brick_stairs.json b/src/main/resources/data/mineralogy/recipe/basalt_brick_stairs.json index 57d2737c2..67d4eef32 100644 --- a/src/main/resources/data/mineralogy/recipe/basalt_brick_stairs.json +++ b/src/main/resources/data/mineralogy/recipe/basalt_brick_stairs.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - "xx ", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/basalt/brick" - } - }, - "result": { - "id": "mineralogy:basalt_brick_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + "xx ", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/basalt/brick" + }, + "result": { + "id": "mineralogy:basalt_brick_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/basalt_brick_stairs_polishing.json b/src/main/resources/data/mineralogy/recipe/basalt_brick_stairs_polishing.json index ad9aae9a9..21d04e1b7 100644 --- a/src/main/resources/data/mineralogy/recipe/basalt_brick_stairs_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/basalt_brick_stairs_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:basalt_brick_stairs" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:basalt_smooth_brick_stairs", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:basalt_brick_stairs", + "#c:sands" + ], + "result": { + "id": "mineralogy:basalt_smooth_brick_stairs", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/basalt_brick_wall.json b/src/main/resources/data/mineralogy/recipe/basalt_brick_wall.json index 2ab149c0a..ac8075f4c 100644 --- a/src/main/resources/data/mineralogy/recipe/basalt_brick_wall.json +++ b/src/main/resources/data/mineralogy/recipe/basalt_brick_wall.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/basalt/brick" - } - }, - "result": { - "id": "mineralogy:basalt_brick_wall", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/basalt/brick" + }, + "result": { + "id": "mineralogy:basalt_brick_wall", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/basalt_brick_wall_polishing.json b/src/main/resources/data/mineralogy/recipe/basalt_brick_wall_polishing.json index 8cf72f603..846887964 100644 --- a/src/main/resources/data/mineralogy/recipe/basalt_brick_wall_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/basalt_brick_wall_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:basalt_brick_wall" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:basalt_smooth_brick_wall", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:basalt_brick_wall", + "#c:sands" + ], + "result": { + "id": "mineralogy:basalt_smooth_brick_wall", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/basalt_cobblestone.json b/src/main/resources/data/mineralogy/recipe/basalt_cobblestone.json index 6dd85c30e..277561934 100644 --- a/src/main/resources/data/mineralogy/recipe/basalt_cobblestone.json +++ b/src/main/resources/data/mineralogy/recipe/basalt_cobblestone.json @@ -1,22 +1,14 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "tag": "mineralogy:stones/basalt" - }, - { - "tag": "mineralogy:stones/basalt" - }, - { - "item": "minecraft:gravel" - }, - { - "item": "minecraft:gravel" - } - ], - "result": { - "id": "minecraft:cobblestone", - "count": 4 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "#mineralogy:stones/basalt", + "#mineralogy:stones/basalt", + "minecraft:gravel", + "minecraft:gravel" + ], + "result": { + "id": "minecraft:cobblestone", + "count": 4 + } } diff --git a/src/main/resources/data/mineralogy/recipe/basalt_furnace.json b/src/main/resources/data/mineralogy/recipe/basalt_furnace.json index d49a2c256..3346de2d1 100644 --- a/src/main/resources/data/mineralogy/recipe/basalt_furnace.json +++ b/src/main/resources/data/mineralogy/recipe/basalt_furnace.json @@ -1,22 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "xxx", - "xyx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:slabs/basalt" - }, - "y": { - "item": "minecraft:furnace" - } - }, - "result": { - "id": "mineralogy:basalt_furnace", - "count": 1 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "xxx", + "xyx", + "xxx" + ], + "key": { + "x": "#mineralogy:slabs/basalt", + "y": "minecraft:furnace" + }, + "result": { + "id": "mineralogy:basalt_furnace", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/basalt_polished_brick_slab_recombination.json b/src/main/resources/data/mineralogy/recipe/basalt_polished_brick_slab_recombination.json index 089bce5af..82f12e060 100644 --- a/src/main/resources/data/mineralogy/recipe/basalt_polished_brick_slab_recombination.json +++ b/src/main/resources/data/mineralogy/recipe/basalt_polished_brick_slab_recombination.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:basalt_smooth_brick_slab" - }, - { - "item": "mineralogy:basalt_smooth_brick_slab" - } - ], - "result": { - "id": "mineralogy:basalt_smooth_brick", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:basalt_smooth_brick_slab", + "mineralogy:basalt_smooth_brick_slab" + ], + "result": { + "id": "mineralogy:basalt_smooth_brick", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/basalt_polished_slab_recombination.json b/src/main/resources/data/mineralogy/recipe/basalt_polished_slab_recombination.json index 5e0cda69f..bc24be017 100644 --- a/src/main/resources/data/mineralogy/recipe/basalt_polished_slab_recombination.json +++ b/src/main/resources/data/mineralogy/recipe/basalt_polished_slab_recombination.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:basalt_smooth_slab" - }, - { - "item": "mineralogy:basalt_smooth_slab" - } - ], - "result": { - "id": "mineralogy:basalt_smooth", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:basalt_smooth_slab", + "mineralogy:basalt_smooth_slab" + ], + "result": { + "id": "mineralogy:basalt_smooth", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/basalt_polished_slabs_to_brick.json b/src/main/resources/data/mineralogy/recipe/basalt_polished_slabs_to_brick.json index 37dbc3afc..8f14d7c15 100644 --- a/src/main/resources/data/mineralogy/recipe/basalt_polished_slabs_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/basalt_polished_slabs_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:basalt_smooth_slab" - } - }, - "result": { - "id": "mineralogy:basalt_smooth_brick_slab", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:basalt_smooth_slab" + }, + "result": { + "id": "mineralogy:basalt_smooth_brick_slab", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/basalt_polished_stairs_to_brick.json b/src/main/resources/data/mineralogy/recipe/basalt_polished_stairs_to_brick.json index e643872c0..562f7e156 100644 --- a/src/main/resources/data/mineralogy/recipe/basalt_polished_stairs_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/basalt_polished_stairs_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:basalt_smooth_stairs" - } - }, - "result": { - "id": "mineralogy:basalt_smooth_brick_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:basalt_smooth_stairs" + }, + "result": { + "id": "mineralogy:basalt_smooth_brick_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/basalt_polished_walls_to_brick.json b/src/main/resources/data/mineralogy/recipe/basalt_polished_walls_to_brick.json index f6f4cb31f..c810a9fb4 100644 --- a/src/main/resources/data/mineralogy/recipe/basalt_polished_walls_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/basalt_polished_walls_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:basalt_smooth_wall" - } - }, - "result": { - "id": "mineralogy:basalt_smooth_brick_wall", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:basalt_smooth_wall" + }, + "result": { + "id": "mineralogy:basalt_smooth_brick_wall", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/basalt_raw_slab_polishing.json b/src/main/resources/data/mineralogy/recipe/basalt_raw_slab_polishing.json index 487b041ed..92cd7d487 100644 --- a/src/main/resources/data/mineralogy/recipe/basalt_raw_slab_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/basalt_raw_slab_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:basalt_slab" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:basalt_smooth_slab", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:basalt_slab", + "#c:sands" + ], + "result": { + "id": "mineralogy:basalt_smooth_slab", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/basalt_raw_slab_recombination.json b/src/main/resources/data/mineralogy/recipe/basalt_raw_slab_recombination.json index 8b56c097d..d69385f74 100644 --- a/src/main/resources/data/mineralogy/recipe/basalt_raw_slab_recombination.json +++ b/src/main/resources/data/mineralogy/recipe/basalt_raw_slab_recombination.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:basalt_slab" - }, - { - "item": "mineralogy:basalt_slab" - } - ], - "result": { - "id": "mineralogy:basalt", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:basalt_slab", + "mineralogy:basalt_slab" + ], + "result": { + "id": "mineralogy:basalt", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/basalt_raw_slabs_to_brick.json b/src/main/resources/data/mineralogy/recipe/basalt_raw_slabs_to_brick.json index 9c85b4524..5ad056d02 100644 --- a/src/main/resources/data/mineralogy/recipe/basalt_raw_slabs_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/basalt_raw_slabs_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:basalt_slab" - } - }, - "result": { - "id": "mineralogy:basalt_brick_slab", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:basalt_slab" + }, + "result": { + "id": "mineralogy:basalt_brick_slab", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/basalt_raw_stairs_polishing.json b/src/main/resources/data/mineralogy/recipe/basalt_raw_stairs_polishing.json index 2d70dba66..a4c4eaf6c 100644 --- a/src/main/resources/data/mineralogy/recipe/basalt_raw_stairs_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/basalt_raw_stairs_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:basalt_stairs" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:basalt_smooth_stairs", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:basalt_stairs", + "#c:sands" + ], + "result": { + "id": "mineralogy:basalt_smooth_stairs", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/basalt_raw_stairs_to_brick.json b/src/main/resources/data/mineralogy/recipe/basalt_raw_stairs_to_brick.json index cca0a0d68..77a2bb6d1 100644 --- a/src/main/resources/data/mineralogy/recipe/basalt_raw_stairs_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/basalt_raw_stairs_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:basalt_stairs" - } - }, - "result": { - "id": "mineralogy:basalt_brick_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:basalt_stairs" + }, + "result": { + "id": "mineralogy:basalt_brick_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/basalt_raw_wall_polishing.json b/src/main/resources/data/mineralogy/recipe/basalt_raw_wall_polishing.json index 5523ca80c..47fdc1dcf 100644 --- a/src/main/resources/data/mineralogy/recipe/basalt_raw_wall_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/basalt_raw_wall_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:basalt_wall" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:basalt_smooth_wall", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:basalt_wall", + "#c:sands" + ], + "result": { + "id": "mineralogy:basalt_smooth_wall", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/basalt_raw_walls_to_brick.json b/src/main/resources/data/mineralogy/recipe/basalt_raw_walls_to_brick.json index 3a2c5ec16..69cff7cdc 100644 --- a/src/main/resources/data/mineralogy/recipe/basalt_raw_walls_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/basalt_raw_walls_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:basalt_wall" - } - }, - "result": { - "id": "mineralogy:basalt_brick_wall", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:basalt_wall" + }, + "result": { + "id": "mineralogy:basalt_brick_wall", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/basalt_relief_axe.json b/src/main/resources/data/mineralogy/recipe/basalt_relief_axe.json index a15a6f5fa..401a3c8ce 100644 --- a/src/main/resources/data/mineralogy/recipe/basalt_relief_axe.json +++ b/src/main/resources/data/mineralogy/recipe/basalt_relief_axe.json @@ -1,37 +1,19 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:basalt_relief_blank" - }, - { - "item": "mineralogy:basalt_relief_blank" - }, - { - "item": "mineralogy:basalt_relief_blank" - }, - { - "item": "mineralogy:basalt_relief_blank" - }, - { - "item": "mineralogy:basalt_relief_blank" - }, - { - "item": "mineralogy:basalt_relief_blank" - }, - { - "item": "mineralogy:basalt_relief_blank" - }, - { - "item": "mineralogy:basalt_relief_blank" - }, - { - "item": "minecraft:stone_axe" - } - ], - "result": { - "id": "mineralogy:basalt_relief_axe", - "count": 8 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:basalt_relief_blank", + "mineralogy:basalt_relief_blank", + "mineralogy:basalt_relief_blank", + "mineralogy:basalt_relief_blank", + "mineralogy:basalt_relief_blank", + "mineralogy:basalt_relief_blank", + "mineralogy:basalt_relief_blank", + "mineralogy:basalt_relief_blank", + "minecraft:stone_axe" + ], + "result": { + "id": "mineralogy:basalt_relief_axe", + "count": 8 + } } diff --git a/src/main/resources/data/mineralogy/recipe/basalt_relief_blank.json b/src/main/resources/data/mineralogy/recipe/basalt_relief_blank.json index 0ab15fd8b..b91a04920 100644 --- a/src/main/resources/data/mineralogy/recipe/basalt_relief_blank.json +++ b/src/main/resources/data/mineralogy/recipe/basalt_relief_blank.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/basalt/smooth" - } - }, - "result": { - "id": "mineralogy:basalt_relief_blank", - "count": 16 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/basalt/smooth" + }, + "result": { + "id": "mineralogy:basalt_relief_blank", + "count": 16 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/basalt_relief_cross.json b/src/main/resources/data/mineralogy/recipe/basalt_relief_cross.json index 35ca7b264..206b96b36 100644 --- a/src/main/resources/data/mineralogy/recipe/basalt_relief_cross.json +++ b/src/main/resources/data/mineralogy/recipe/basalt_relief_cross.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x x", - " ", - "x x" - ], - "key": { - "x": { - "item": "mineralogy:basalt_relief_blank" - } - }, - "result": { - "id": "mineralogy:basalt_relief_cross", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x x", + " ", + "x x" + ], + "key": { + "x": "mineralogy:basalt_relief_blank" + }, + "result": { + "id": "mineralogy:basalt_relief_cross", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/basalt_relief_hammer.json b/src/main/resources/data/mineralogy/recipe/basalt_relief_hammer.json index 337328f18..0b9eb5321 100644 --- a/src/main/resources/data/mineralogy/recipe/basalt_relief_hammer.json +++ b/src/main/resources/data/mineralogy/recipe/basalt_relief_hammer.json @@ -1,25 +1,19 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "zxz", - "zyz", - "zzz" - ], - "key": { - "x": { - "item": "mineralogy:basalt_smooth" - }, - "y": { - "item": "minecraft:stick" - }, - "z": { - "item": "mineralogy:basalt_relief_blank" - } - }, - "result": { - "id": "mineralogy:basalt_relief_hammer", - "count": 7 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "zxz", + "zyz", + "zzz" + ], + "key": { + "x": "mineralogy:basalt_smooth", + "y": "minecraft:stick", + "z": "mineralogy:basalt_relief_blank" + }, + "result": { + "id": "mineralogy:basalt_relief_hammer", + "count": 7 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/basalt_relief_hoe.json b/src/main/resources/data/mineralogy/recipe/basalt_relief_hoe.json index e04e9d77e..204cce467 100644 --- a/src/main/resources/data/mineralogy/recipe/basalt_relief_hoe.json +++ b/src/main/resources/data/mineralogy/recipe/basalt_relief_hoe.json @@ -1,37 +1,19 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:basalt_relief_blank" - }, - { - "item": "mineralogy:basalt_relief_blank" - }, - { - "item": "mineralogy:basalt_relief_blank" - }, - { - "item": "mineralogy:basalt_relief_blank" - }, - { - "item": "mineralogy:basalt_relief_blank" - }, - { - "item": "mineralogy:basalt_relief_blank" - }, - { - "item": "mineralogy:basalt_relief_blank" - }, - { - "item": "mineralogy:basalt_relief_blank" - }, - { - "item": "minecraft:stone_hoe" - } - ], - "result": { - "id": "mineralogy:basalt_relief_hoe", - "count": 8 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:basalt_relief_blank", + "mineralogy:basalt_relief_blank", + "mineralogy:basalt_relief_blank", + "mineralogy:basalt_relief_blank", + "mineralogy:basalt_relief_blank", + "mineralogy:basalt_relief_blank", + "mineralogy:basalt_relief_blank", + "mineralogy:basalt_relief_blank", + "minecraft:stone_hoe" + ], + "result": { + "id": "mineralogy:basalt_relief_hoe", + "count": 8 + } } diff --git a/src/main/resources/data/mineralogy/recipe/basalt_relief_horizontal.json b/src/main/resources/data/mineralogy/recipe/basalt_relief_horizontal.json index aa38894f3..8cfbce9bb 100644 --- a/src/main/resources/data/mineralogy/recipe/basalt_relief_horizontal.json +++ b/src/main/resources/data/mineralogy/recipe/basalt_relief_horizontal.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:basalt_relief_blank" - } - }, - "result": { - "id": "mineralogy:basalt_relief_horizontal", - "count": 3 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:basalt_relief_blank" + }, + "result": { + "id": "mineralogy:basalt_relief_horizontal", + "count": 3 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/basalt_relief_i.json b/src/main/resources/data/mineralogy/recipe/basalt_relief_i.json index 2d85894bc..b8fefbe27 100644 --- a/src/main/resources/data/mineralogy/recipe/basalt_relief_i.json +++ b/src/main/resources/data/mineralogy/recipe/basalt_relief_i.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - " x ", - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:basalt_relief_blank" - } - }, - "result": { - "id": "mineralogy:basalt_relief_i", - "count": 7 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + " x ", + "xxx" + ], + "key": { + "x": "mineralogy:basalt_relief_blank" + }, + "result": { + "id": "mineralogy:basalt_relief_i", + "count": 7 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/basalt_relief_left.json b/src/main/resources/data/mineralogy/recipe/basalt_relief_left.json index 2b5ec31ea..9ef32464a 100644 --- a/src/main/resources/data/mineralogy/recipe/basalt_relief_left.json +++ b/src/main/resources/data/mineralogy/recipe/basalt_relief_left.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - " x ", - " x" - ], - "key": { - "x": { - "item": "mineralogy:basalt_relief_blank" - } - }, - "result": { - "id": "mineralogy:basalt_relief_left", - "count": 3 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + " x ", + " x" + ], + "key": { + "x": "mineralogy:basalt_relief_blank" + }, + "result": { + "id": "mineralogy:basalt_relief_left", + "count": 3 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/basalt_relief_pickaxe.json b/src/main/resources/data/mineralogy/recipe/basalt_relief_pickaxe.json index 78603c42f..d490acf03 100644 --- a/src/main/resources/data/mineralogy/recipe/basalt_relief_pickaxe.json +++ b/src/main/resources/data/mineralogy/recipe/basalt_relief_pickaxe.json @@ -1,37 +1,19 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:basalt_relief_blank" - }, - { - "item": "mineralogy:basalt_relief_blank" - }, - { - "item": "mineralogy:basalt_relief_blank" - }, - { - "item": "mineralogy:basalt_relief_blank" - }, - { - "item": "mineralogy:basalt_relief_blank" - }, - { - "item": "mineralogy:basalt_relief_blank" - }, - { - "item": "mineralogy:basalt_relief_blank" - }, - { - "item": "mineralogy:basalt_relief_blank" - }, - { - "item": "minecraft:stone_pickaxe" - } - ], - "result": { - "id": "mineralogy:basalt_relief_pickaxe", - "count": 8 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:basalt_relief_blank", + "mineralogy:basalt_relief_blank", + "mineralogy:basalt_relief_blank", + "mineralogy:basalt_relief_blank", + "mineralogy:basalt_relief_blank", + "mineralogy:basalt_relief_blank", + "mineralogy:basalt_relief_blank", + "mineralogy:basalt_relief_blank", + "minecraft:stone_pickaxe" + ], + "result": { + "id": "mineralogy:basalt_relief_pickaxe", + "count": 8 + } } diff --git a/src/main/resources/data/mineralogy/recipe/basalt_relief_plus.json b/src/main/resources/data/mineralogy/recipe/basalt_relief_plus.json index 68bd05eab..33ed463cc 100644 --- a/src/main/resources/data/mineralogy/recipe/basalt_relief_plus.json +++ b/src/main/resources/data/mineralogy/recipe/basalt_relief_plus.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - " x ", - "xxx", - " x " - ], - "key": { - "x": { - "item": "mineralogy:basalt_relief_blank" - } - }, - "result": { - "id": "mineralogy:basalt_relief_plus", - "count": 5 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + " x ", + "xxx", + " x " + ], + "key": { + "x": "mineralogy:basalt_relief_blank" + }, + "result": { + "id": "mineralogy:basalt_relief_plus", + "count": 5 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/basalt_relief_right.json b/src/main/resources/data/mineralogy/recipe/basalt_relief_right.json index 015c46788..78c1c35f8 100644 --- a/src/main/resources/data/mineralogy/recipe/basalt_relief_right.json +++ b/src/main/resources/data/mineralogy/recipe/basalt_relief_right.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:basalt_relief_left" - }, - { - "item": "mineralogy:basalt_relief_left" - } - ], - "result": { - "id": "mineralogy:basalt_relief_right", - "count": 2 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:basalt_relief_left", + "mineralogy:basalt_relief_left" + ], + "result": { + "id": "mineralogy:basalt_relief_right", + "count": 2 + } } diff --git a/src/main/resources/data/mineralogy/recipe/basalt_relief_sword.json b/src/main/resources/data/mineralogy/recipe/basalt_relief_sword.json index 636796b99..c0f6e65ec 100644 --- a/src/main/resources/data/mineralogy/recipe/basalt_relief_sword.json +++ b/src/main/resources/data/mineralogy/recipe/basalt_relief_sword.json @@ -1,37 +1,19 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:basalt_relief_blank" - }, - { - "item": "mineralogy:basalt_relief_blank" - }, - { - "item": "mineralogy:basalt_relief_blank" - }, - { - "item": "mineralogy:basalt_relief_blank" - }, - { - "item": "mineralogy:basalt_relief_blank" - }, - { - "item": "mineralogy:basalt_relief_blank" - }, - { - "item": "mineralogy:basalt_relief_blank" - }, - { - "item": "mineralogy:basalt_relief_blank" - }, - { - "item": "minecraft:stone_sword" - } - ], - "result": { - "id": "mineralogy:basalt_relief_sword", - "count": 8 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:basalt_relief_blank", + "mineralogy:basalt_relief_blank", + "mineralogy:basalt_relief_blank", + "mineralogy:basalt_relief_blank", + "mineralogy:basalt_relief_blank", + "mineralogy:basalt_relief_blank", + "mineralogy:basalt_relief_blank", + "mineralogy:basalt_relief_blank", + "minecraft:stone_sword" + ], + "result": { + "id": "mineralogy:basalt_relief_sword", + "count": 8 + } } diff --git a/src/main/resources/data/mineralogy/recipe/basalt_relief_vertical.json b/src/main/resources/data/mineralogy/recipe/basalt_relief_vertical.json index a8859ccea..65e866d92 100644 --- a/src/main/resources/data/mineralogy/recipe/basalt_relief_vertical.json +++ b/src/main/resources/data/mineralogy/recipe/basalt_relief_vertical.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x", - "x", - "x" - ], - "key": { - "x": { - "item": "mineralogy:basalt_relief_blank" - } - }, - "result": { - "id": "mineralogy:basalt_relief_vertical", - "count": 3 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x", + "x", + "x" + ], + "key": { + "x": "mineralogy:basalt_relief_blank" + }, + "result": { + "id": "mineralogy:basalt_relief_vertical", + "count": 3 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/basalt_slab.json b/src/main/resources/data/mineralogy/recipe/basalt_slab.json index de7c98848..cd80fbcf0 100644 --- a/src/main/resources/data/mineralogy/recipe/basalt_slab.json +++ b/src/main/resources/data/mineralogy/recipe/basalt_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/basalt" - } - }, - "result": { - "id": "mineralogy:basalt_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "#mineralogy:stones/basalt" + }, + "result": { + "id": "mineralogy:basalt_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/basalt_smooth.json b/src/main/resources/data/mineralogy/recipe/basalt_smooth.json index 3d8d1f7b3..77d81ee47 100644 --- a/src/main/resources/data/mineralogy/recipe/basalt_smooth.json +++ b/src/main/resources/data/mineralogy/recipe/basalt_smooth.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:basalt" - }, - { - "item": "minecraft:sand" - } - ], - "result": { - "id": "mineralogy:basalt_smooth", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:basalt", + "minecraft:sand" + ], + "result": { + "id": "mineralogy:basalt_smooth", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/basalt_smooth_brick.json b/src/main/resources/data/mineralogy/recipe/basalt_smooth_brick.json index 05e74ebc5..2dbfb64ac 100644 --- a/src/main/resources/data/mineralogy/recipe/basalt_smooth_brick.json +++ b/src/main/resources/data/mineralogy/recipe/basalt_smooth_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/basalt/smooth" - } - }, - "result": { - "id": "mineralogy:basalt_smooth_brick", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "#mineralogy:stones/basalt/smooth" + }, + "result": { + "id": "mineralogy:basalt_smooth_brick", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/basalt_smooth_brick_furnace.json b/src/main/resources/data/mineralogy/recipe/basalt_smooth_brick_furnace.json index 2fedda8e9..2062639f8 100644 --- a/src/main/resources/data/mineralogy/recipe/basalt_smooth_brick_furnace.json +++ b/src/main/resources/data/mineralogy/recipe/basalt_smooth_brick_furnace.json @@ -1,22 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "xxx", - "xyx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:slabs/basalt/smooth_brick" - }, - "y": { - "item": "minecraft:furnace" - } - }, - "result": { - "id": "mineralogy:basalt_smooth_brick_furnace", - "count": 1 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "xxx", + "xyx", + "xxx" + ], + "key": { + "x": "#mineralogy:slabs/basalt/smooth_brick", + "y": "minecraft:furnace" + }, + "result": { + "id": "mineralogy:basalt_smooth_brick_furnace", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/basalt_smooth_brick_slab.json b/src/main/resources/data/mineralogy/recipe/basalt_smooth_brick_slab.json index f986c21b7..96af273bc 100644 --- a/src/main/resources/data/mineralogy/recipe/basalt_smooth_brick_slab.json +++ b/src/main/resources/data/mineralogy/recipe/basalt_smooth_brick_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:basalt_smooth_brick" - } - }, - "result": { - "id": "mineralogy:basalt_smooth_brick_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:basalt_smooth_brick" + }, + "result": { + "id": "mineralogy:basalt_smooth_brick_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/basalt_smooth_brick_stairs.json b/src/main/resources/data/mineralogy/recipe/basalt_smooth_brick_stairs.json index 4839e99f0..72503a6d4 100644 --- a/src/main/resources/data/mineralogy/recipe/basalt_smooth_brick_stairs.json +++ b/src/main/resources/data/mineralogy/recipe/basalt_smooth_brick_stairs.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - "xx ", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/basalt/smooth_brick" - } - }, - "result": { - "id": "mineralogy:basalt_smooth_brick_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + "xx ", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/basalt/smooth_brick" + }, + "result": { + "id": "mineralogy:basalt_smooth_brick_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/basalt_smooth_brick_wall.json b/src/main/resources/data/mineralogy/recipe/basalt_smooth_brick_wall.json index 24393299a..bef7b7b2f 100644 --- a/src/main/resources/data/mineralogy/recipe/basalt_smooth_brick_wall.json +++ b/src/main/resources/data/mineralogy/recipe/basalt_smooth_brick_wall.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/basalt/smooth_brick" - } - }, - "result": { - "id": "mineralogy:basalt_smooth_brick_wall", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/basalt/smooth_brick" + }, + "result": { + "id": "mineralogy:basalt_smooth_brick_wall", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/basalt_smooth_furnace.json b/src/main/resources/data/mineralogy/recipe/basalt_smooth_furnace.json index 320066f40..03c2d0c79 100644 --- a/src/main/resources/data/mineralogy/recipe/basalt_smooth_furnace.json +++ b/src/main/resources/data/mineralogy/recipe/basalt_smooth_furnace.json @@ -1,22 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "xxx", - "xyx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:slabs/basalt/smooth" - }, - "y": { - "item": "minecraft:furnace" - } - }, - "result": { - "id": "mineralogy:basalt_smooth_furnace", - "count": 1 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "xxx", + "xyx", + "xxx" + ], + "key": { + "x": "#mineralogy:slabs/basalt/smooth", + "y": "minecraft:furnace" + }, + "result": { + "id": "mineralogy:basalt_smooth_furnace", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/basalt_smooth_slab.json b/src/main/resources/data/mineralogy/recipe/basalt_smooth_slab.json index 9387aacd9..b288a54ba 100644 --- a/src/main/resources/data/mineralogy/recipe/basalt_smooth_slab.json +++ b/src/main/resources/data/mineralogy/recipe/basalt_smooth_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/basalt/smooth" - } - }, - "result": { - "id": "mineralogy:basalt_smooth_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "#mineralogy:stones/basalt/smooth" + }, + "result": { + "id": "mineralogy:basalt_smooth_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/basalt_smooth_stairs.json b/src/main/resources/data/mineralogy/recipe/basalt_smooth_stairs.json index 11529c139..ec6046863 100644 --- a/src/main/resources/data/mineralogy/recipe/basalt_smooth_stairs.json +++ b/src/main/resources/data/mineralogy/recipe/basalt_smooth_stairs.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - "xx ", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/basalt/smooth" - } - }, - "result": { - "id": "mineralogy:basalt_smooth_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + "xx ", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/basalt/smooth" + }, + "result": { + "id": "mineralogy:basalt_smooth_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/basalt_smooth_wall.json b/src/main/resources/data/mineralogy/recipe/basalt_smooth_wall.json index fe275d461..7d6f6a85e 100644 --- a/src/main/resources/data/mineralogy/recipe/basalt_smooth_wall.json +++ b/src/main/resources/data/mineralogy/recipe/basalt_smooth_wall.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/basalt/smooth" - } - }, - "result": { - "id": "mineralogy:basalt_smooth_wall", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/basalt/smooth" + }, + "result": { + "id": "mineralogy:basalt_smooth_wall", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/basalt_stairs.json b/src/main/resources/data/mineralogy/recipe/basalt_stairs.json index 200ae1ee1..825679bf1 100644 --- a/src/main/resources/data/mineralogy/recipe/basalt_stairs.json +++ b/src/main/resources/data/mineralogy/recipe/basalt_stairs.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - "xx ", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/basalt" - } - }, - "result": { - "id": "mineralogy:basalt_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + "xx ", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/basalt" + }, + "result": { + "id": "mineralogy:basalt_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/basalt_to_stone.json b/src/main/resources/data/mineralogy/recipe/basalt_to_stone.json index 52ce0d963..e696840eb 100644 --- a/src/main/resources/data/mineralogy/recipe/basalt_to_stone.json +++ b/src/main/resources/data/mineralogy/recipe/basalt_to_stone.json @@ -1,12 +1,10 @@ { - "type": "minecraft:smelting", - "category": "blocks", - "ingredient": { - "item": "mineralogy:basalt" - }, - "result": { - "id": "minecraft:stone" - }, - "experience": 0.1, - "cookingtime": 200 + "type": "minecraft:smelting", + "category": "blocks", + "ingredient": "mineralogy:basalt", + "result": { + "id": "minecraft:stone" + }, + "experience": 0.1, + "cookingtime": 200 } diff --git a/src/main/resources/data/mineralogy/recipe/basalt_wall.json b/src/main/resources/data/mineralogy/recipe/basalt_wall.json index a05051148..20f680eaf 100644 --- a/src/main/resources/data/mineralogy/recipe/basalt_wall.json +++ b/src/main/resources/data/mineralogy/recipe/basalt_wall.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/basalt" - } - }, - "result": { - "id": "mineralogy:basalt_wall", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/basalt" + }, + "result": { + "id": "mineralogy:basalt_wall", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/basaltic_glass_brick.json b/src/main/resources/data/mineralogy/recipe/basaltic_glass_brick.json index 7e1fa6450..ab58d5b96 100644 --- a/src/main/resources/data/mineralogy/recipe/basaltic_glass_brick.json +++ b/src/main/resources/data/mineralogy/recipe/basaltic_glass_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/basaltic_glass" - } - }, - "result": { - "id": "mineralogy:basaltic_glass_brick", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "#mineralogy:stones/basaltic_glass" + }, + "result": { + "id": "mineralogy:basaltic_glass_brick", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/basaltic_glass_brick_block_polishing.json b/src/main/resources/data/mineralogy/recipe/basaltic_glass_brick_block_polishing.json index 181417609..79049e99a 100644 --- a/src/main/resources/data/mineralogy/recipe/basaltic_glass_brick_block_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/basaltic_glass_brick_block_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:basaltic_glass_brick" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:basaltic_glass_smooth_brick", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:basaltic_glass_brick", + "#c:sands" + ], + "result": { + "id": "mineralogy:basaltic_glass_smooth_brick", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/basaltic_glass_brick_furnace.json b/src/main/resources/data/mineralogy/recipe/basaltic_glass_brick_furnace.json index 8e4aeb65a..84266a9b1 100644 --- a/src/main/resources/data/mineralogy/recipe/basaltic_glass_brick_furnace.json +++ b/src/main/resources/data/mineralogy/recipe/basaltic_glass_brick_furnace.json @@ -1,22 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "xxx", - "xyx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:slabs/basaltic_glass/brick" - }, - "y": { - "item": "minecraft:furnace" - } - }, - "result": { - "id": "mineralogy:basaltic_glass_brick_furnace", - "count": 1 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "xxx", + "xyx", + "xxx" + ], + "key": { + "x": "#mineralogy:slabs/basaltic_glass/brick", + "y": "minecraft:furnace" + }, + "result": { + "id": "mineralogy:basaltic_glass_brick_furnace", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/basaltic_glass_brick_slab.json b/src/main/resources/data/mineralogy/recipe/basaltic_glass_brick_slab.json index b357334fe..f9a962ce3 100644 --- a/src/main/resources/data/mineralogy/recipe/basaltic_glass_brick_slab.json +++ b/src/main/resources/data/mineralogy/recipe/basaltic_glass_brick_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:basaltic_glass_brick" - } - }, - "result": { - "id": "mineralogy:basaltic_glass_brick_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:basaltic_glass_brick" + }, + "result": { + "id": "mineralogy:basaltic_glass_brick_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/basaltic_glass_brick_slab_polishing.json b/src/main/resources/data/mineralogy/recipe/basaltic_glass_brick_slab_polishing.json index 3b85e5809..e6a914a63 100644 --- a/src/main/resources/data/mineralogy/recipe/basaltic_glass_brick_slab_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/basaltic_glass_brick_slab_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:basaltic_glass_brick_slab" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:basaltic_glass_smooth_brick_slab", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:basaltic_glass_brick_slab", + "#c:sands" + ], + "result": { + "id": "mineralogy:basaltic_glass_smooth_brick_slab", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/basaltic_glass_brick_slab_recombination.json b/src/main/resources/data/mineralogy/recipe/basaltic_glass_brick_slab_recombination.json index e6f9218ca..e1e240d46 100644 --- a/src/main/resources/data/mineralogy/recipe/basaltic_glass_brick_slab_recombination.json +++ b/src/main/resources/data/mineralogy/recipe/basaltic_glass_brick_slab_recombination.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:basaltic_glass_brick_slab" - }, - { - "item": "mineralogy:basaltic_glass_brick_slab" - } - ], - "result": { - "id": "mineralogy:basaltic_glass_brick", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:basaltic_glass_brick_slab", + "mineralogy:basaltic_glass_brick_slab" + ], + "result": { + "id": "mineralogy:basaltic_glass_brick", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/basaltic_glass_brick_stairs.json b/src/main/resources/data/mineralogy/recipe/basaltic_glass_brick_stairs.json index ee91bbb6c..be23d32c7 100644 --- a/src/main/resources/data/mineralogy/recipe/basaltic_glass_brick_stairs.json +++ b/src/main/resources/data/mineralogy/recipe/basaltic_glass_brick_stairs.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - "xx ", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/basaltic_glass/brick" - } - }, - "result": { - "id": "mineralogy:basaltic_glass_brick_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + "xx ", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/basaltic_glass/brick" + }, + "result": { + "id": "mineralogy:basaltic_glass_brick_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/basaltic_glass_brick_stairs_polishing.json b/src/main/resources/data/mineralogy/recipe/basaltic_glass_brick_stairs_polishing.json index cec3efeb4..38cd9e2bb 100644 --- a/src/main/resources/data/mineralogy/recipe/basaltic_glass_brick_stairs_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/basaltic_glass_brick_stairs_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:basaltic_glass_brick_stairs" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:basaltic_glass_smooth_brick_stairs", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:basaltic_glass_brick_stairs", + "#c:sands" + ], + "result": { + "id": "mineralogy:basaltic_glass_smooth_brick_stairs", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/basaltic_glass_brick_wall.json b/src/main/resources/data/mineralogy/recipe/basaltic_glass_brick_wall.json index 0098cb45b..e02762e52 100644 --- a/src/main/resources/data/mineralogy/recipe/basaltic_glass_brick_wall.json +++ b/src/main/resources/data/mineralogy/recipe/basaltic_glass_brick_wall.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/basaltic_glass/brick" - } - }, - "result": { - "id": "mineralogy:basaltic_glass_brick_wall", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/basaltic_glass/brick" + }, + "result": { + "id": "mineralogy:basaltic_glass_brick_wall", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/basaltic_glass_brick_wall_polishing.json b/src/main/resources/data/mineralogy/recipe/basaltic_glass_brick_wall_polishing.json index 7b02c0ca5..770846c4f 100644 --- a/src/main/resources/data/mineralogy/recipe/basaltic_glass_brick_wall_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/basaltic_glass_brick_wall_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:basaltic_glass_brick_wall" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:basaltic_glass_smooth_brick_wall", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:basaltic_glass_brick_wall", + "#c:sands" + ], + "result": { + "id": "mineralogy:basaltic_glass_smooth_brick_wall", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/basaltic_glass_cobblestone.json b/src/main/resources/data/mineralogy/recipe/basaltic_glass_cobblestone.json index 557aca2db..01726b63f 100644 --- a/src/main/resources/data/mineralogy/recipe/basaltic_glass_cobblestone.json +++ b/src/main/resources/data/mineralogy/recipe/basaltic_glass_cobblestone.json @@ -1,22 +1,14 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "tag": "mineralogy:stones/basaltic_glass" - }, - { - "tag": "mineralogy:stones/basaltic_glass" - }, - { - "item": "minecraft:gravel" - }, - { - "item": "minecraft:gravel" - } - ], - "result": { - "id": "minecraft:cobblestone", - "count": 4 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "#mineralogy:stones/basaltic_glass", + "#mineralogy:stones/basaltic_glass", + "minecraft:gravel", + "minecraft:gravel" + ], + "result": { + "id": "minecraft:cobblestone", + "count": 4 + } } diff --git a/src/main/resources/data/mineralogy/recipe/basaltic_glass_furnace.json b/src/main/resources/data/mineralogy/recipe/basaltic_glass_furnace.json index afd432366..08062ae73 100644 --- a/src/main/resources/data/mineralogy/recipe/basaltic_glass_furnace.json +++ b/src/main/resources/data/mineralogy/recipe/basaltic_glass_furnace.json @@ -1,22 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "xxx", - "xyx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:slabs/basaltic_glass" - }, - "y": { - "item": "minecraft:furnace" - } - }, - "result": { - "id": "mineralogy:basaltic_glass_furnace", - "count": 1 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "xxx", + "xyx", + "xxx" + ], + "key": { + "x": "#mineralogy:slabs/basaltic_glass", + "y": "minecraft:furnace" + }, + "result": { + "id": "mineralogy:basaltic_glass_furnace", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/basaltic_glass_polished_brick_slab_recombination.json b/src/main/resources/data/mineralogy/recipe/basaltic_glass_polished_brick_slab_recombination.json index 2cf782ee1..d76f0cbf9 100644 --- a/src/main/resources/data/mineralogy/recipe/basaltic_glass_polished_brick_slab_recombination.json +++ b/src/main/resources/data/mineralogy/recipe/basaltic_glass_polished_brick_slab_recombination.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:basaltic_glass_smooth_brick_slab" - }, - { - "item": "mineralogy:basaltic_glass_smooth_brick_slab" - } - ], - "result": { - "id": "mineralogy:basaltic_glass_smooth_brick", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:basaltic_glass_smooth_brick_slab", + "mineralogy:basaltic_glass_smooth_brick_slab" + ], + "result": { + "id": "mineralogy:basaltic_glass_smooth_brick", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/basaltic_glass_polished_slab_recombination.json b/src/main/resources/data/mineralogy/recipe/basaltic_glass_polished_slab_recombination.json index 2c84c76b3..5cf772817 100644 --- a/src/main/resources/data/mineralogy/recipe/basaltic_glass_polished_slab_recombination.json +++ b/src/main/resources/data/mineralogy/recipe/basaltic_glass_polished_slab_recombination.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:basaltic_glass_smooth_slab" - }, - { - "item": "mineralogy:basaltic_glass_smooth_slab" - } - ], - "result": { - "id": "mineralogy:basaltic_glass_smooth", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:basaltic_glass_smooth_slab", + "mineralogy:basaltic_glass_smooth_slab" + ], + "result": { + "id": "mineralogy:basaltic_glass_smooth", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/basaltic_glass_polished_slabs_to_brick.json b/src/main/resources/data/mineralogy/recipe/basaltic_glass_polished_slabs_to_brick.json index e67671872..5bf4105a7 100644 --- a/src/main/resources/data/mineralogy/recipe/basaltic_glass_polished_slabs_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/basaltic_glass_polished_slabs_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:basaltic_glass_smooth_slab" - } - }, - "result": { - "id": "mineralogy:basaltic_glass_smooth_brick_slab", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:basaltic_glass_smooth_slab" + }, + "result": { + "id": "mineralogy:basaltic_glass_smooth_brick_slab", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/basaltic_glass_polished_stairs_to_brick.json b/src/main/resources/data/mineralogy/recipe/basaltic_glass_polished_stairs_to_brick.json index 454c72750..7e90694a3 100644 --- a/src/main/resources/data/mineralogy/recipe/basaltic_glass_polished_stairs_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/basaltic_glass_polished_stairs_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:basaltic_glass_smooth_stairs" - } - }, - "result": { - "id": "mineralogy:basaltic_glass_smooth_brick_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:basaltic_glass_smooth_stairs" + }, + "result": { + "id": "mineralogy:basaltic_glass_smooth_brick_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/basaltic_glass_polished_walls_to_brick.json b/src/main/resources/data/mineralogy/recipe/basaltic_glass_polished_walls_to_brick.json index 06f5845d5..750206564 100644 --- a/src/main/resources/data/mineralogy/recipe/basaltic_glass_polished_walls_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/basaltic_glass_polished_walls_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:basaltic_glass_smooth_wall" - } - }, - "result": { - "id": "mineralogy:basaltic_glass_smooth_brick_wall", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:basaltic_glass_smooth_wall" + }, + "result": { + "id": "mineralogy:basaltic_glass_smooth_brick_wall", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/basaltic_glass_raw_slab_polishing.json b/src/main/resources/data/mineralogy/recipe/basaltic_glass_raw_slab_polishing.json index ba319b78b..4184723d1 100644 --- a/src/main/resources/data/mineralogy/recipe/basaltic_glass_raw_slab_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/basaltic_glass_raw_slab_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:basaltic_glass_slab" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:basaltic_glass_smooth_slab", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:basaltic_glass_slab", + "#c:sands" + ], + "result": { + "id": "mineralogy:basaltic_glass_smooth_slab", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/basaltic_glass_raw_slab_recombination.json b/src/main/resources/data/mineralogy/recipe/basaltic_glass_raw_slab_recombination.json index fb625dfb2..e22698c72 100644 --- a/src/main/resources/data/mineralogy/recipe/basaltic_glass_raw_slab_recombination.json +++ b/src/main/resources/data/mineralogy/recipe/basaltic_glass_raw_slab_recombination.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:basaltic_glass_slab" - }, - { - "item": "mineralogy:basaltic_glass_slab" - } - ], - "result": { - "id": "mineralogy:basaltic_glass", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:basaltic_glass_slab", + "mineralogy:basaltic_glass_slab" + ], + "result": { + "id": "mineralogy:basaltic_glass", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/basaltic_glass_raw_slabs_to_brick.json b/src/main/resources/data/mineralogy/recipe/basaltic_glass_raw_slabs_to_brick.json index 1ae762fbd..fd7e9e4f1 100644 --- a/src/main/resources/data/mineralogy/recipe/basaltic_glass_raw_slabs_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/basaltic_glass_raw_slabs_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:basaltic_glass_slab" - } - }, - "result": { - "id": "mineralogy:basaltic_glass_brick_slab", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:basaltic_glass_slab" + }, + "result": { + "id": "mineralogy:basaltic_glass_brick_slab", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/basaltic_glass_raw_stairs_polishing.json b/src/main/resources/data/mineralogy/recipe/basaltic_glass_raw_stairs_polishing.json index c9cf0766f..5ddcd165f 100644 --- a/src/main/resources/data/mineralogy/recipe/basaltic_glass_raw_stairs_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/basaltic_glass_raw_stairs_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:basaltic_glass_stairs" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:basaltic_glass_smooth_stairs", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:basaltic_glass_stairs", + "#c:sands" + ], + "result": { + "id": "mineralogy:basaltic_glass_smooth_stairs", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/basaltic_glass_raw_stairs_to_brick.json b/src/main/resources/data/mineralogy/recipe/basaltic_glass_raw_stairs_to_brick.json index 803e84a9f..2438b5df0 100644 --- a/src/main/resources/data/mineralogy/recipe/basaltic_glass_raw_stairs_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/basaltic_glass_raw_stairs_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:basaltic_glass_stairs" - } - }, - "result": { - "id": "mineralogy:basaltic_glass_brick_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:basaltic_glass_stairs" + }, + "result": { + "id": "mineralogy:basaltic_glass_brick_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/basaltic_glass_raw_wall_polishing.json b/src/main/resources/data/mineralogy/recipe/basaltic_glass_raw_wall_polishing.json index 62ad0ba12..2b61d3646 100644 --- a/src/main/resources/data/mineralogy/recipe/basaltic_glass_raw_wall_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/basaltic_glass_raw_wall_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:basaltic_glass_wall" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:basaltic_glass_smooth_wall", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:basaltic_glass_wall", + "#c:sands" + ], + "result": { + "id": "mineralogy:basaltic_glass_smooth_wall", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/basaltic_glass_raw_walls_to_brick.json b/src/main/resources/data/mineralogy/recipe/basaltic_glass_raw_walls_to_brick.json index c5dfad7aa..d5ad8ba98 100644 --- a/src/main/resources/data/mineralogy/recipe/basaltic_glass_raw_walls_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/basaltic_glass_raw_walls_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:basaltic_glass_wall" - } - }, - "result": { - "id": "mineralogy:basaltic_glass_brick_wall", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:basaltic_glass_wall" + }, + "result": { + "id": "mineralogy:basaltic_glass_brick_wall", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/basaltic_glass_relief_axe.json b/src/main/resources/data/mineralogy/recipe/basaltic_glass_relief_axe.json index 1254bd750..49895879d 100644 --- a/src/main/resources/data/mineralogy/recipe/basaltic_glass_relief_axe.json +++ b/src/main/resources/data/mineralogy/recipe/basaltic_glass_relief_axe.json @@ -1,37 +1,19 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:basaltic_glass_relief_blank" - }, - { - "item": "mineralogy:basaltic_glass_relief_blank" - }, - { - "item": "mineralogy:basaltic_glass_relief_blank" - }, - { - "item": "mineralogy:basaltic_glass_relief_blank" - }, - { - "item": "mineralogy:basaltic_glass_relief_blank" - }, - { - "item": "mineralogy:basaltic_glass_relief_blank" - }, - { - "item": "mineralogy:basaltic_glass_relief_blank" - }, - { - "item": "mineralogy:basaltic_glass_relief_blank" - }, - { - "item": "minecraft:stone_axe" - } - ], - "result": { - "id": "mineralogy:basaltic_glass_relief_axe", - "count": 8 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:basaltic_glass_relief_blank", + "mineralogy:basaltic_glass_relief_blank", + "mineralogy:basaltic_glass_relief_blank", + "mineralogy:basaltic_glass_relief_blank", + "mineralogy:basaltic_glass_relief_blank", + "mineralogy:basaltic_glass_relief_blank", + "mineralogy:basaltic_glass_relief_blank", + "mineralogy:basaltic_glass_relief_blank", + "minecraft:stone_axe" + ], + "result": { + "id": "mineralogy:basaltic_glass_relief_axe", + "count": 8 + } } diff --git a/src/main/resources/data/mineralogy/recipe/basaltic_glass_relief_blank.json b/src/main/resources/data/mineralogy/recipe/basaltic_glass_relief_blank.json index e0403fb8f..88407d0c5 100644 --- a/src/main/resources/data/mineralogy/recipe/basaltic_glass_relief_blank.json +++ b/src/main/resources/data/mineralogy/recipe/basaltic_glass_relief_blank.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx", - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:basaltic_glass_smooth" - } - }, - "result": { - "id": "mineralogy:basaltic_glass_relief_blank", - "count": 16 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx", + "xxx" + ], + "key": { + "x": "mineralogy:basaltic_glass_smooth" + }, + "result": { + "id": "mineralogy:basaltic_glass_relief_blank", + "count": 16 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/basaltic_glass_relief_cross.json b/src/main/resources/data/mineralogy/recipe/basaltic_glass_relief_cross.json index d18e0d0b1..a8c31095d 100644 --- a/src/main/resources/data/mineralogy/recipe/basaltic_glass_relief_cross.json +++ b/src/main/resources/data/mineralogy/recipe/basaltic_glass_relief_cross.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x x", - " ", - "x x" - ], - "key": { - "x": { - "item": "mineralogy:basaltic_glass_relief_blank" - } - }, - "result": { - "id": "mineralogy:basaltic_glass_relief_cross", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x x", + " ", + "x x" + ], + "key": { + "x": "mineralogy:basaltic_glass_relief_blank" + }, + "result": { + "id": "mineralogy:basaltic_glass_relief_cross", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/basaltic_glass_relief_hammer.json b/src/main/resources/data/mineralogy/recipe/basaltic_glass_relief_hammer.json index fcc050b2c..de1efb2de 100644 --- a/src/main/resources/data/mineralogy/recipe/basaltic_glass_relief_hammer.json +++ b/src/main/resources/data/mineralogy/recipe/basaltic_glass_relief_hammer.json @@ -1,25 +1,19 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "zxz", - "zyz", - "zzz" - ], - "key": { - "x": { - "item": "mineralogy:basaltic_glass_smooth" - }, - "y": { - "item": "minecraft:stick" - }, - "z": { - "item": "mineralogy:basaltic_glass_relief_blank" - } - }, - "result": { - "id": "mineralogy:basaltic_glass_relief_hammer", - "count": 7 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "zxz", + "zyz", + "zzz" + ], + "key": { + "x": "mineralogy:basaltic_glass_smooth", + "y": "minecraft:stick", + "z": "mineralogy:basaltic_glass_relief_blank" + }, + "result": { + "id": "mineralogy:basaltic_glass_relief_hammer", + "count": 7 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/basaltic_glass_relief_hoe.json b/src/main/resources/data/mineralogy/recipe/basaltic_glass_relief_hoe.json index c3e23fd9f..b6baf0178 100644 --- a/src/main/resources/data/mineralogy/recipe/basaltic_glass_relief_hoe.json +++ b/src/main/resources/data/mineralogy/recipe/basaltic_glass_relief_hoe.json @@ -1,37 +1,19 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:basaltic_glass_relief_blank" - }, - { - "item": "mineralogy:basaltic_glass_relief_blank" - }, - { - "item": "mineralogy:basaltic_glass_relief_blank" - }, - { - "item": "mineralogy:basaltic_glass_relief_blank" - }, - { - "item": "mineralogy:basaltic_glass_relief_blank" - }, - { - "item": "mineralogy:basaltic_glass_relief_blank" - }, - { - "item": "mineralogy:basaltic_glass_relief_blank" - }, - { - "item": "mineralogy:basaltic_glass_relief_blank" - }, - { - "item": "minecraft:stone_hoe" - } - ], - "result": { - "id": "mineralogy:basaltic_glass_relief_hoe", - "count": 8 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:basaltic_glass_relief_blank", + "mineralogy:basaltic_glass_relief_blank", + "mineralogy:basaltic_glass_relief_blank", + "mineralogy:basaltic_glass_relief_blank", + "mineralogy:basaltic_glass_relief_blank", + "mineralogy:basaltic_glass_relief_blank", + "mineralogy:basaltic_glass_relief_blank", + "mineralogy:basaltic_glass_relief_blank", + "minecraft:stone_hoe" + ], + "result": { + "id": "mineralogy:basaltic_glass_relief_hoe", + "count": 8 + } } diff --git a/src/main/resources/data/mineralogy/recipe/basaltic_glass_relief_horizontal.json b/src/main/resources/data/mineralogy/recipe/basaltic_glass_relief_horizontal.json index 2b9e87188..82a5d188d 100644 --- a/src/main/resources/data/mineralogy/recipe/basaltic_glass_relief_horizontal.json +++ b/src/main/resources/data/mineralogy/recipe/basaltic_glass_relief_horizontal.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:basaltic_glass_relief_blank" - } - }, - "result": { - "id": "mineralogy:basaltic_glass_relief_horizontal", - "count": 3 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:basaltic_glass_relief_blank" + }, + "result": { + "id": "mineralogy:basaltic_glass_relief_horizontal", + "count": 3 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/basaltic_glass_relief_i.json b/src/main/resources/data/mineralogy/recipe/basaltic_glass_relief_i.json index 8e6b0310e..1c20aedb5 100644 --- a/src/main/resources/data/mineralogy/recipe/basaltic_glass_relief_i.json +++ b/src/main/resources/data/mineralogy/recipe/basaltic_glass_relief_i.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - " x ", - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:basaltic_glass_relief_blank" - } - }, - "result": { - "id": "mineralogy:basaltic_glass_relief_i", - "count": 7 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + " x ", + "xxx" + ], + "key": { + "x": "mineralogy:basaltic_glass_relief_blank" + }, + "result": { + "id": "mineralogy:basaltic_glass_relief_i", + "count": 7 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/basaltic_glass_relief_left.json b/src/main/resources/data/mineralogy/recipe/basaltic_glass_relief_left.json index 20934d061..24448858c 100644 --- a/src/main/resources/data/mineralogy/recipe/basaltic_glass_relief_left.json +++ b/src/main/resources/data/mineralogy/recipe/basaltic_glass_relief_left.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - " x ", - " x" - ], - "key": { - "x": { - "item": "mineralogy:basaltic_glass_relief_blank" - } - }, - "result": { - "id": "mineralogy:basaltic_glass_relief_left", - "count": 3 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + " x ", + " x" + ], + "key": { + "x": "mineralogy:basaltic_glass_relief_blank" + }, + "result": { + "id": "mineralogy:basaltic_glass_relief_left", + "count": 3 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/basaltic_glass_relief_pickaxe.json b/src/main/resources/data/mineralogy/recipe/basaltic_glass_relief_pickaxe.json index 6bfe4ed83..8e10aad3e 100644 --- a/src/main/resources/data/mineralogy/recipe/basaltic_glass_relief_pickaxe.json +++ b/src/main/resources/data/mineralogy/recipe/basaltic_glass_relief_pickaxe.json @@ -1,37 +1,19 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:basaltic_glass_relief_blank" - }, - { - "item": "mineralogy:basaltic_glass_relief_blank" - }, - { - "item": "mineralogy:basaltic_glass_relief_blank" - }, - { - "item": "mineralogy:basaltic_glass_relief_blank" - }, - { - "item": "mineralogy:basaltic_glass_relief_blank" - }, - { - "item": "mineralogy:basaltic_glass_relief_blank" - }, - { - "item": "mineralogy:basaltic_glass_relief_blank" - }, - { - "item": "mineralogy:basaltic_glass_relief_blank" - }, - { - "item": "minecraft:stone_pickaxe" - } - ], - "result": { - "id": "mineralogy:basaltic_glass_relief_pickaxe", - "count": 8 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:basaltic_glass_relief_blank", + "mineralogy:basaltic_glass_relief_blank", + "mineralogy:basaltic_glass_relief_blank", + "mineralogy:basaltic_glass_relief_blank", + "mineralogy:basaltic_glass_relief_blank", + "mineralogy:basaltic_glass_relief_blank", + "mineralogy:basaltic_glass_relief_blank", + "mineralogy:basaltic_glass_relief_blank", + "minecraft:stone_pickaxe" + ], + "result": { + "id": "mineralogy:basaltic_glass_relief_pickaxe", + "count": 8 + } } diff --git a/src/main/resources/data/mineralogy/recipe/basaltic_glass_relief_plus.json b/src/main/resources/data/mineralogy/recipe/basaltic_glass_relief_plus.json index f1b4db8a6..d7346763f 100644 --- a/src/main/resources/data/mineralogy/recipe/basaltic_glass_relief_plus.json +++ b/src/main/resources/data/mineralogy/recipe/basaltic_glass_relief_plus.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - " x ", - "xxx", - " x " - ], - "key": { - "x": { - "item": "mineralogy:basaltic_glass_relief_blank" - } - }, - "result": { - "id": "mineralogy:basaltic_glass_relief_plus", - "count": 5 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + " x ", + "xxx", + " x " + ], + "key": { + "x": "mineralogy:basaltic_glass_relief_blank" + }, + "result": { + "id": "mineralogy:basaltic_glass_relief_plus", + "count": 5 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/basaltic_glass_relief_right.json b/src/main/resources/data/mineralogy/recipe/basaltic_glass_relief_right.json index 7a3e3e5af..9f0a738d4 100644 --- a/src/main/resources/data/mineralogy/recipe/basaltic_glass_relief_right.json +++ b/src/main/resources/data/mineralogy/recipe/basaltic_glass_relief_right.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:basaltic_glass_relief_left" - }, - { - "item": "mineralogy:basaltic_glass_relief_left" - } - ], - "result": { - "id": "mineralogy:basaltic_glass_relief_right", - "count": 2 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:basaltic_glass_relief_left", + "mineralogy:basaltic_glass_relief_left" + ], + "result": { + "id": "mineralogy:basaltic_glass_relief_right", + "count": 2 + } } diff --git a/src/main/resources/data/mineralogy/recipe/basaltic_glass_relief_sword.json b/src/main/resources/data/mineralogy/recipe/basaltic_glass_relief_sword.json index f6bcf0753..a6712c034 100644 --- a/src/main/resources/data/mineralogy/recipe/basaltic_glass_relief_sword.json +++ b/src/main/resources/data/mineralogy/recipe/basaltic_glass_relief_sword.json @@ -1,37 +1,19 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:basaltic_glass_relief_blank" - }, - { - "item": "mineralogy:basaltic_glass_relief_blank" - }, - { - "item": "mineralogy:basaltic_glass_relief_blank" - }, - { - "item": "mineralogy:basaltic_glass_relief_blank" - }, - { - "item": "mineralogy:basaltic_glass_relief_blank" - }, - { - "item": "mineralogy:basaltic_glass_relief_blank" - }, - { - "item": "mineralogy:basaltic_glass_relief_blank" - }, - { - "item": "mineralogy:basaltic_glass_relief_blank" - }, - { - "item": "minecraft:stone_sword" - } - ], - "result": { - "id": "mineralogy:basaltic_glass_relief_sword", - "count": 8 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:basaltic_glass_relief_blank", + "mineralogy:basaltic_glass_relief_blank", + "mineralogy:basaltic_glass_relief_blank", + "mineralogy:basaltic_glass_relief_blank", + "mineralogy:basaltic_glass_relief_blank", + "mineralogy:basaltic_glass_relief_blank", + "mineralogy:basaltic_glass_relief_blank", + "mineralogy:basaltic_glass_relief_blank", + "minecraft:stone_sword" + ], + "result": { + "id": "mineralogy:basaltic_glass_relief_sword", + "count": 8 + } } diff --git a/src/main/resources/data/mineralogy/recipe/basaltic_glass_relief_vertical.json b/src/main/resources/data/mineralogy/recipe/basaltic_glass_relief_vertical.json index 58cb000c6..efdfbb122 100644 --- a/src/main/resources/data/mineralogy/recipe/basaltic_glass_relief_vertical.json +++ b/src/main/resources/data/mineralogy/recipe/basaltic_glass_relief_vertical.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x", - "x", - "x" - ], - "key": { - "x": { - "item": "mineralogy:basaltic_glass_relief_blank" - } - }, - "result": { - "id": "mineralogy:basaltic_glass_relief_vertical", - "count": 3 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x", + "x", + "x" + ], + "key": { + "x": "mineralogy:basaltic_glass_relief_blank" + }, + "result": { + "id": "mineralogy:basaltic_glass_relief_vertical", + "count": 3 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/basaltic_glass_slab.json b/src/main/resources/data/mineralogy/recipe/basaltic_glass_slab.json index e2bc1ef39..a20f4c9ba 100644 --- a/src/main/resources/data/mineralogy/recipe/basaltic_glass_slab.json +++ b/src/main/resources/data/mineralogy/recipe/basaltic_glass_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:basaltic_glass" - } - }, - "result": { - "id": "mineralogy:basaltic_glass_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:basaltic_glass" + }, + "result": { + "id": "mineralogy:basaltic_glass_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/basaltic_glass_smooth.json b/src/main/resources/data/mineralogy/recipe/basaltic_glass_smooth.json index 5adf7dafe..958e4c2d1 100644 --- a/src/main/resources/data/mineralogy/recipe/basaltic_glass_smooth.json +++ b/src/main/resources/data/mineralogy/recipe/basaltic_glass_smooth.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "tag": "mineralogy:stones/basaltic_glass" - }, - { - "item": "minecraft:sand" - } - ], - "result": { - "id": "mineralogy:basaltic_glass_smooth", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "#mineralogy:stones/basaltic_glass", + "minecraft:sand" + ], + "result": { + "id": "mineralogy:basaltic_glass_smooth", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/basaltic_glass_smooth_brick.json b/src/main/resources/data/mineralogy/recipe/basaltic_glass_smooth_brick.json index 8fae2c5f6..029d0e1fd 100644 --- a/src/main/resources/data/mineralogy/recipe/basaltic_glass_smooth_brick.json +++ b/src/main/resources/data/mineralogy/recipe/basaltic_glass_smooth_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/basaltic_glass/smooth" - } - }, - "result": { - "id": "mineralogy:basaltic_glass_smooth_brick", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "#mineralogy:stones/basaltic_glass/smooth" + }, + "result": { + "id": "mineralogy:basaltic_glass_smooth_brick", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/basaltic_glass_smooth_brick_furnace.json b/src/main/resources/data/mineralogy/recipe/basaltic_glass_smooth_brick_furnace.json index b73117271..8bc7541c6 100644 --- a/src/main/resources/data/mineralogy/recipe/basaltic_glass_smooth_brick_furnace.json +++ b/src/main/resources/data/mineralogy/recipe/basaltic_glass_smooth_brick_furnace.json @@ -1,22 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "xxx", - "xyx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:slabs/basaltic_glass/smooth_brick" - }, - "y": { - "item": "minecraft:furnace" - } - }, - "result": { - "id": "mineralogy:basaltic_glass_smooth_brick_furnace", - "count": 1 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "xxx", + "xyx", + "xxx" + ], + "key": { + "x": "#mineralogy:slabs/basaltic_glass/smooth_brick", + "y": "minecraft:furnace" + }, + "result": { + "id": "mineralogy:basaltic_glass_smooth_brick_furnace", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/basaltic_glass_smooth_brick_slab.json b/src/main/resources/data/mineralogy/recipe/basaltic_glass_smooth_brick_slab.json index 2857d40a7..b30ef737f 100644 --- a/src/main/resources/data/mineralogy/recipe/basaltic_glass_smooth_brick_slab.json +++ b/src/main/resources/data/mineralogy/recipe/basaltic_glass_smooth_brick_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:basaltic_glass_smooth_brick" - } - }, - "result": { - "id": "mineralogy:basaltic_glass_smooth_brick_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:basaltic_glass_smooth_brick" + }, + "result": { + "id": "mineralogy:basaltic_glass_smooth_brick_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/basaltic_glass_smooth_brick_stairs.json b/src/main/resources/data/mineralogy/recipe/basaltic_glass_smooth_brick_stairs.json index 1d6f0d6b6..2ec6fe1ef 100644 --- a/src/main/resources/data/mineralogy/recipe/basaltic_glass_smooth_brick_stairs.json +++ b/src/main/resources/data/mineralogy/recipe/basaltic_glass_smooth_brick_stairs.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - "xx ", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/basaltic_glass/smooth_brick" - } - }, - "result": { - "id": "mineralogy:basaltic_glass_smooth_brick_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + "xx ", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/basaltic_glass/smooth_brick" + }, + "result": { + "id": "mineralogy:basaltic_glass_smooth_brick_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/basaltic_glass_smooth_brick_wall.json b/src/main/resources/data/mineralogy/recipe/basaltic_glass_smooth_brick_wall.json index 5ae04ebb0..9422e4ab7 100644 --- a/src/main/resources/data/mineralogy/recipe/basaltic_glass_smooth_brick_wall.json +++ b/src/main/resources/data/mineralogy/recipe/basaltic_glass_smooth_brick_wall.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/basaltic_glass/smooth_brick" - } - }, - "result": { - "id": "mineralogy:basaltic_glass_smooth_brick_wall", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/basaltic_glass/smooth_brick" + }, + "result": { + "id": "mineralogy:basaltic_glass_smooth_brick_wall", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/basaltic_glass_smooth_furnace.json b/src/main/resources/data/mineralogy/recipe/basaltic_glass_smooth_furnace.json index 02a67f03a..f8268ce4d 100644 --- a/src/main/resources/data/mineralogy/recipe/basaltic_glass_smooth_furnace.json +++ b/src/main/resources/data/mineralogy/recipe/basaltic_glass_smooth_furnace.json @@ -1,22 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "xxx", - "xyx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:slabs/basaltic_glass/smooth" - }, - "y": { - "item": "minecraft:furnace" - } - }, - "result": { - "id": "mineralogy:basaltic_glass_smooth_furnace", - "count": 1 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "xxx", + "xyx", + "xxx" + ], + "key": { + "x": "#mineralogy:slabs/basaltic_glass/smooth", + "y": "minecraft:furnace" + }, + "result": { + "id": "mineralogy:basaltic_glass_smooth_furnace", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/basaltic_glass_smooth_slab.json b/src/main/resources/data/mineralogy/recipe/basaltic_glass_smooth_slab.json index 5380218f7..2c72a6cec 100644 --- a/src/main/resources/data/mineralogy/recipe/basaltic_glass_smooth_slab.json +++ b/src/main/resources/data/mineralogy/recipe/basaltic_glass_smooth_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:basaltic_glass_smooth" - } - }, - "result": { - "id": "mineralogy:basaltic_glass_smooth_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:basaltic_glass_smooth" + }, + "result": { + "id": "mineralogy:basaltic_glass_smooth_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/basaltic_glass_smooth_stairs.json b/src/main/resources/data/mineralogy/recipe/basaltic_glass_smooth_stairs.json index ae8481c53..77480054f 100644 --- a/src/main/resources/data/mineralogy/recipe/basaltic_glass_smooth_stairs.json +++ b/src/main/resources/data/mineralogy/recipe/basaltic_glass_smooth_stairs.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - "xx ", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/basaltic_glass/smooth" - } - }, - "result": { - "id": "mineralogy:basaltic_glass_smooth_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + "xx ", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/basaltic_glass/smooth" + }, + "result": { + "id": "mineralogy:basaltic_glass_smooth_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/basaltic_glass_smooth_wall.json b/src/main/resources/data/mineralogy/recipe/basaltic_glass_smooth_wall.json index 8f4080dea..cf8b9ed34 100644 --- a/src/main/resources/data/mineralogy/recipe/basaltic_glass_smooth_wall.json +++ b/src/main/resources/data/mineralogy/recipe/basaltic_glass_smooth_wall.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/basaltic_glass/smooth" - } - }, - "result": { - "id": "mineralogy:basaltic_glass_smooth_wall", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/basaltic_glass/smooth" + }, + "result": { + "id": "mineralogy:basaltic_glass_smooth_wall", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/basaltic_glass_stairs.json b/src/main/resources/data/mineralogy/recipe/basaltic_glass_stairs.json index b8ecdf661..009b78338 100644 --- a/src/main/resources/data/mineralogy/recipe/basaltic_glass_stairs.json +++ b/src/main/resources/data/mineralogy/recipe/basaltic_glass_stairs.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - "xx ", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/basaltic_glass" - } - }, - "result": { - "id": "mineralogy:basaltic_glass_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + "xx ", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/basaltic_glass" + }, + "result": { + "id": "mineralogy:basaltic_glass_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/basaltic_glass_to_stone.json b/src/main/resources/data/mineralogy/recipe/basaltic_glass_to_stone.json index 4288111df..8b9208af5 100644 --- a/src/main/resources/data/mineralogy/recipe/basaltic_glass_to_stone.json +++ b/src/main/resources/data/mineralogy/recipe/basaltic_glass_to_stone.json @@ -1,12 +1,10 @@ { - "type": "minecraft:smelting", - "category": "blocks", - "ingredient": { - "item": "mineralogy:basaltic_glass" - }, - "result": { - "id": "minecraft:stone" - }, - "experience": 0.1, - "cookingtime": 200 + "type": "minecraft:smelting", + "category": "blocks", + "ingredient": "mineralogy:basaltic_glass", + "result": { + "id": "minecraft:stone" + }, + "experience": 0.1, + "cookingtime": 200 } diff --git a/src/main/resources/data/mineralogy/recipe/basaltic_glass_wall.json b/src/main/resources/data/mineralogy/recipe/basaltic_glass_wall.json index fa8d72dc6..0087078e6 100644 --- a/src/main/resources/data/mineralogy/recipe/basaltic_glass_wall.json +++ b/src/main/resources/data/mineralogy/recipe/basaltic_glass_wall.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/basaltic_glass" - } - }, - "result": { - "id": "mineralogy:basaltic_glass_wall", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/basaltic_glass" + }, + "result": { + "id": "mineralogy:basaltic_glass_wall", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/chalk.json b/src/main/resources/data/mineralogy/recipe/chalk.json index 4d058bb49..c03ae90d9 100644 --- a/src/main/resources/data/mineralogy/recipe/chalk.json +++ b/src/main/resources/data/mineralogy/recipe/chalk.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "tag": "c:dusts/chalk" - } - }, - "result": { - "id": "mineralogy:chalk", - "count": 1 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "#c:dusts/chalk" + }, + "result": { + "id": "mineralogy:chalk", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/chalk_dust.json b/src/main/resources/data/mineralogy/recipe/chalk_dust.json index 54b530fb9..d90435237 100644 --- a/src/main/resources/data/mineralogy/recipe/chalk_dust.json +++ b/src/main/resources/data/mineralogy/recipe/chalk_dust.json @@ -1,13 +1,11 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "tag": "c:storage_blocks/chalk" - } - ], - "result": { - "id": "mineralogy:chalk_dust", - "count": 4 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "#c:storage_blocks/chalk" + ], + "result": { + "id": "mineralogy:chalk_dust", + "count": 4 + } } diff --git a/src/main/resources/data/mineralogy/recipe/cobblestone.json b/src/main/resources/data/mineralogy/recipe/cobblestone.json index 08aafbfdb..45b5d2cce 100644 --- a/src/main/resources/data/mineralogy/recipe/cobblestone.json +++ b/src/main/resources/data/mineralogy/recipe/cobblestone.json @@ -1,22 +1,14 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "minecraft:stone" - }, - { - "item": "minecraft:stone" - }, - { - "item": "minecraft:gravel" - }, - { - "item": "minecraft:gravel" - } - ], - "result": { - "id": "minecraft:cobblestone", - "count": 4 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "minecraft:stone", + "minecraft:stone", + "minecraft:gravel", + "minecraft:gravel" + ], + "result": { + "id": "minecraft:cobblestone", + "count": 4 + } } diff --git a/src/main/resources/data/mineralogy/recipe/conglomerate_brick.json b/src/main/resources/data/mineralogy/recipe/conglomerate_brick.json index ea83413ec..ebeb0b7f4 100644 --- a/src/main/resources/data/mineralogy/recipe/conglomerate_brick.json +++ b/src/main/resources/data/mineralogy/recipe/conglomerate_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/conglomerate" - } - }, - "result": { - "id": "mineralogy:conglomerate_brick", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "#mineralogy:stones/conglomerate" + }, + "result": { + "id": "mineralogy:conglomerate_brick", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/conglomerate_brick_block_polishing.json b/src/main/resources/data/mineralogy/recipe/conglomerate_brick_block_polishing.json index dbe38356e..76a32f38c 100644 --- a/src/main/resources/data/mineralogy/recipe/conglomerate_brick_block_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/conglomerate_brick_block_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:conglomerate_brick" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:conglomerate_smooth_brick", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:conglomerate_brick", + "#c:sands" + ], + "result": { + "id": "mineralogy:conglomerate_smooth_brick", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/conglomerate_brick_furnace.json b/src/main/resources/data/mineralogy/recipe/conglomerate_brick_furnace.json index 40c742560..890891c85 100644 --- a/src/main/resources/data/mineralogy/recipe/conglomerate_brick_furnace.json +++ b/src/main/resources/data/mineralogy/recipe/conglomerate_brick_furnace.json @@ -1,22 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "xxx", - "xyx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:slabs/conglomerate/brick" - }, - "y": { - "item": "minecraft:furnace" - } - }, - "result": { - "id": "mineralogy:conglomerate_brick_furnace", - "count": 1 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "xxx", + "xyx", + "xxx" + ], + "key": { + "x": "#mineralogy:slabs/conglomerate/brick", + "y": "minecraft:furnace" + }, + "result": { + "id": "mineralogy:conglomerate_brick_furnace", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/conglomerate_brick_slab.json b/src/main/resources/data/mineralogy/recipe/conglomerate_brick_slab.json index 19c23f0c5..7598bc6c3 100644 --- a/src/main/resources/data/mineralogy/recipe/conglomerate_brick_slab.json +++ b/src/main/resources/data/mineralogy/recipe/conglomerate_brick_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:conglomerate_brick" - } - }, - "result": { - "id": "mineralogy:conglomerate_brick_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:conglomerate_brick" + }, + "result": { + "id": "mineralogy:conglomerate_brick_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/conglomerate_brick_slab_polishing.json b/src/main/resources/data/mineralogy/recipe/conglomerate_brick_slab_polishing.json index eb1ec7ada..42110efaa 100644 --- a/src/main/resources/data/mineralogy/recipe/conglomerate_brick_slab_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/conglomerate_brick_slab_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:conglomerate_brick_slab" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:conglomerate_smooth_brick_slab", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:conglomerate_brick_slab", + "#c:sands" + ], + "result": { + "id": "mineralogy:conglomerate_smooth_brick_slab", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/conglomerate_brick_slab_recombination.json b/src/main/resources/data/mineralogy/recipe/conglomerate_brick_slab_recombination.json index 138bcb53c..2c743b8c0 100644 --- a/src/main/resources/data/mineralogy/recipe/conglomerate_brick_slab_recombination.json +++ b/src/main/resources/data/mineralogy/recipe/conglomerate_brick_slab_recombination.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:conglomerate_brick_slab" - }, - { - "item": "mineralogy:conglomerate_brick_slab" - } - ], - "result": { - "id": "mineralogy:conglomerate_brick", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:conglomerate_brick_slab", + "mineralogy:conglomerate_brick_slab" + ], + "result": { + "id": "mineralogy:conglomerate_brick", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/conglomerate_brick_stairs.json b/src/main/resources/data/mineralogy/recipe/conglomerate_brick_stairs.json index 5cafd25bc..e463329eb 100644 --- a/src/main/resources/data/mineralogy/recipe/conglomerate_brick_stairs.json +++ b/src/main/resources/data/mineralogy/recipe/conglomerate_brick_stairs.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - "xx ", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/conglomerate/brick" - } - }, - "result": { - "id": "mineralogy:conglomerate_brick_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + "xx ", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/conglomerate/brick" + }, + "result": { + "id": "mineralogy:conglomerate_brick_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/conglomerate_brick_stairs_polishing.json b/src/main/resources/data/mineralogy/recipe/conglomerate_brick_stairs_polishing.json index 9cf628ff1..bc6762df0 100644 --- a/src/main/resources/data/mineralogy/recipe/conglomerate_brick_stairs_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/conglomerate_brick_stairs_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:conglomerate_brick_stairs" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:conglomerate_smooth_brick_stairs", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:conglomerate_brick_stairs", + "#c:sands" + ], + "result": { + "id": "mineralogy:conglomerate_smooth_brick_stairs", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/conglomerate_brick_wall.json b/src/main/resources/data/mineralogy/recipe/conglomerate_brick_wall.json index ad5c230eb..f4fdda614 100644 --- a/src/main/resources/data/mineralogy/recipe/conglomerate_brick_wall.json +++ b/src/main/resources/data/mineralogy/recipe/conglomerate_brick_wall.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/conglomerate/brick" - } - }, - "result": { - "id": "mineralogy:conglomerate_brick_wall", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/conglomerate/brick" + }, + "result": { + "id": "mineralogy:conglomerate_brick_wall", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/conglomerate_brick_wall_polishing.json b/src/main/resources/data/mineralogy/recipe/conglomerate_brick_wall_polishing.json index d5df1fc7f..4950d92f8 100644 --- a/src/main/resources/data/mineralogy/recipe/conglomerate_brick_wall_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/conglomerate_brick_wall_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:conglomerate_brick_wall" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:conglomerate_smooth_brick_wall", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:conglomerate_brick_wall", + "#c:sands" + ], + "result": { + "id": "mineralogy:conglomerate_smooth_brick_wall", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/conglomerate_cobblestone.json b/src/main/resources/data/mineralogy/recipe/conglomerate_cobblestone.json index 6cea6a4c8..4d14bbfe8 100644 --- a/src/main/resources/data/mineralogy/recipe/conglomerate_cobblestone.json +++ b/src/main/resources/data/mineralogy/recipe/conglomerate_cobblestone.json @@ -1,22 +1,14 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "tag": "mineralogy:stones/conglomerate" - }, - { - "tag": "mineralogy:stones/conglomerate" - }, - { - "item": "minecraft:gravel" - }, - { - "item": "minecraft:gravel" - } - ], - "result": { - "id": "minecraft:cobblestone", - "count": 4 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "#mineralogy:stones/conglomerate", + "#mineralogy:stones/conglomerate", + "minecraft:gravel", + "minecraft:gravel" + ], + "result": { + "id": "minecraft:cobblestone", + "count": 4 + } } diff --git a/src/main/resources/data/mineralogy/recipe/conglomerate_furnace.json b/src/main/resources/data/mineralogy/recipe/conglomerate_furnace.json index 7ce37a974..bed352346 100644 --- a/src/main/resources/data/mineralogy/recipe/conglomerate_furnace.json +++ b/src/main/resources/data/mineralogy/recipe/conglomerate_furnace.json @@ -1,22 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "xxx", - "xyx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:slabs/conglomerate" - }, - "y": { - "item": "minecraft:furnace" - } - }, - "result": { - "id": "mineralogy:conglomerate_furnace", - "count": 1 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "xxx", + "xyx", + "xxx" + ], + "key": { + "x": "#mineralogy:slabs/conglomerate", + "y": "minecraft:furnace" + }, + "result": { + "id": "mineralogy:conglomerate_furnace", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/conglomerate_polished_brick_slab_recombination.json b/src/main/resources/data/mineralogy/recipe/conglomerate_polished_brick_slab_recombination.json index ecd595a54..d42b62d52 100644 --- a/src/main/resources/data/mineralogy/recipe/conglomerate_polished_brick_slab_recombination.json +++ b/src/main/resources/data/mineralogy/recipe/conglomerate_polished_brick_slab_recombination.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:conglomerate_smooth_brick_slab" - }, - { - "item": "mineralogy:conglomerate_smooth_brick_slab" - } - ], - "result": { - "id": "mineralogy:conglomerate_smooth_brick", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:conglomerate_smooth_brick_slab", + "mineralogy:conglomerate_smooth_brick_slab" + ], + "result": { + "id": "mineralogy:conglomerate_smooth_brick", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/conglomerate_polished_slab_recombination.json b/src/main/resources/data/mineralogy/recipe/conglomerate_polished_slab_recombination.json index 50af2ba52..e2fbf20ee 100644 --- a/src/main/resources/data/mineralogy/recipe/conglomerate_polished_slab_recombination.json +++ b/src/main/resources/data/mineralogy/recipe/conglomerate_polished_slab_recombination.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:conglomerate_smooth_slab" - }, - { - "item": "mineralogy:conglomerate_smooth_slab" - } - ], - "result": { - "id": "mineralogy:conglomerate_smooth", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:conglomerate_smooth_slab", + "mineralogy:conglomerate_smooth_slab" + ], + "result": { + "id": "mineralogy:conglomerate_smooth", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/conglomerate_polished_slabs_to_brick.json b/src/main/resources/data/mineralogy/recipe/conglomerate_polished_slabs_to_brick.json index ee2bb9647..a0aee0a02 100644 --- a/src/main/resources/data/mineralogy/recipe/conglomerate_polished_slabs_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/conglomerate_polished_slabs_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:conglomerate_smooth_slab" - } - }, - "result": { - "id": "mineralogy:conglomerate_smooth_brick_slab", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:conglomerate_smooth_slab" + }, + "result": { + "id": "mineralogy:conglomerate_smooth_brick_slab", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/conglomerate_polished_stairs_to_brick.json b/src/main/resources/data/mineralogy/recipe/conglomerate_polished_stairs_to_brick.json index ef43b2692..661c07b77 100644 --- a/src/main/resources/data/mineralogy/recipe/conglomerate_polished_stairs_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/conglomerate_polished_stairs_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:conglomerate_smooth_stairs" - } - }, - "result": { - "id": "mineralogy:conglomerate_smooth_brick_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:conglomerate_smooth_stairs" + }, + "result": { + "id": "mineralogy:conglomerate_smooth_brick_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/conglomerate_polished_walls_to_brick.json b/src/main/resources/data/mineralogy/recipe/conglomerate_polished_walls_to_brick.json index bd8665e0b..abefb6661 100644 --- a/src/main/resources/data/mineralogy/recipe/conglomerate_polished_walls_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/conglomerate_polished_walls_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:conglomerate_smooth_wall" - } - }, - "result": { - "id": "mineralogy:conglomerate_smooth_brick_wall", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:conglomerate_smooth_wall" + }, + "result": { + "id": "mineralogy:conglomerate_smooth_brick_wall", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/conglomerate_raw_slab_polishing.json b/src/main/resources/data/mineralogy/recipe/conglomerate_raw_slab_polishing.json index 57c3a2544..36b37e96b 100644 --- a/src/main/resources/data/mineralogy/recipe/conglomerate_raw_slab_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/conglomerate_raw_slab_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:conglomerate_slab" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:conglomerate_smooth_slab", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:conglomerate_slab", + "#c:sands" + ], + "result": { + "id": "mineralogy:conglomerate_smooth_slab", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/conglomerate_raw_slab_recombination.json b/src/main/resources/data/mineralogy/recipe/conglomerate_raw_slab_recombination.json index 72f54bc3f..9160d7eb3 100644 --- a/src/main/resources/data/mineralogy/recipe/conglomerate_raw_slab_recombination.json +++ b/src/main/resources/data/mineralogy/recipe/conglomerate_raw_slab_recombination.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:conglomerate_slab" - }, - { - "item": "mineralogy:conglomerate_slab" - } - ], - "result": { - "id": "mineralogy:conglomerate", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:conglomerate_slab", + "mineralogy:conglomerate_slab" + ], + "result": { + "id": "mineralogy:conglomerate", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/conglomerate_raw_slabs_to_brick.json b/src/main/resources/data/mineralogy/recipe/conglomerate_raw_slabs_to_brick.json index a04b2140d..56640edc2 100644 --- a/src/main/resources/data/mineralogy/recipe/conglomerate_raw_slabs_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/conglomerate_raw_slabs_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:conglomerate_slab" - } - }, - "result": { - "id": "mineralogy:conglomerate_brick_slab", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:conglomerate_slab" + }, + "result": { + "id": "mineralogy:conglomerate_brick_slab", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/conglomerate_raw_stairs_polishing.json b/src/main/resources/data/mineralogy/recipe/conglomerate_raw_stairs_polishing.json index 37f3f55ee..8b05f218b 100644 --- a/src/main/resources/data/mineralogy/recipe/conglomerate_raw_stairs_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/conglomerate_raw_stairs_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:conglomerate_stairs" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:conglomerate_smooth_stairs", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:conglomerate_stairs", + "#c:sands" + ], + "result": { + "id": "mineralogy:conglomerate_smooth_stairs", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/conglomerate_raw_stairs_to_brick.json b/src/main/resources/data/mineralogy/recipe/conglomerate_raw_stairs_to_brick.json index 685699f57..9e36a442a 100644 --- a/src/main/resources/data/mineralogy/recipe/conglomerate_raw_stairs_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/conglomerate_raw_stairs_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:conglomerate_stairs" - } - }, - "result": { - "id": "mineralogy:conglomerate_brick_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:conglomerate_stairs" + }, + "result": { + "id": "mineralogy:conglomerate_brick_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/conglomerate_raw_wall_polishing.json b/src/main/resources/data/mineralogy/recipe/conglomerate_raw_wall_polishing.json index 7f7557840..4abaeebd5 100644 --- a/src/main/resources/data/mineralogy/recipe/conglomerate_raw_wall_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/conglomerate_raw_wall_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:conglomerate_wall" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:conglomerate_smooth_wall", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:conglomerate_wall", + "#c:sands" + ], + "result": { + "id": "mineralogy:conglomerate_smooth_wall", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/conglomerate_raw_walls_to_brick.json b/src/main/resources/data/mineralogy/recipe/conglomerate_raw_walls_to_brick.json index caba626ae..fcbca06bb 100644 --- a/src/main/resources/data/mineralogy/recipe/conglomerate_raw_walls_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/conglomerate_raw_walls_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:conglomerate_wall" - } - }, - "result": { - "id": "mineralogy:conglomerate_brick_wall", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:conglomerate_wall" + }, + "result": { + "id": "mineralogy:conglomerate_brick_wall", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/conglomerate_relief_axe.json b/src/main/resources/data/mineralogy/recipe/conglomerate_relief_axe.json index 0f0351be4..c0b016c5a 100644 --- a/src/main/resources/data/mineralogy/recipe/conglomerate_relief_axe.json +++ b/src/main/resources/data/mineralogy/recipe/conglomerate_relief_axe.json @@ -1,37 +1,19 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:conglomerate_relief_blank" - }, - { - "item": "mineralogy:conglomerate_relief_blank" - }, - { - "item": "mineralogy:conglomerate_relief_blank" - }, - { - "item": "mineralogy:conglomerate_relief_blank" - }, - { - "item": "mineralogy:conglomerate_relief_blank" - }, - { - "item": "mineralogy:conglomerate_relief_blank" - }, - { - "item": "mineralogy:conglomerate_relief_blank" - }, - { - "item": "mineralogy:conglomerate_relief_blank" - }, - { - "item": "minecraft:stone_axe" - } - ], - "result": { - "id": "mineralogy:conglomerate_relief_axe", - "count": 8 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:conglomerate_relief_blank", + "mineralogy:conglomerate_relief_blank", + "mineralogy:conglomerate_relief_blank", + "mineralogy:conglomerate_relief_blank", + "mineralogy:conglomerate_relief_blank", + "mineralogy:conglomerate_relief_blank", + "mineralogy:conglomerate_relief_blank", + "mineralogy:conglomerate_relief_blank", + "minecraft:stone_axe" + ], + "result": { + "id": "mineralogy:conglomerate_relief_axe", + "count": 8 + } } diff --git a/src/main/resources/data/mineralogy/recipe/conglomerate_relief_blank.json b/src/main/resources/data/mineralogy/recipe/conglomerate_relief_blank.json index 527b725ae..c5496f009 100644 --- a/src/main/resources/data/mineralogy/recipe/conglomerate_relief_blank.json +++ b/src/main/resources/data/mineralogy/recipe/conglomerate_relief_blank.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx", - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:conglomerate_smooth" - } - }, - "result": { - "id": "mineralogy:conglomerate_relief_blank", - "count": 16 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx", + "xxx" + ], + "key": { + "x": "mineralogy:conglomerate_smooth" + }, + "result": { + "id": "mineralogy:conglomerate_relief_blank", + "count": 16 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/conglomerate_relief_cross.json b/src/main/resources/data/mineralogy/recipe/conglomerate_relief_cross.json index 9dc0b8dca..ace43775a 100644 --- a/src/main/resources/data/mineralogy/recipe/conglomerate_relief_cross.json +++ b/src/main/resources/data/mineralogy/recipe/conglomerate_relief_cross.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x x", - " ", - "x x" - ], - "key": { - "x": { - "item": "mineralogy:conglomerate_relief_blank" - } - }, - "result": { - "id": "mineralogy:conglomerate_relief_cross", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x x", + " ", + "x x" + ], + "key": { + "x": "mineralogy:conglomerate_relief_blank" + }, + "result": { + "id": "mineralogy:conglomerate_relief_cross", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/conglomerate_relief_hammer.json b/src/main/resources/data/mineralogy/recipe/conglomerate_relief_hammer.json index ae572388b..7e868d5e7 100644 --- a/src/main/resources/data/mineralogy/recipe/conglomerate_relief_hammer.json +++ b/src/main/resources/data/mineralogy/recipe/conglomerate_relief_hammer.json @@ -1,25 +1,19 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "zxz", - "zyz", - "zzz" - ], - "key": { - "x": { - "item": "mineralogy:conglomerate_smooth" - }, - "y": { - "item": "minecraft:stick" - }, - "z": { - "item": "mineralogy:conglomerate_relief_blank" - } - }, - "result": { - "id": "mineralogy:conglomerate_relief_hammer", - "count": 7 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "zxz", + "zyz", + "zzz" + ], + "key": { + "x": "mineralogy:conglomerate_smooth", + "y": "minecraft:stick", + "z": "mineralogy:conglomerate_relief_blank" + }, + "result": { + "id": "mineralogy:conglomerate_relief_hammer", + "count": 7 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/conglomerate_relief_hoe.json b/src/main/resources/data/mineralogy/recipe/conglomerate_relief_hoe.json index f5384d6af..c093d8b2c 100644 --- a/src/main/resources/data/mineralogy/recipe/conglomerate_relief_hoe.json +++ b/src/main/resources/data/mineralogy/recipe/conglomerate_relief_hoe.json @@ -1,37 +1,19 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:conglomerate_relief_blank" - }, - { - "item": "mineralogy:conglomerate_relief_blank" - }, - { - "item": "mineralogy:conglomerate_relief_blank" - }, - { - "item": "mineralogy:conglomerate_relief_blank" - }, - { - "item": "mineralogy:conglomerate_relief_blank" - }, - { - "item": "mineralogy:conglomerate_relief_blank" - }, - { - "item": "mineralogy:conglomerate_relief_blank" - }, - { - "item": "mineralogy:conglomerate_relief_blank" - }, - { - "item": "minecraft:stone_hoe" - } - ], - "result": { - "id": "mineralogy:conglomerate_relief_hoe", - "count": 8 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:conglomerate_relief_blank", + "mineralogy:conglomerate_relief_blank", + "mineralogy:conglomerate_relief_blank", + "mineralogy:conglomerate_relief_blank", + "mineralogy:conglomerate_relief_blank", + "mineralogy:conglomerate_relief_blank", + "mineralogy:conglomerate_relief_blank", + "mineralogy:conglomerate_relief_blank", + "minecraft:stone_hoe" + ], + "result": { + "id": "mineralogy:conglomerate_relief_hoe", + "count": 8 + } } diff --git a/src/main/resources/data/mineralogy/recipe/conglomerate_relief_horizontal.json b/src/main/resources/data/mineralogy/recipe/conglomerate_relief_horizontal.json index 5ab829be0..114a092bf 100644 --- a/src/main/resources/data/mineralogy/recipe/conglomerate_relief_horizontal.json +++ b/src/main/resources/data/mineralogy/recipe/conglomerate_relief_horizontal.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:conglomerate_relief_blank" - } - }, - "result": { - "id": "mineralogy:conglomerate_relief_horizontal", - "count": 3 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:conglomerate_relief_blank" + }, + "result": { + "id": "mineralogy:conglomerate_relief_horizontal", + "count": 3 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/conglomerate_relief_i.json b/src/main/resources/data/mineralogy/recipe/conglomerate_relief_i.json index a66597879..25f09ba4e 100644 --- a/src/main/resources/data/mineralogy/recipe/conglomerate_relief_i.json +++ b/src/main/resources/data/mineralogy/recipe/conglomerate_relief_i.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - " x ", - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:conglomerate_relief_blank" - } - }, - "result": { - "id": "mineralogy:conglomerate_relief_i", - "count": 7 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + " x ", + "xxx" + ], + "key": { + "x": "mineralogy:conglomerate_relief_blank" + }, + "result": { + "id": "mineralogy:conglomerate_relief_i", + "count": 7 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/conglomerate_relief_left.json b/src/main/resources/data/mineralogy/recipe/conglomerate_relief_left.json index 315a45fb6..a8cc36465 100644 --- a/src/main/resources/data/mineralogy/recipe/conglomerate_relief_left.json +++ b/src/main/resources/data/mineralogy/recipe/conglomerate_relief_left.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - " x ", - " x" - ], - "key": { - "x": { - "item": "mineralogy:conglomerate_relief_blank" - } - }, - "result": { - "id": "mineralogy:conglomerate_relief_left", - "count": 3 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + " x ", + " x" + ], + "key": { + "x": "mineralogy:conglomerate_relief_blank" + }, + "result": { + "id": "mineralogy:conglomerate_relief_left", + "count": 3 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/conglomerate_relief_pickaxe.json b/src/main/resources/data/mineralogy/recipe/conglomerate_relief_pickaxe.json index e248cf251..3d8b43380 100644 --- a/src/main/resources/data/mineralogy/recipe/conglomerate_relief_pickaxe.json +++ b/src/main/resources/data/mineralogy/recipe/conglomerate_relief_pickaxe.json @@ -1,37 +1,19 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:conglomerate_relief_blank" - }, - { - "item": "mineralogy:conglomerate_relief_blank" - }, - { - "item": "mineralogy:conglomerate_relief_blank" - }, - { - "item": "mineralogy:conglomerate_relief_blank" - }, - { - "item": "mineralogy:conglomerate_relief_blank" - }, - { - "item": "mineralogy:conglomerate_relief_blank" - }, - { - "item": "mineralogy:conglomerate_relief_blank" - }, - { - "item": "mineralogy:conglomerate_relief_blank" - }, - { - "item": "minecraft:stone_pickaxe" - } - ], - "result": { - "id": "mineralogy:conglomerate_relief_pickaxe", - "count": 8 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:conglomerate_relief_blank", + "mineralogy:conglomerate_relief_blank", + "mineralogy:conglomerate_relief_blank", + "mineralogy:conglomerate_relief_blank", + "mineralogy:conglomerate_relief_blank", + "mineralogy:conglomerate_relief_blank", + "mineralogy:conglomerate_relief_blank", + "mineralogy:conglomerate_relief_blank", + "minecraft:stone_pickaxe" + ], + "result": { + "id": "mineralogy:conglomerate_relief_pickaxe", + "count": 8 + } } diff --git a/src/main/resources/data/mineralogy/recipe/conglomerate_relief_plus.json b/src/main/resources/data/mineralogy/recipe/conglomerate_relief_plus.json index c0f7a828a..28d8cadb5 100644 --- a/src/main/resources/data/mineralogy/recipe/conglomerate_relief_plus.json +++ b/src/main/resources/data/mineralogy/recipe/conglomerate_relief_plus.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - " x ", - "xxx", - " x " - ], - "key": { - "x": { - "item": "mineralogy:conglomerate_relief_blank" - } - }, - "result": { - "id": "mineralogy:conglomerate_relief_plus", - "count": 5 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + " x ", + "xxx", + " x " + ], + "key": { + "x": "mineralogy:conglomerate_relief_blank" + }, + "result": { + "id": "mineralogy:conglomerate_relief_plus", + "count": 5 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/conglomerate_relief_right.json b/src/main/resources/data/mineralogy/recipe/conglomerate_relief_right.json index d53d37157..2f993fa1f 100644 --- a/src/main/resources/data/mineralogy/recipe/conglomerate_relief_right.json +++ b/src/main/resources/data/mineralogy/recipe/conglomerate_relief_right.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:conglomerate_relief_left" - }, - { - "item": "mineralogy:conglomerate_relief_left" - } - ], - "result": { - "id": "mineralogy:conglomerate_relief_right", - "count": 2 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:conglomerate_relief_left", + "mineralogy:conglomerate_relief_left" + ], + "result": { + "id": "mineralogy:conglomerate_relief_right", + "count": 2 + } } diff --git a/src/main/resources/data/mineralogy/recipe/conglomerate_relief_sword.json b/src/main/resources/data/mineralogy/recipe/conglomerate_relief_sword.json index 247100246..5fe5e34f2 100644 --- a/src/main/resources/data/mineralogy/recipe/conglomerate_relief_sword.json +++ b/src/main/resources/data/mineralogy/recipe/conglomerate_relief_sword.json @@ -1,37 +1,19 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:conglomerate_relief_blank" - }, - { - "item": "mineralogy:conglomerate_relief_blank" - }, - { - "item": "mineralogy:conglomerate_relief_blank" - }, - { - "item": "mineralogy:conglomerate_relief_blank" - }, - { - "item": "mineralogy:conglomerate_relief_blank" - }, - { - "item": "mineralogy:conglomerate_relief_blank" - }, - { - "item": "mineralogy:conglomerate_relief_blank" - }, - { - "item": "mineralogy:conglomerate_relief_blank" - }, - { - "item": "minecraft:stone_sword" - } - ], - "result": { - "id": "mineralogy:conglomerate_relief_sword", - "count": 8 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:conglomerate_relief_blank", + "mineralogy:conglomerate_relief_blank", + "mineralogy:conglomerate_relief_blank", + "mineralogy:conglomerate_relief_blank", + "mineralogy:conglomerate_relief_blank", + "mineralogy:conglomerate_relief_blank", + "mineralogy:conglomerate_relief_blank", + "mineralogy:conglomerate_relief_blank", + "minecraft:stone_sword" + ], + "result": { + "id": "mineralogy:conglomerate_relief_sword", + "count": 8 + } } diff --git a/src/main/resources/data/mineralogy/recipe/conglomerate_relief_vertical.json b/src/main/resources/data/mineralogy/recipe/conglomerate_relief_vertical.json index 6a796fe39..9a460907f 100644 --- a/src/main/resources/data/mineralogy/recipe/conglomerate_relief_vertical.json +++ b/src/main/resources/data/mineralogy/recipe/conglomerate_relief_vertical.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x", - "x", - "x" - ], - "key": { - "x": { - "item": "mineralogy:conglomerate_relief_blank" - } - }, - "result": { - "id": "mineralogy:conglomerate_relief_vertical", - "count": 3 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x", + "x", + "x" + ], + "key": { + "x": "mineralogy:conglomerate_relief_blank" + }, + "result": { + "id": "mineralogy:conglomerate_relief_vertical", + "count": 3 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/conglomerate_slab.json b/src/main/resources/data/mineralogy/recipe/conglomerate_slab.json index 60f3f75b6..c8b002100 100644 --- a/src/main/resources/data/mineralogy/recipe/conglomerate_slab.json +++ b/src/main/resources/data/mineralogy/recipe/conglomerate_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:conglomerate" - } - }, - "result": { - "id": "mineralogy:conglomerate_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:conglomerate" + }, + "result": { + "id": "mineralogy:conglomerate_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/conglomerate_smooth.json b/src/main/resources/data/mineralogy/recipe/conglomerate_smooth.json index 09be2325a..6f616b737 100644 --- a/src/main/resources/data/mineralogy/recipe/conglomerate_smooth.json +++ b/src/main/resources/data/mineralogy/recipe/conglomerate_smooth.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "tag": "mineralogy:stones/conglomerate" - }, - { - "item": "minecraft:sand" - } - ], - "result": { - "id": "mineralogy:conglomerate_smooth", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "#mineralogy:stones/conglomerate", + "minecraft:sand" + ], + "result": { + "id": "mineralogy:conglomerate_smooth", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/conglomerate_smooth_brick.json b/src/main/resources/data/mineralogy/recipe/conglomerate_smooth_brick.json index 1a5be31a0..149040cd5 100644 --- a/src/main/resources/data/mineralogy/recipe/conglomerate_smooth_brick.json +++ b/src/main/resources/data/mineralogy/recipe/conglomerate_smooth_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/conglomerate/smooth" - } - }, - "result": { - "id": "mineralogy:conglomerate_smooth_brick", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "#mineralogy:stones/conglomerate/smooth" + }, + "result": { + "id": "mineralogy:conglomerate_smooth_brick", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/conglomerate_smooth_brick_furnace.json b/src/main/resources/data/mineralogy/recipe/conglomerate_smooth_brick_furnace.json index 63eff8520..7c60c83fc 100644 --- a/src/main/resources/data/mineralogy/recipe/conglomerate_smooth_brick_furnace.json +++ b/src/main/resources/data/mineralogy/recipe/conglomerate_smooth_brick_furnace.json @@ -1,22 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "xxx", - "xyx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:slabs/conglomerate/smooth_brick" - }, - "y": { - "item": "minecraft:furnace" - } - }, - "result": { - "id": "mineralogy:conglomerate_smooth_brick_furnace", - "count": 1 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "xxx", + "xyx", + "xxx" + ], + "key": { + "x": "#mineralogy:slabs/conglomerate/smooth_brick", + "y": "minecraft:furnace" + }, + "result": { + "id": "mineralogy:conglomerate_smooth_brick_furnace", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/conglomerate_smooth_brick_slab.json b/src/main/resources/data/mineralogy/recipe/conglomerate_smooth_brick_slab.json index 0bcc89350..bbdcbf283 100644 --- a/src/main/resources/data/mineralogy/recipe/conglomerate_smooth_brick_slab.json +++ b/src/main/resources/data/mineralogy/recipe/conglomerate_smooth_brick_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:conglomerate_smooth_brick" - } - }, - "result": { - "id": "mineralogy:conglomerate_smooth_brick_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:conglomerate_smooth_brick" + }, + "result": { + "id": "mineralogy:conglomerate_smooth_brick_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/conglomerate_smooth_brick_stairs.json b/src/main/resources/data/mineralogy/recipe/conglomerate_smooth_brick_stairs.json index f10746ea3..ee0f81be7 100644 --- a/src/main/resources/data/mineralogy/recipe/conglomerate_smooth_brick_stairs.json +++ b/src/main/resources/data/mineralogy/recipe/conglomerate_smooth_brick_stairs.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - "xx ", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/conglomerate/smooth_brick" - } - }, - "result": { - "id": "mineralogy:conglomerate_smooth_brick_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + "xx ", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/conglomerate/smooth_brick" + }, + "result": { + "id": "mineralogy:conglomerate_smooth_brick_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/conglomerate_smooth_brick_wall.json b/src/main/resources/data/mineralogy/recipe/conglomerate_smooth_brick_wall.json index c8e20f9cf..94a60cfda 100644 --- a/src/main/resources/data/mineralogy/recipe/conglomerate_smooth_brick_wall.json +++ b/src/main/resources/data/mineralogy/recipe/conglomerate_smooth_brick_wall.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/conglomerate/smooth_brick" - } - }, - "result": { - "id": "mineralogy:conglomerate_smooth_brick_wall", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/conglomerate/smooth_brick" + }, + "result": { + "id": "mineralogy:conglomerate_smooth_brick_wall", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/conglomerate_smooth_furnace.json b/src/main/resources/data/mineralogy/recipe/conglomerate_smooth_furnace.json index eebab4821..f7a8bcbd0 100644 --- a/src/main/resources/data/mineralogy/recipe/conglomerate_smooth_furnace.json +++ b/src/main/resources/data/mineralogy/recipe/conglomerate_smooth_furnace.json @@ -1,22 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "xxx", - "xyx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:slabs/conglomerate/smooth" - }, - "y": { - "item": "minecraft:furnace" - } - }, - "result": { - "id": "mineralogy:conglomerate_smooth_furnace", - "count": 1 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "xxx", + "xyx", + "xxx" + ], + "key": { + "x": "#mineralogy:slabs/conglomerate/smooth", + "y": "minecraft:furnace" + }, + "result": { + "id": "mineralogy:conglomerate_smooth_furnace", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/conglomerate_smooth_slab.json b/src/main/resources/data/mineralogy/recipe/conglomerate_smooth_slab.json index 109dfa28e..b6326ba4c 100644 --- a/src/main/resources/data/mineralogy/recipe/conglomerate_smooth_slab.json +++ b/src/main/resources/data/mineralogy/recipe/conglomerate_smooth_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:conglomerate_smooth" - } - }, - "result": { - "id": "mineralogy:conglomerate_smooth_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:conglomerate_smooth" + }, + "result": { + "id": "mineralogy:conglomerate_smooth_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/conglomerate_smooth_stairs.json b/src/main/resources/data/mineralogy/recipe/conglomerate_smooth_stairs.json index d9f36e319..a4e66bcab 100644 --- a/src/main/resources/data/mineralogy/recipe/conglomerate_smooth_stairs.json +++ b/src/main/resources/data/mineralogy/recipe/conglomerate_smooth_stairs.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - "xx ", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/conglomerate/smooth" - } - }, - "result": { - "id": "mineralogy:conglomerate_smooth_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + "xx ", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/conglomerate/smooth" + }, + "result": { + "id": "mineralogy:conglomerate_smooth_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/conglomerate_smooth_wall.json b/src/main/resources/data/mineralogy/recipe/conglomerate_smooth_wall.json index a902acf07..088fc7ca1 100644 --- a/src/main/resources/data/mineralogy/recipe/conglomerate_smooth_wall.json +++ b/src/main/resources/data/mineralogy/recipe/conglomerate_smooth_wall.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/conglomerate/smooth" - } - }, - "result": { - "id": "mineralogy:conglomerate_smooth_wall", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/conglomerate/smooth" + }, + "result": { + "id": "mineralogy:conglomerate_smooth_wall", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/conglomerate_stairs.json b/src/main/resources/data/mineralogy/recipe/conglomerate_stairs.json index b4b332b00..745017771 100644 --- a/src/main/resources/data/mineralogy/recipe/conglomerate_stairs.json +++ b/src/main/resources/data/mineralogy/recipe/conglomerate_stairs.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - "xx ", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/conglomerate" - } - }, - "result": { - "id": "mineralogy:conglomerate_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + "xx ", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/conglomerate" + }, + "result": { + "id": "mineralogy:conglomerate_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/conglomerate_to_stone.json b/src/main/resources/data/mineralogy/recipe/conglomerate_to_stone.json index 2245f6b3b..25f108e7d 100644 --- a/src/main/resources/data/mineralogy/recipe/conglomerate_to_stone.json +++ b/src/main/resources/data/mineralogy/recipe/conglomerate_to_stone.json @@ -1,12 +1,10 @@ { - "type": "minecraft:smelting", - "category": "blocks", - "ingredient": { - "item": "mineralogy:conglomerate" - }, - "result": { - "id": "minecraft:stone" - }, - "experience": 0.1, - "cookingtime": 200 + "type": "minecraft:smelting", + "category": "blocks", + "ingredient": "mineralogy:conglomerate", + "result": { + "id": "minecraft:stone" + }, + "experience": 0.1, + "cookingtime": 200 } diff --git a/src/main/resources/data/mineralogy/recipe/conglomerate_wall.json b/src/main/resources/data/mineralogy/recipe/conglomerate_wall.json index 2bd06de96..7767c68bf 100644 --- a/src/main/resources/data/mineralogy/recipe/conglomerate_wall.json +++ b/src/main/resources/data/mineralogy/recipe/conglomerate_wall.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/conglomerate" - } - }, - "result": { - "id": "mineralogy:conglomerate_wall", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/conglomerate" + }, + "result": { + "id": "mineralogy:conglomerate_wall", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/diabase_brick.json b/src/main/resources/data/mineralogy/recipe/diabase_brick.json index 3211f3ca9..42b81cf4c 100644 --- a/src/main/resources/data/mineralogy/recipe/diabase_brick.json +++ b/src/main/resources/data/mineralogy/recipe/diabase_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/diabase" - } - }, - "result": { - "id": "mineralogy:diabase_brick", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "#mineralogy:stones/diabase" + }, + "result": { + "id": "mineralogy:diabase_brick", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/diabase_brick_block_polishing.json b/src/main/resources/data/mineralogy/recipe/diabase_brick_block_polishing.json index dc841f1a4..e59f31995 100644 --- a/src/main/resources/data/mineralogy/recipe/diabase_brick_block_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/diabase_brick_block_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:diabase_brick" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:diabase_smooth_brick", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:diabase_brick", + "#c:sands" + ], + "result": { + "id": "mineralogy:diabase_smooth_brick", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/diabase_brick_furnace.json b/src/main/resources/data/mineralogy/recipe/diabase_brick_furnace.json index 99c7026b4..03f56ac6e 100644 --- a/src/main/resources/data/mineralogy/recipe/diabase_brick_furnace.json +++ b/src/main/resources/data/mineralogy/recipe/diabase_brick_furnace.json @@ -1,22 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "xxx", - "xyx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:slabs/diabase/brick" - }, - "y": { - "item": "minecraft:furnace" - } - }, - "result": { - "id": "mineralogy:diabase_brick_furnace", - "count": 1 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "xxx", + "xyx", + "xxx" + ], + "key": { + "x": "#mineralogy:slabs/diabase/brick", + "y": "minecraft:furnace" + }, + "result": { + "id": "mineralogy:diabase_brick_furnace", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/diabase_brick_slab.json b/src/main/resources/data/mineralogy/recipe/diabase_brick_slab.json index dda058796..ad1399378 100644 --- a/src/main/resources/data/mineralogy/recipe/diabase_brick_slab.json +++ b/src/main/resources/data/mineralogy/recipe/diabase_brick_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:diabase_brick" - } - }, - "result": { - "id": "mineralogy:diabase_brick_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:diabase_brick" + }, + "result": { + "id": "mineralogy:diabase_brick_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/diabase_brick_slab_polishing.json b/src/main/resources/data/mineralogy/recipe/diabase_brick_slab_polishing.json index 786c51667..e893a42ca 100644 --- a/src/main/resources/data/mineralogy/recipe/diabase_brick_slab_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/diabase_brick_slab_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:diabase_brick_slab" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:diabase_smooth_brick_slab", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:diabase_brick_slab", + "#c:sands" + ], + "result": { + "id": "mineralogy:diabase_smooth_brick_slab", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/diabase_brick_slab_recombination.json b/src/main/resources/data/mineralogy/recipe/diabase_brick_slab_recombination.json index 758abb426..c5fb61cf0 100644 --- a/src/main/resources/data/mineralogy/recipe/diabase_brick_slab_recombination.json +++ b/src/main/resources/data/mineralogy/recipe/diabase_brick_slab_recombination.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:diabase_brick_slab" - }, - { - "item": "mineralogy:diabase_brick_slab" - } - ], - "result": { - "id": "mineralogy:diabase_brick", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:diabase_brick_slab", + "mineralogy:diabase_brick_slab" + ], + "result": { + "id": "mineralogy:diabase_brick", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/diabase_brick_stairs.json b/src/main/resources/data/mineralogy/recipe/diabase_brick_stairs.json index ac51d9e5f..7a50145ab 100644 --- a/src/main/resources/data/mineralogy/recipe/diabase_brick_stairs.json +++ b/src/main/resources/data/mineralogy/recipe/diabase_brick_stairs.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - "xx ", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/diabase/brick" - } - }, - "result": { - "id": "mineralogy:diabase_brick_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + "xx ", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/diabase/brick" + }, + "result": { + "id": "mineralogy:diabase_brick_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/diabase_brick_stairs_polishing.json b/src/main/resources/data/mineralogy/recipe/diabase_brick_stairs_polishing.json index dc7edcab6..647aafcde 100644 --- a/src/main/resources/data/mineralogy/recipe/diabase_brick_stairs_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/diabase_brick_stairs_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:diabase_brick_stairs" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:diabase_smooth_brick_stairs", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:diabase_brick_stairs", + "#c:sands" + ], + "result": { + "id": "mineralogy:diabase_smooth_brick_stairs", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/diabase_brick_wall.json b/src/main/resources/data/mineralogy/recipe/diabase_brick_wall.json index 2f36de4b6..88577eb4e 100644 --- a/src/main/resources/data/mineralogy/recipe/diabase_brick_wall.json +++ b/src/main/resources/data/mineralogy/recipe/diabase_brick_wall.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/diabase/brick" - } - }, - "result": { - "id": "mineralogy:diabase_brick_wall", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/diabase/brick" + }, + "result": { + "id": "mineralogy:diabase_brick_wall", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/diabase_brick_wall_polishing.json b/src/main/resources/data/mineralogy/recipe/diabase_brick_wall_polishing.json index ec20a7ed2..ffb243397 100644 --- a/src/main/resources/data/mineralogy/recipe/diabase_brick_wall_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/diabase_brick_wall_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:diabase_brick_wall" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:diabase_smooth_brick_wall", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:diabase_brick_wall", + "#c:sands" + ], + "result": { + "id": "mineralogy:diabase_smooth_brick_wall", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/diabase_cobblestone.json b/src/main/resources/data/mineralogy/recipe/diabase_cobblestone.json index efd305391..eabf58254 100644 --- a/src/main/resources/data/mineralogy/recipe/diabase_cobblestone.json +++ b/src/main/resources/data/mineralogy/recipe/diabase_cobblestone.json @@ -1,22 +1,14 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "tag": "mineralogy:stones/diabase" - }, - { - "tag": "mineralogy:stones/diabase" - }, - { - "item": "minecraft:gravel" - }, - { - "item": "minecraft:gravel" - } - ], - "result": { - "id": "minecraft:cobblestone", - "count": 4 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "#mineralogy:stones/diabase", + "#mineralogy:stones/diabase", + "minecraft:gravel", + "minecraft:gravel" + ], + "result": { + "id": "minecraft:cobblestone", + "count": 4 + } } diff --git a/src/main/resources/data/mineralogy/recipe/diabase_furnace.json b/src/main/resources/data/mineralogy/recipe/diabase_furnace.json index 605e2bdc1..950c31517 100644 --- a/src/main/resources/data/mineralogy/recipe/diabase_furnace.json +++ b/src/main/resources/data/mineralogy/recipe/diabase_furnace.json @@ -1,22 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "xxx", - "xyx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:slabs/diabase" - }, - "y": { - "item": "minecraft:furnace" - } - }, - "result": { - "id": "mineralogy:diabase_furnace", - "count": 1 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "xxx", + "xyx", + "xxx" + ], + "key": { + "x": "#mineralogy:slabs/diabase", + "y": "minecraft:furnace" + }, + "result": { + "id": "mineralogy:diabase_furnace", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/diabase_polished_brick_slab_recombination.json b/src/main/resources/data/mineralogy/recipe/diabase_polished_brick_slab_recombination.json index c1bfa0c8e..f80fbb0ea 100644 --- a/src/main/resources/data/mineralogy/recipe/diabase_polished_brick_slab_recombination.json +++ b/src/main/resources/data/mineralogy/recipe/diabase_polished_brick_slab_recombination.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:diabase_smooth_brick_slab" - }, - { - "item": "mineralogy:diabase_smooth_brick_slab" - } - ], - "result": { - "id": "mineralogy:diabase_smooth_brick", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:diabase_smooth_brick_slab", + "mineralogy:diabase_smooth_brick_slab" + ], + "result": { + "id": "mineralogy:diabase_smooth_brick", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/diabase_polished_slab_recombination.json b/src/main/resources/data/mineralogy/recipe/diabase_polished_slab_recombination.json index 08f7cec3e..b18da2084 100644 --- a/src/main/resources/data/mineralogy/recipe/diabase_polished_slab_recombination.json +++ b/src/main/resources/data/mineralogy/recipe/diabase_polished_slab_recombination.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:diabase_smooth_slab" - }, - { - "item": "mineralogy:diabase_smooth_slab" - } - ], - "result": { - "id": "mineralogy:diabase_smooth", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:diabase_smooth_slab", + "mineralogy:diabase_smooth_slab" + ], + "result": { + "id": "mineralogy:diabase_smooth", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/diabase_polished_slabs_to_brick.json b/src/main/resources/data/mineralogy/recipe/diabase_polished_slabs_to_brick.json index bd94bce8b..48e9e04ef 100644 --- a/src/main/resources/data/mineralogy/recipe/diabase_polished_slabs_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/diabase_polished_slabs_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:diabase_smooth_slab" - } - }, - "result": { - "id": "mineralogy:diabase_smooth_brick_slab", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:diabase_smooth_slab" + }, + "result": { + "id": "mineralogy:diabase_smooth_brick_slab", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/diabase_polished_stairs_to_brick.json b/src/main/resources/data/mineralogy/recipe/diabase_polished_stairs_to_brick.json index 50f59bfd9..ac8ee61ea 100644 --- a/src/main/resources/data/mineralogy/recipe/diabase_polished_stairs_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/diabase_polished_stairs_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:diabase_smooth_stairs" - } - }, - "result": { - "id": "mineralogy:diabase_smooth_brick_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:diabase_smooth_stairs" + }, + "result": { + "id": "mineralogy:diabase_smooth_brick_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/diabase_polished_walls_to_brick.json b/src/main/resources/data/mineralogy/recipe/diabase_polished_walls_to_brick.json index 8a225432d..ddb2a9b67 100644 --- a/src/main/resources/data/mineralogy/recipe/diabase_polished_walls_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/diabase_polished_walls_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:diabase_smooth_wall" - } - }, - "result": { - "id": "mineralogy:diabase_smooth_brick_wall", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:diabase_smooth_wall" + }, + "result": { + "id": "mineralogy:diabase_smooth_brick_wall", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/diabase_raw_slab_polishing.json b/src/main/resources/data/mineralogy/recipe/diabase_raw_slab_polishing.json index a9d90329e..6572bac68 100644 --- a/src/main/resources/data/mineralogy/recipe/diabase_raw_slab_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/diabase_raw_slab_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:diabase_slab" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:diabase_smooth_slab", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:diabase_slab", + "#c:sands" + ], + "result": { + "id": "mineralogy:diabase_smooth_slab", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/diabase_raw_slab_recombination.json b/src/main/resources/data/mineralogy/recipe/diabase_raw_slab_recombination.json index 3de5a1cc1..f87868a0a 100644 --- a/src/main/resources/data/mineralogy/recipe/diabase_raw_slab_recombination.json +++ b/src/main/resources/data/mineralogy/recipe/diabase_raw_slab_recombination.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:diabase_slab" - }, - { - "item": "mineralogy:diabase_slab" - } - ], - "result": { - "id": "mineralogy:diabase", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:diabase_slab", + "mineralogy:diabase_slab" + ], + "result": { + "id": "mineralogy:diabase", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/diabase_raw_slabs_to_brick.json b/src/main/resources/data/mineralogy/recipe/diabase_raw_slabs_to_brick.json index d42b9ac36..0b4b6423f 100644 --- a/src/main/resources/data/mineralogy/recipe/diabase_raw_slabs_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/diabase_raw_slabs_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:diabase_slab" - } - }, - "result": { - "id": "mineralogy:diabase_brick_slab", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:diabase_slab" + }, + "result": { + "id": "mineralogy:diabase_brick_slab", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/diabase_raw_stairs_polishing.json b/src/main/resources/data/mineralogy/recipe/diabase_raw_stairs_polishing.json index a5c1322cf..42836836a 100644 --- a/src/main/resources/data/mineralogy/recipe/diabase_raw_stairs_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/diabase_raw_stairs_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:diabase_stairs" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:diabase_smooth_stairs", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:diabase_stairs", + "#c:sands" + ], + "result": { + "id": "mineralogy:diabase_smooth_stairs", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/diabase_raw_stairs_to_brick.json b/src/main/resources/data/mineralogy/recipe/diabase_raw_stairs_to_brick.json index 85f6bf68d..ebdecf4d8 100644 --- a/src/main/resources/data/mineralogy/recipe/diabase_raw_stairs_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/diabase_raw_stairs_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:diabase_stairs" - } - }, - "result": { - "id": "mineralogy:diabase_brick_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:diabase_stairs" + }, + "result": { + "id": "mineralogy:diabase_brick_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/diabase_raw_wall_polishing.json b/src/main/resources/data/mineralogy/recipe/diabase_raw_wall_polishing.json index 131883ba2..56b5047a8 100644 --- a/src/main/resources/data/mineralogy/recipe/diabase_raw_wall_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/diabase_raw_wall_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:diabase_wall" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:diabase_smooth_wall", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:diabase_wall", + "#c:sands" + ], + "result": { + "id": "mineralogy:diabase_smooth_wall", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/diabase_raw_walls_to_brick.json b/src/main/resources/data/mineralogy/recipe/diabase_raw_walls_to_brick.json index 86e8877bc..5cc5cd848 100644 --- a/src/main/resources/data/mineralogy/recipe/diabase_raw_walls_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/diabase_raw_walls_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:diabase_wall" - } - }, - "result": { - "id": "mineralogy:diabase_brick_wall", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:diabase_wall" + }, + "result": { + "id": "mineralogy:diabase_brick_wall", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/diabase_relief_axe.json b/src/main/resources/data/mineralogy/recipe/diabase_relief_axe.json index f8cccb78b..c8df9c6f7 100644 --- a/src/main/resources/data/mineralogy/recipe/diabase_relief_axe.json +++ b/src/main/resources/data/mineralogy/recipe/diabase_relief_axe.json @@ -1,37 +1,19 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:diabase_relief_blank" - }, - { - "item": "mineralogy:diabase_relief_blank" - }, - { - "item": "mineralogy:diabase_relief_blank" - }, - { - "item": "mineralogy:diabase_relief_blank" - }, - { - "item": "mineralogy:diabase_relief_blank" - }, - { - "item": "mineralogy:diabase_relief_blank" - }, - { - "item": "mineralogy:diabase_relief_blank" - }, - { - "item": "mineralogy:diabase_relief_blank" - }, - { - "item": "minecraft:stone_axe" - } - ], - "result": { - "id": "mineralogy:diabase_relief_axe", - "count": 8 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:diabase_relief_blank", + "mineralogy:diabase_relief_blank", + "mineralogy:diabase_relief_blank", + "mineralogy:diabase_relief_blank", + "mineralogy:diabase_relief_blank", + "mineralogy:diabase_relief_blank", + "mineralogy:diabase_relief_blank", + "mineralogy:diabase_relief_blank", + "minecraft:stone_axe" + ], + "result": { + "id": "mineralogy:diabase_relief_axe", + "count": 8 + } } diff --git a/src/main/resources/data/mineralogy/recipe/diabase_relief_blank.json b/src/main/resources/data/mineralogy/recipe/diabase_relief_blank.json index f4920fce4..35fb286e3 100644 --- a/src/main/resources/data/mineralogy/recipe/diabase_relief_blank.json +++ b/src/main/resources/data/mineralogy/recipe/diabase_relief_blank.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx", - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:diabase_smooth" - } - }, - "result": { - "id": "mineralogy:diabase_relief_blank", - "count": 16 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx", + "xxx" + ], + "key": { + "x": "mineralogy:diabase_smooth" + }, + "result": { + "id": "mineralogy:diabase_relief_blank", + "count": 16 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/diabase_relief_cross.json b/src/main/resources/data/mineralogy/recipe/diabase_relief_cross.json index 40d5fdbe4..3df7bda65 100644 --- a/src/main/resources/data/mineralogy/recipe/diabase_relief_cross.json +++ b/src/main/resources/data/mineralogy/recipe/diabase_relief_cross.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x x", - " ", - "x x" - ], - "key": { - "x": { - "item": "mineralogy:diabase_relief_blank" - } - }, - "result": { - "id": "mineralogy:diabase_relief_cross", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x x", + " ", + "x x" + ], + "key": { + "x": "mineralogy:diabase_relief_blank" + }, + "result": { + "id": "mineralogy:diabase_relief_cross", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/diabase_relief_hammer.json b/src/main/resources/data/mineralogy/recipe/diabase_relief_hammer.json index ebf707b28..f327315ed 100644 --- a/src/main/resources/data/mineralogy/recipe/diabase_relief_hammer.json +++ b/src/main/resources/data/mineralogy/recipe/diabase_relief_hammer.json @@ -1,25 +1,19 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "zxz", - "zyz", - "zzz" - ], - "key": { - "x": { - "item": "mineralogy:diabase_smooth" - }, - "y": { - "item": "minecraft:stick" - }, - "z": { - "item": "mineralogy:diabase_relief_blank" - } - }, - "result": { - "id": "mineralogy:diabase_relief_hammer", - "count": 7 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "zxz", + "zyz", + "zzz" + ], + "key": { + "x": "mineralogy:diabase_smooth", + "y": "minecraft:stick", + "z": "mineralogy:diabase_relief_blank" + }, + "result": { + "id": "mineralogy:diabase_relief_hammer", + "count": 7 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/diabase_relief_hoe.json b/src/main/resources/data/mineralogy/recipe/diabase_relief_hoe.json index 169482536..6ed79a77d 100644 --- a/src/main/resources/data/mineralogy/recipe/diabase_relief_hoe.json +++ b/src/main/resources/data/mineralogy/recipe/diabase_relief_hoe.json @@ -1,37 +1,19 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:diabase_relief_blank" - }, - { - "item": "mineralogy:diabase_relief_blank" - }, - { - "item": "mineralogy:diabase_relief_blank" - }, - { - "item": "mineralogy:diabase_relief_blank" - }, - { - "item": "mineralogy:diabase_relief_blank" - }, - { - "item": "mineralogy:diabase_relief_blank" - }, - { - "item": "mineralogy:diabase_relief_blank" - }, - { - "item": "mineralogy:diabase_relief_blank" - }, - { - "item": "minecraft:stone_hoe" - } - ], - "result": { - "id": "mineralogy:diabase_relief_hoe", - "count": 8 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:diabase_relief_blank", + "mineralogy:diabase_relief_blank", + "mineralogy:diabase_relief_blank", + "mineralogy:diabase_relief_blank", + "mineralogy:diabase_relief_blank", + "mineralogy:diabase_relief_blank", + "mineralogy:diabase_relief_blank", + "mineralogy:diabase_relief_blank", + "minecraft:stone_hoe" + ], + "result": { + "id": "mineralogy:diabase_relief_hoe", + "count": 8 + } } diff --git a/src/main/resources/data/mineralogy/recipe/diabase_relief_horizontal.json b/src/main/resources/data/mineralogy/recipe/diabase_relief_horizontal.json index e8a5b11fa..6466fb23d 100644 --- a/src/main/resources/data/mineralogy/recipe/diabase_relief_horizontal.json +++ b/src/main/resources/data/mineralogy/recipe/diabase_relief_horizontal.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:diabase_relief_blank" - } - }, - "result": { - "id": "mineralogy:diabase_relief_horizontal", - "count": 3 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:diabase_relief_blank" + }, + "result": { + "id": "mineralogy:diabase_relief_horizontal", + "count": 3 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/diabase_relief_i.json b/src/main/resources/data/mineralogy/recipe/diabase_relief_i.json index 21b17ba09..1c2b76fef 100644 --- a/src/main/resources/data/mineralogy/recipe/diabase_relief_i.json +++ b/src/main/resources/data/mineralogy/recipe/diabase_relief_i.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - " x ", - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:diabase_relief_blank" - } - }, - "result": { - "id": "mineralogy:diabase_relief_i", - "count": 7 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + " x ", + "xxx" + ], + "key": { + "x": "mineralogy:diabase_relief_blank" + }, + "result": { + "id": "mineralogy:diabase_relief_i", + "count": 7 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/diabase_relief_left.json b/src/main/resources/data/mineralogy/recipe/diabase_relief_left.json index a54e2e52a..319c913c1 100644 --- a/src/main/resources/data/mineralogy/recipe/diabase_relief_left.json +++ b/src/main/resources/data/mineralogy/recipe/diabase_relief_left.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - " x ", - " x" - ], - "key": { - "x": { - "item": "mineralogy:diabase_relief_blank" - } - }, - "result": { - "id": "mineralogy:diabase_relief_left", - "count": 3 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + " x ", + " x" + ], + "key": { + "x": "mineralogy:diabase_relief_blank" + }, + "result": { + "id": "mineralogy:diabase_relief_left", + "count": 3 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/diabase_relief_pickaxe.json b/src/main/resources/data/mineralogy/recipe/diabase_relief_pickaxe.json index 80836c301..019526302 100644 --- a/src/main/resources/data/mineralogy/recipe/diabase_relief_pickaxe.json +++ b/src/main/resources/data/mineralogy/recipe/diabase_relief_pickaxe.json @@ -1,37 +1,19 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:diabase_relief_blank" - }, - { - "item": "mineralogy:diabase_relief_blank" - }, - { - "item": "mineralogy:diabase_relief_blank" - }, - { - "item": "mineralogy:diabase_relief_blank" - }, - { - "item": "mineralogy:diabase_relief_blank" - }, - { - "item": "mineralogy:diabase_relief_blank" - }, - { - "item": "mineralogy:diabase_relief_blank" - }, - { - "item": "mineralogy:diabase_relief_blank" - }, - { - "item": "minecraft:stone_pickaxe" - } - ], - "result": { - "id": "mineralogy:diabase_relief_pickaxe", - "count": 8 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:diabase_relief_blank", + "mineralogy:diabase_relief_blank", + "mineralogy:diabase_relief_blank", + "mineralogy:diabase_relief_blank", + "mineralogy:diabase_relief_blank", + "mineralogy:diabase_relief_blank", + "mineralogy:diabase_relief_blank", + "mineralogy:diabase_relief_blank", + "minecraft:stone_pickaxe" + ], + "result": { + "id": "mineralogy:diabase_relief_pickaxe", + "count": 8 + } } diff --git a/src/main/resources/data/mineralogy/recipe/diabase_relief_plus.json b/src/main/resources/data/mineralogy/recipe/diabase_relief_plus.json index 7ae9795dc..976353a65 100644 --- a/src/main/resources/data/mineralogy/recipe/diabase_relief_plus.json +++ b/src/main/resources/data/mineralogy/recipe/diabase_relief_plus.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - " x ", - "xxx", - " x " - ], - "key": { - "x": { - "item": "mineralogy:diabase_relief_blank" - } - }, - "result": { - "id": "mineralogy:diabase_relief_plus", - "count": 5 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + " x ", + "xxx", + " x " + ], + "key": { + "x": "mineralogy:diabase_relief_blank" + }, + "result": { + "id": "mineralogy:diabase_relief_plus", + "count": 5 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/diabase_relief_right.json b/src/main/resources/data/mineralogy/recipe/diabase_relief_right.json index 05c24078e..4b9d09740 100644 --- a/src/main/resources/data/mineralogy/recipe/diabase_relief_right.json +++ b/src/main/resources/data/mineralogy/recipe/diabase_relief_right.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:diabase_relief_left" - }, - { - "item": "mineralogy:diabase_relief_left" - } - ], - "result": { - "id": "mineralogy:diabase_relief_right", - "count": 2 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:diabase_relief_left", + "mineralogy:diabase_relief_left" + ], + "result": { + "id": "mineralogy:diabase_relief_right", + "count": 2 + } } diff --git a/src/main/resources/data/mineralogy/recipe/diabase_relief_sword.json b/src/main/resources/data/mineralogy/recipe/diabase_relief_sword.json index 4ce96b298..adc2ab998 100644 --- a/src/main/resources/data/mineralogy/recipe/diabase_relief_sword.json +++ b/src/main/resources/data/mineralogy/recipe/diabase_relief_sword.json @@ -1,37 +1,19 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:diabase_relief_blank" - }, - { - "item": "mineralogy:diabase_relief_blank" - }, - { - "item": "mineralogy:diabase_relief_blank" - }, - { - "item": "mineralogy:diabase_relief_blank" - }, - { - "item": "mineralogy:diabase_relief_blank" - }, - { - "item": "mineralogy:diabase_relief_blank" - }, - { - "item": "mineralogy:diabase_relief_blank" - }, - { - "item": "mineralogy:diabase_relief_blank" - }, - { - "item": "minecraft:stone_sword" - } - ], - "result": { - "id": "mineralogy:diabase_relief_sword", - "count": 8 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:diabase_relief_blank", + "mineralogy:diabase_relief_blank", + "mineralogy:diabase_relief_blank", + "mineralogy:diabase_relief_blank", + "mineralogy:diabase_relief_blank", + "mineralogy:diabase_relief_blank", + "mineralogy:diabase_relief_blank", + "mineralogy:diabase_relief_blank", + "minecraft:stone_sword" + ], + "result": { + "id": "mineralogy:diabase_relief_sword", + "count": 8 + } } diff --git a/src/main/resources/data/mineralogy/recipe/diabase_relief_vertical.json b/src/main/resources/data/mineralogy/recipe/diabase_relief_vertical.json index 95a382754..24f4898b0 100644 --- a/src/main/resources/data/mineralogy/recipe/diabase_relief_vertical.json +++ b/src/main/resources/data/mineralogy/recipe/diabase_relief_vertical.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x", - "x", - "x" - ], - "key": { - "x": { - "item": "mineralogy:diabase_relief_blank" - } - }, - "result": { - "id": "mineralogy:diabase_relief_vertical", - "count": 3 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x", + "x", + "x" + ], + "key": { + "x": "mineralogy:diabase_relief_blank" + }, + "result": { + "id": "mineralogy:diabase_relief_vertical", + "count": 3 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/diabase_slab.json b/src/main/resources/data/mineralogy/recipe/diabase_slab.json index 305ccc77c..733868faa 100644 --- a/src/main/resources/data/mineralogy/recipe/diabase_slab.json +++ b/src/main/resources/data/mineralogy/recipe/diabase_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:diabase" - } - }, - "result": { - "id": "mineralogy:diabase_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:diabase" + }, + "result": { + "id": "mineralogy:diabase_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/diabase_smooth.json b/src/main/resources/data/mineralogy/recipe/diabase_smooth.json index bd0377f1b..fc309f7ea 100644 --- a/src/main/resources/data/mineralogy/recipe/diabase_smooth.json +++ b/src/main/resources/data/mineralogy/recipe/diabase_smooth.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "tag": "mineralogy:stones/diabase" - }, - { - "item": "minecraft:sand" - } - ], - "result": { - "id": "mineralogy:diabase_smooth", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "#mineralogy:stones/diabase", + "minecraft:sand" + ], + "result": { + "id": "mineralogy:diabase_smooth", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/diabase_smooth_brick.json b/src/main/resources/data/mineralogy/recipe/diabase_smooth_brick.json index 08a7b1d89..93d7eda23 100644 --- a/src/main/resources/data/mineralogy/recipe/diabase_smooth_brick.json +++ b/src/main/resources/data/mineralogy/recipe/diabase_smooth_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/diabase/smooth" - } - }, - "result": { - "id": "mineralogy:diabase_smooth_brick", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "#mineralogy:stones/diabase/smooth" + }, + "result": { + "id": "mineralogy:diabase_smooth_brick", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/diabase_smooth_brick_furnace.json b/src/main/resources/data/mineralogy/recipe/diabase_smooth_brick_furnace.json index cbcef9fa2..bdac44575 100644 --- a/src/main/resources/data/mineralogy/recipe/diabase_smooth_brick_furnace.json +++ b/src/main/resources/data/mineralogy/recipe/diabase_smooth_brick_furnace.json @@ -1,22 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "xxx", - "xyx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:slabs/diabase/smooth_brick" - }, - "y": { - "item": "minecraft:furnace" - } - }, - "result": { - "id": "mineralogy:diabase_smooth_brick_furnace", - "count": 1 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "xxx", + "xyx", + "xxx" + ], + "key": { + "x": "#mineralogy:slabs/diabase/smooth_brick", + "y": "minecraft:furnace" + }, + "result": { + "id": "mineralogy:diabase_smooth_brick_furnace", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/diabase_smooth_brick_slab.json b/src/main/resources/data/mineralogy/recipe/diabase_smooth_brick_slab.json index 80b11b069..f81b6c591 100644 --- a/src/main/resources/data/mineralogy/recipe/diabase_smooth_brick_slab.json +++ b/src/main/resources/data/mineralogy/recipe/diabase_smooth_brick_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:diabase_smooth_brick" - } - }, - "result": { - "id": "mineralogy:diabase_smooth_brick_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:diabase_smooth_brick" + }, + "result": { + "id": "mineralogy:diabase_smooth_brick_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/diabase_smooth_brick_stairs.json b/src/main/resources/data/mineralogy/recipe/diabase_smooth_brick_stairs.json index 92e277c49..005551513 100644 --- a/src/main/resources/data/mineralogy/recipe/diabase_smooth_brick_stairs.json +++ b/src/main/resources/data/mineralogy/recipe/diabase_smooth_brick_stairs.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - "xx ", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/diabase/smooth_brick" - } - }, - "result": { - "id": "mineralogy:diabase_smooth_brick_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + "xx ", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/diabase/smooth_brick" + }, + "result": { + "id": "mineralogy:diabase_smooth_brick_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/diabase_smooth_brick_wall.json b/src/main/resources/data/mineralogy/recipe/diabase_smooth_brick_wall.json index cbf27a081..eac20b747 100644 --- a/src/main/resources/data/mineralogy/recipe/diabase_smooth_brick_wall.json +++ b/src/main/resources/data/mineralogy/recipe/diabase_smooth_brick_wall.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/diabase/smooth_brick" - } - }, - "result": { - "id": "mineralogy:diabase_smooth_brick_wall", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/diabase/smooth_brick" + }, + "result": { + "id": "mineralogy:diabase_smooth_brick_wall", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/diabase_smooth_furnace.json b/src/main/resources/data/mineralogy/recipe/diabase_smooth_furnace.json index 2bc51f4dd..f825443a1 100644 --- a/src/main/resources/data/mineralogy/recipe/diabase_smooth_furnace.json +++ b/src/main/resources/data/mineralogy/recipe/diabase_smooth_furnace.json @@ -1,22 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "xxx", - "xyx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:slabs/diabase/smooth" - }, - "y": { - "item": "minecraft:furnace" - } - }, - "result": { - "id": "mineralogy:diabase_smooth_furnace", - "count": 1 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "xxx", + "xyx", + "xxx" + ], + "key": { + "x": "#mineralogy:slabs/diabase/smooth", + "y": "minecraft:furnace" + }, + "result": { + "id": "mineralogy:diabase_smooth_furnace", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/diabase_smooth_slab.json b/src/main/resources/data/mineralogy/recipe/diabase_smooth_slab.json index d5f39be42..692e215d6 100644 --- a/src/main/resources/data/mineralogy/recipe/diabase_smooth_slab.json +++ b/src/main/resources/data/mineralogy/recipe/diabase_smooth_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:diabase_smooth" - } - }, - "result": { - "id": "mineralogy:diabase_smooth_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:diabase_smooth" + }, + "result": { + "id": "mineralogy:diabase_smooth_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/diabase_smooth_stairs.json b/src/main/resources/data/mineralogy/recipe/diabase_smooth_stairs.json index 15933ab96..6bad3cd4a 100644 --- a/src/main/resources/data/mineralogy/recipe/diabase_smooth_stairs.json +++ b/src/main/resources/data/mineralogy/recipe/diabase_smooth_stairs.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - "xx ", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/diabase/smooth" - } - }, - "result": { - "id": "mineralogy:diabase_smooth_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + "xx ", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/diabase/smooth" + }, + "result": { + "id": "mineralogy:diabase_smooth_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/diabase_smooth_wall.json b/src/main/resources/data/mineralogy/recipe/diabase_smooth_wall.json index 78a330901..383b53147 100644 --- a/src/main/resources/data/mineralogy/recipe/diabase_smooth_wall.json +++ b/src/main/resources/data/mineralogy/recipe/diabase_smooth_wall.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/diabase/smooth" - } - }, - "result": { - "id": "mineralogy:diabase_smooth_wall", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/diabase/smooth" + }, + "result": { + "id": "mineralogy:diabase_smooth_wall", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/diabase_stairs.json b/src/main/resources/data/mineralogy/recipe/diabase_stairs.json index 94f4cb62c..4b3f69b18 100644 --- a/src/main/resources/data/mineralogy/recipe/diabase_stairs.json +++ b/src/main/resources/data/mineralogy/recipe/diabase_stairs.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - "xx ", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/diabase" - } - }, - "result": { - "id": "mineralogy:diabase_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + "xx ", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/diabase" + }, + "result": { + "id": "mineralogy:diabase_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/diabase_to_stone.json b/src/main/resources/data/mineralogy/recipe/diabase_to_stone.json index 5eb6ee887..63179f01b 100644 --- a/src/main/resources/data/mineralogy/recipe/diabase_to_stone.json +++ b/src/main/resources/data/mineralogy/recipe/diabase_to_stone.json @@ -1,12 +1,10 @@ { - "type": "minecraft:smelting", - "category": "blocks", - "ingredient": { - "item": "mineralogy:diabase" - }, - "result": { - "id": "minecraft:stone" - }, - "experience": 0.1, - "cookingtime": 200 + "type": "minecraft:smelting", + "category": "blocks", + "ingredient": "mineralogy:diabase", + "result": { + "id": "minecraft:stone" + }, + "experience": 0.1, + "cookingtime": 200 } diff --git a/src/main/resources/data/mineralogy/recipe/diabase_wall.json b/src/main/resources/data/mineralogy/recipe/diabase_wall.json index c71a194f3..aaba30145 100644 --- a/src/main/resources/data/mineralogy/recipe/diabase_wall.json +++ b/src/main/resources/data/mineralogy/recipe/diabase_wall.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/diabase" - } - }, - "result": { - "id": "mineralogy:diabase_wall", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/diabase" + }, + "result": { + "id": "mineralogy:diabase_wall", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/diorite_brick.json b/src/main/resources/data/mineralogy/recipe/diorite_brick.json index be15330a1..d42d453ff 100644 --- a/src/main/resources/data/mineralogy/recipe/diorite_brick.json +++ b/src/main/resources/data/mineralogy/recipe/diorite_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/diorite" - } - }, - "result": { - "id": "mineralogy:diorite_brick", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "#mineralogy:stones/diorite" + }, + "result": { + "id": "mineralogy:diorite_brick", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/diorite_brick_block_polishing.json b/src/main/resources/data/mineralogy/recipe/diorite_brick_block_polishing.json index d4bf46211..e2aa3018c 100644 --- a/src/main/resources/data/mineralogy/recipe/diorite_brick_block_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/diorite_brick_block_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:diorite_brick" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:diorite_smooth_brick", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:diorite_brick", + "#c:sands" + ], + "result": { + "id": "mineralogy:diorite_smooth_brick", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/diorite_brick_furnace.json b/src/main/resources/data/mineralogy/recipe/diorite_brick_furnace.json index 6d7768fef..eee5d96ba 100644 --- a/src/main/resources/data/mineralogy/recipe/diorite_brick_furnace.json +++ b/src/main/resources/data/mineralogy/recipe/diorite_brick_furnace.json @@ -1,22 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "xxx", - "xyx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:slabs/diorite/brick" - }, - "y": { - "item": "minecraft:furnace" - } - }, - "result": { - "id": "mineralogy:diorite_brick_furnace", - "count": 1 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "xxx", + "xyx", + "xxx" + ], + "key": { + "x": "#mineralogy:slabs/diorite/brick", + "y": "minecraft:furnace" + }, + "result": { + "id": "mineralogy:diorite_brick_furnace", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/diorite_brick_slab.json b/src/main/resources/data/mineralogy/recipe/diorite_brick_slab.json index ea8b06fcc..90739fa49 100644 --- a/src/main/resources/data/mineralogy/recipe/diorite_brick_slab.json +++ b/src/main/resources/data/mineralogy/recipe/diorite_brick_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:diorite_brick" - } - }, - "result": { - "id": "mineralogy:diorite_brick_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:diorite_brick" + }, + "result": { + "id": "mineralogy:diorite_brick_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/diorite_brick_slab_polishing.json b/src/main/resources/data/mineralogy/recipe/diorite_brick_slab_polishing.json index c5c80b7c6..470724777 100644 --- a/src/main/resources/data/mineralogy/recipe/diorite_brick_slab_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/diorite_brick_slab_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:diorite_brick_slab" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:diorite_smooth_brick_slab", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:diorite_brick_slab", + "#c:sands" + ], + "result": { + "id": "mineralogy:diorite_smooth_brick_slab", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/diorite_brick_slab_recombination.json b/src/main/resources/data/mineralogy/recipe/diorite_brick_slab_recombination.json index 4cf806c54..b10da8d4b 100644 --- a/src/main/resources/data/mineralogy/recipe/diorite_brick_slab_recombination.json +++ b/src/main/resources/data/mineralogy/recipe/diorite_brick_slab_recombination.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:diorite_brick_slab" - }, - { - "item": "mineralogy:diorite_brick_slab" - } - ], - "result": { - "id": "mineralogy:diorite_brick", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:diorite_brick_slab", + "mineralogy:diorite_brick_slab" + ], + "result": { + "id": "mineralogy:diorite_brick", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/diorite_brick_stairs.json b/src/main/resources/data/mineralogy/recipe/diorite_brick_stairs.json index 7256fb8c2..31925dc70 100644 --- a/src/main/resources/data/mineralogy/recipe/diorite_brick_stairs.json +++ b/src/main/resources/data/mineralogy/recipe/diorite_brick_stairs.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - "xx ", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/diorite/brick" - } - }, - "result": { - "id": "mineralogy:diorite_brick_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + "xx ", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/diorite/brick" + }, + "result": { + "id": "mineralogy:diorite_brick_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/diorite_brick_stairs_polishing.json b/src/main/resources/data/mineralogy/recipe/diorite_brick_stairs_polishing.json index db53f4088..9c37ca08e 100644 --- a/src/main/resources/data/mineralogy/recipe/diorite_brick_stairs_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/diorite_brick_stairs_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:diorite_brick_stairs" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:diorite_smooth_brick_stairs", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:diorite_brick_stairs", + "#c:sands" + ], + "result": { + "id": "mineralogy:diorite_smooth_brick_stairs", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/diorite_brick_wall.json b/src/main/resources/data/mineralogy/recipe/diorite_brick_wall.json index 19e5fb32e..110ca25e6 100644 --- a/src/main/resources/data/mineralogy/recipe/diorite_brick_wall.json +++ b/src/main/resources/data/mineralogy/recipe/diorite_brick_wall.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/diorite/brick" - } - }, - "result": { - "id": "mineralogy:diorite_brick_wall", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/diorite/brick" + }, + "result": { + "id": "mineralogy:diorite_brick_wall", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/diorite_brick_wall_polishing.json b/src/main/resources/data/mineralogy/recipe/diorite_brick_wall_polishing.json index 25bb20972..ab18b27b3 100644 --- a/src/main/resources/data/mineralogy/recipe/diorite_brick_wall_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/diorite_brick_wall_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:diorite_brick_wall" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:diorite_smooth_brick_wall", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:diorite_brick_wall", + "#c:sands" + ], + "result": { + "id": "mineralogy:diorite_smooth_brick_wall", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/diorite_cobblestone.json b/src/main/resources/data/mineralogy/recipe/diorite_cobblestone.json index bdaf1ea6c..2b14f9011 100644 --- a/src/main/resources/data/mineralogy/recipe/diorite_cobblestone.json +++ b/src/main/resources/data/mineralogy/recipe/diorite_cobblestone.json @@ -1,22 +1,14 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "tag": "mineralogy:stones/diorite" - }, - { - "tag": "mineralogy:stones/diorite" - }, - { - "item": "minecraft:gravel" - }, - { - "item": "minecraft:gravel" - } - ], - "result": { - "id": "minecraft:cobblestone", - "count": 4 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "#mineralogy:stones/diorite", + "#mineralogy:stones/diorite", + "minecraft:gravel", + "minecraft:gravel" + ], + "result": { + "id": "minecraft:cobblestone", + "count": 4 + } } diff --git a/src/main/resources/data/mineralogy/recipe/diorite_furnace.json b/src/main/resources/data/mineralogy/recipe/diorite_furnace.json index 519bf24cb..9ab99a90e 100644 --- a/src/main/resources/data/mineralogy/recipe/diorite_furnace.json +++ b/src/main/resources/data/mineralogy/recipe/diorite_furnace.json @@ -1,22 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "xxx", - "xyx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:slabs/diorite" - }, - "y": { - "item": "minecraft:furnace" - } - }, - "result": { - "id": "mineralogy:diorite_furnace", - "count": 1 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "xxx", + "xyx", + "xxx" + ], + "key": { + "x": "#mineralogy:slabs/diorite", + "y": "minecraft:furnace" + }, + "result": { + "id": "mineralogy:diorite_furnace", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/diorite_polished_brick_slab_recombination.json b/src/main/resources/data/mineralogy/recipe/diorite_polished_brick_slab_recombination.json index 664e0b7de..07313a3b8 100644 --- a/src/main/resources/data/mineralogy/recipe/diorite_polished_brick_slab_recombination.json +++ b/src/main/resources/data/mineralogy/recipe/diorite_polished_brick_slab_recombination.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:diorite_smooth_brick_slab" - }, - { - "item": "mineralogy:diorite_smooth_brick_slab" - } - ], - "result": { - "id": "mineralogy:diorite_smooth_brick", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:diorite_smooth_brick_slab", + "mineralogy:diorite_smooth_brick_slab" + ], + "result": { + "id": "mineralogy:diorite_smooth_brick", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/diorite_polished_slab_recombination.json b/src/main/resources/data/mineralogy/recipe/diorite_polished_slab_recombination.json index a0f6712d9..f7808b998 100644 --- a/src/main/resources/data/mineralogy/recipe/diorite_polished_slab_recombination.json +++ b/src/main/resources/data/mineralogy/recipe/diorite_polished_slab_recombination.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:diorite_smooth_slab" - }, - { - "item": "mineralogy:diorite_smooth_slab" - } - ], - "result": { - "id": "mineralogy:diorite_smooth", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:diorite_smooth_slab", + "mineralogy:diorite_smooth_slab" + ], + "result": { + "id": "mineralogy:diorite_smooth", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/diorite_polished_slabs_to_brick.json b/src/main/resources/data/mineralogy/recipe/diorite_polished_slabs_to_brick.json index f0924413c..2007344e0 100644 --- a/src/main/resources/data/mineralogy/recipe/diorite_polished_slabs_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/diorite_polished_slabs_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:diorite_smooth_slab" - } - }, - "result": { - "id": "mineralogy:diorite_smooth_brick_slab", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:diorite_smooth_slab" + }, + "result": { + "id": "mineralogy:diorite_smooth_brick_slab", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/diorite_polished_stairs_to_brick.json b/src/main/resources/data/mineralogy/recipe/diorite_polished_stairs_to_brick.json index 4b8a66be7..2c74fd3a2 100644 --- a/src/main/resources/data/mineralogy/recipe/diorite_polished_stairs_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/diorite_polished_stairs_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:diorite_smooth_stairs" - } - }, - "result": { - "id": "mineralogy:diorite_smooth_brick_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:diorite_smooth_stairs" + }, + "result": { + "id": "mineralogy:diorite_smooth_brick_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/diorite_polished_walls_to_brick.json b/src/main/resources/data/mineralogy/recipe/diorite_polished_walls_to_brick.json index 795c63247..02f017382 100644 --- a/src/main/resources/data/mineralogy/recipe/diorite_polished_walls_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/diorite_polished_walls_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:diorite_smooth_wall" - } - }, - "result": { - "id": "mineralogy:diorite_smooth_brick_wall", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:diorite_smooth_wall" + }, + "result": { + "id": "mineralogy:diorite_smooth_brick_wall", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/diorite_raw_slab_polishing.json b/src/main/resources/data/mineralogy/recipe/diorite_raw_slab_polishing.json index 34e253f37..7ac60bd50 100644 --- a/src/main/resources/data/mineralogy/recipe/diorite_raw_slab_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/diorite_raw_slab_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:diorite_slab" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:diorite_smooth_slab", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:diorite_slab", + "#c:sands" + ], + "result": { + "id": "mineralogy:diorite_smooth_slab", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/diorite_raw_slab_recombination.json b/src/main/resources/data/mineralogy/recipe/diorite_raw_slab_recombination.json index 25b0f5ee3..a3f4dea5b 100644 --- a/src/main/resources/data/mineralogy/recipe/diorite_raw_slab_recombination.json +++ b/src/main/resources/data/mineralogy/recipe/diorite_raw_slab_recombination.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:diorite_slab" - }, - { - "item": "mineralogy:diorite_slab" - } - ], - "result": { - "id": "mineralogy:diorite", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:diorite_slab", + "mineralogy:diorite_slab" + ], + "result": { + "id": "mineralogy:diorite", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/diorite_raw_slabs_to_brick.json b/src/main/resources/data/mineralogy/recipe/diorite_raw_slabs_to_brick.json index b0e224315..8005656c1 100644 --- a/src/main/resources/data/mineralogy/recipe/diorite_raw_slabs_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/diorite_raw_slabs_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:diorite_slab" - } - }, - "result": { - "id": "mineralogy:diorite_brick_slab", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:diorite_slab" + }, + "result": { + "id": "mineralogy:diorite_brick_slab", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/diorite_raw_stairs_polishing.json b/src/main/resources/data/mineralogy/recipe/diorite_raw_stairs_polishing.json index f4389dcfc..569045ad7 100644 --- a/src/main/resources/data/mineralogy/recipe/diorite_raw_stairs_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/diorite_raw_stairs_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:diorite_stairs" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:diorite_smooth_stairs", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:diorite_stairs", + "#c:sands" + ], + "result": { + "id": "mineralogy:diorite_smooth_stairs", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/diorite_raw_stairs_to_brick.json b/src/main/resources/data/mineralogy/recipe/diorite_raw_stairs_to_brick.json index 6aa2d9c00..cf0b10ed2 100644 --- a/src/main/resources/data/mineralogy/recipe/diorite_raw_stairs_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/diorite_raw_stairs_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:diorite_stairs" - } - }, - "result": { - "id": "mineralogy:diorite_brick_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:diorite_stairs" + }, + "result": { + "id": "mineralogy:diorite_brick_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/diorite_raw_wall_polishing.json b/src/main/resources/data/mineralogy/recipe/diorite_raw_wall_polishing.json index 2ee3f0bd6..16f640b73 100644 --- a/src/main/resources/data/mineralogy/recipe/diorite_raw_wall_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/diorite_raw_wall_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:diorite_wall" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:diorite_smooth_wall", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:diorite_wall", + "#c:sands" + ], + "result": { + "id": "mineralogy:diorite_smooth_wall", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/diorite_raw_walls_to_brick.json b/src/main/resources/data/mineralogy/recipe/diorite_raw_walls_to_brick.json index aed17164a..fe31650e4 100644 --- a/src/main/resources/data/mineralogy/recipe/diorite_raw_walls_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/diorite_raw_walls_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:diorite_wall" - } - }, - "result": { - "id": "mineralogy:diorite_brick_wall", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:diorite_wall" + }, + "result": { + "id": "mineralogy:diorite_brick_wall", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/diorite_relief_axe.json b/src/main/resources/data/mineralogy/recipe/diorite_relief_axe.json index 92e81753b..874be143c 100644 --- a/src/main/resources/data/mineralogy/recipe/diorite_relief_axe.json +++ b/src/main/resources/data/mineralogy/recipe/diorite_relief_axe.json @@ -1,37 +1,19 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:diorite_relief_blank" - }, - { - "item": "mineralogy:diorite_relief_blank" - }, - { - "item": "mineralogy:diorite_relief_blank" - }, - { - "item": "mineralogy:diorite_relief_blank" - }, - { - "item": "mineralogy:diorite_relief_blank" - }, - { - "item": "mineralogy:diorite_relief_blank" - }, - { - "item": "mineralogy:diorite_relief_blank" - }, - { - "item": "mineralogy:diorite_relief_blank" - }, - { - "item": "minecraft:stone_axe" - } - ], - "result": { - "id": "mineralogy:diorite_relief_axe", - "count": 8 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:diorite_relief_blank", + "mineralogy:diorite_relief_blank", + "mineralogy:diorite_relief_blank", + "mineralogy:diorite_relief_blank", + "mineralogy:diorite_relief_blank", + "mineralogy:diorite_relief_blank", + "mineralogy:diorite_relief_blank", + "mineralogy:diorite_relief_blank", + "minecraft:stone_axe" + ], + "result": { + "id": "mineralogy:diorite_relief_axe", + "count": 8 + } } diff --git a/src/main/resources/data/mineralogy/recipe/diorite_relief_blank.json b/src/main/resources/data/mineralogy/recipe/diorite_relief_blank.json index e61f388de..0595b8d50 100644 --- a/src/main/resources/data/mineralogy/recipe/diorite_relief_blank.json +++ b/src/main/resources/data/mineralogy/recipe/diorite_relief_blank.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/diorite/smooth" - } - }, - "result": { - "id": "mineralogy:diorite_relief_blank", - "count": 16 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/diorite/smooth" + }, + "result": { + "id": "mineralogy:diorite_relief_blank", + "count": 16 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/diorite_relief_cross.json b/src/main/resources/data/mineralogy/recipe/diorite_relief_cross.json index 2849a210e..ecbc57cbf 100644 --- a/src/main/resources/data/mineralogy/recipe/diorite_relief_cross.json +++ b/src/main/resources/data/mineralogy/recipe/diorite_relief_cross.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x x", - " ", - "x x" - ], - "key": { - "x": { - "item": "mineralogy:diorite_relief_blank" - } - }, - "result": { - "id": "mineralogy:diorite_relief_cross", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x x", + " ", + "x x" + ], + "key": { + "x": "mineralogy:diorite_relief_blank" + }, + "result": { + "id": "mineralogy:diorite_relief_cross", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/diorite_relief_hammer.json b/src/main/resources/data/mineralogy/recipe/diorite_relief_hammer.json index 2373444e2..4fc412807 100644 --- a/src/main/resources/data/mineralogy/recipe/diorite_relief_hammer.json +++ b/src/main/resources/data/mineralogy/recipe/diorite_relief_hammer.json @@ -1,25 +1,19 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "zxz", - "zyz", - "zzz" - ], - "key": { - "x": { - "item": "mineralogy:diorite_smooth" - }, - "y": { - "item": "minecraft:stick" - }, - "z": { - "item": "mineralogy:diorite_relief_blank" - } - }, - "result": { - "id": "mineralogy:diorite_relief_hammer", - "count": 7 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "zxz", + "zyz", + "zzz" + ], + "key": { + "x": "mineralogy:diorite_smooth", + "y": "minecraft:stick", + "z": "mineralogy:diorite_relief_blank" + }, + "result": { + "id": "mineralogy:diorite_relief_hammer", + "count": 7 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/diorite_relief_hoe.json b/src/main/resources/data/mineralogy/recipe/diorite_relief_hoe.json index ff2885539..174814e1e 100644 --- a/src/main/resources/data/mineralogy/recipe/diorite_relief_hoe.json +++ b/src/main/resources/data/mineralogy/recipe/diorite_relief_hoe.json @@ -1,37 +1,19 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:diorite_relief_blank" - }, - { - "item": "mineralogy:diorite_relief_blank" - }, - { - "item": "mineralogy:diorite_relief_blank" - }, - { - "item": "mineralogy:diorite_relief_blank" - }, - { - "item": "mineralogy:diorite_relief_blank" - }, - { - "item": "mineralogy:diorite_relief_blank" - }, - { - "item": "mineralogy:diorite_relief_blank" - }, - { - "item": "mineralogy:diorite_relief_blank" - }, - { - "item": "minecraft:stone_hoe" - } - ], - "result": { - "id": "mineralogy:diorite_relief_hoe", - "count": 8 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:diorite_relief_blank", + "mineralogy:diorite_relief_blank", + "mineralogy:diorite_relief_blank", + "mineralogy:diorite_relief_blank", + "mineralogy:diorite_relief_blank", + "mineralogy:diorite_relief_blank", + "mineralogy:diorite_relief_blank", + "mineralogy:diorite_relief_blank", + "minecraft:stone_hoe" + ], + "result": { + "id": "mineralogy:diorite_relief_hoe", + "count": 8 + } } diff --git a/src/main/resources/data/mineralogy/recipe/diorite_relief_horizontal.json b/src/main/resources/data/mineralogy/recipe/diorite_relief_horizontal.json index e71d7e356..5fc936692 100644 --- a/src/main/resources/data/mineralogy/recipe/diorite_relief_horizontal.json +++ b/src/main/resources/data/mineralogy/recipe/diorite_relief_horizontal.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:diorite_relief_blank" - } - }, - "result": { - "id": "mineralogy:diorite_relief_horizontal", - "count": 3 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:diorite_relief_blank" + }, + "result": { + "id": "mineralogy:diorite_relief_horizontal", + "count": 3 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/diorite_relief_i.json b/src/main/resources/data/mineralogy/recipe/diorite_relief_i.json index ea70c980a..8f19b2cae 100644 --- a/src/main/resources/data/mineralogy/recipe/diorite_relief_i.json +++ b/src/main/resources/data/mineralogy/recipe/diorite_relief_i.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - " x ", - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:diorite_relief_blank" - } - }, - "result": { - "id": "mineralogy:diorite_relief_i", - "count": 7 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + " x ", + "xxx" + ], + "key": { + "x": "mineralogy:diorite_relief_blank" + }, + "result": { + "id": "mineralogy:diorite_relief_i", + "count": 7 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/diorite_relief_left.json b/src/main/resources/data/mineralogy/recipe/diorite_relief_left.json index c5d3e64d6..25ebca665 100644 --- a/src/main/resources/data/mineralogy/recipe/diorite_relief_left.json +++ b/src/main/resources/data/mineralogy/recipe/diorite_relief_left.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - " x ", - " x" - ], - "key": { - "x": { - "item": "mineralogy:diorite_relief_blank" - } - }, - "result": { - "id": "mineralogy:diorite_relief_left", - "count": 3 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + " x ", + " x" + ], + "key": { + "x": "mineralogy:diorite_relief_blank" + }, + "result": { + "id": "mineralogy:diorite_relief_left", + "count": 3 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/diorite_relief_pickaxe.json b/src/main/resources/data/mineralogy/recipe/diorite_relief_pickaxe.json index d32c1b799..5cc48d8ac 100644 --- a/src/main/resources/data/mineralogy/recipe/diorite_relief_pickaxe.json +++ b/src/main/resources/data/mineralogy/recipe/diorite_relief_pickaxe.json @@ -1,37 +1,19 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:diorite_relief_blank" - }, - { - "item": "mineralogy:diorite_relief_blank" - }, - { - "item": "mineralogy:diorite_relief_blank" - }, - { - "item": "mineralogy:diorite_relief_blank" - }, - { - "item": "mineralogy:diorite_relief_blank" - }, - { - "item": "mineralogy:diorite_relief_blank" - }, - { - "item": "mineralogy:diorite_relief_blank" - }, - { - "item": "mineralogy:diorite_relief_blank" - }, - { - "item": "minecraft:stone_pickaxe" - } - ], - "result": { - "id": "mineralogy:diorite_relief_pickaxe", - "count": 8 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:diorite_relief_blank", + "mineralogy:diorite_relief_blank", + "mineralogy:diorite_relief_blank", + "mineralogy:diorite_relief_blank", + "mineralogy:diorite_relief_blank", + "mineralogy:diorite_relief_blank", + "mineralogy:diorite_relief_blank", + "mineralogy:diorite_relief_blank", + "minecraft:stone_pickaxe" + ], + "result": { + "id": "mineralogy:diorite_relief_pickaxe", + "count": 8 + } } diff --git a/src/main/resources/data/mineralogy/recipe/diorite_relief_plus.json b/src/main/resources/data/mineralogy/recipe/diorite_relief_plus.json index c7de79597..2c4013be1 100644 --- a/src/main/resources/data/mineralogy/recipe/diorite_relief_plus.json +++ b/src/main/resources/data/mineralogy/recipe/diorite_relief_plus.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - " x ", - "xxx", - " x " - ], - "key": { - "x": { - "item": "mineralogy:diorite_relief_blank" - } - }, - "result": { - "id": "mineralogy:diorite_relief_plus", - "count": 5 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + " x ", + "xxx", + " x " + ], + "key": { + "x": "mineralogy:diorite_relief_blank" + }, + "result": { + "id": "mineralogy:diorite_relief_plus", + "count": 5 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/diorite_relief_right.json b/src/main/resources/data/mineralogy/recipe/diorite_relief_right.json index 02a728063..64ef99266 100644 --- a/src/main/resources/data/mineralogy/recipe/diorite_relief_right.json +++ b/src/main/resources/data/mineralogy/recipe/diorite_relief_right.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:diorite_relief_left" - }, - { - "item": "mineralogy:diorite_relief_left" - } - ], - "result": { - "id": "mineralogy:diorite_relief_right", - "count": 2 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:diorite_relief_left", + "mineralogy:diorite_relief_left" + ], + "result": { + "id": "mineralogy:diorite_relief_right", + "count": 2 + } } diff --git a/src/main/resources/data/mineralogy/recipe/diorite_relief_sword.json b/src/main/resources/data/mineralogy/recipe/diorite_relief_sword.json index c0a11c9fc..ea003e16f 100644 --- a/src/main/resources/data/mineralogy/recipe/diorite_relief_sword.json +++ b/src/main/resources/data/mineralogy/recipe/diorite_relief_sword.json @@ -1,37 +1,19 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:diorite_relief_blank" - }, - { - "item": "mineralogy:diorite_relief_blank" - }, - { - "item": "mineralogy:diorite_relief_blank" - }, - { - "item": "mineralogy:diorite_relief_blank" - }, - { - "item": "mineralogy:diorite_relief_blank" - }, - { - "item": "mineralogy:diorite_relief_blank" - }, - { - "item": "mineralogy:diorite_relief_blank" - }, - { - "item": "mineralogy:diorite_relief_blank" - }, - { - "item": "minecraft:stone_sword" - } - ], - "result": { - "id": "mineralogy:diorite_relief_sword", - "count": 8 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:diorite_relief_blank", + "mineralogy:diorite_relief_blank", + "mineralogy:diorite_relief_blank", + "mineralogy:diorite_relief_blank", + "mineralogy:diorite_relief_blank", + "mineralogy:diorite_relief_blank", + "mineralogy:diorite_relief_blank", + "mineralogy:diorite_relief_blank", + "minecraft:stone_sword" + ], + "result": { + "id": "mineralogy:diorite_relief_sword", + "count": 8 + } } diff --git a/src/main/resources/data/mineralogy/recipe/diorite_relief_vertical.json b/src/main/resources/data/mineralogy/recipe/diorite_relief_vertical.json index 6a3e66bb1..dc9c72058 100644 --- a/src/main/resources/data/mineralogy/recipe/diorite_relief_vertical.json +++ b/src/main/resources/data/mineralogy/recipe/diorite_relief_vertical.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x", - "x", - "x" - ], - "key": { - "x": { - "item": "mineralogy:diorite_relief_blank" - } - }, - "result": { - "id": "mineralogy:diorite_relief_vertical", - "count": 3 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x", + "x", + "x" + ], + "key": { + "x": "mineralogy:diorite_relief_blank" + }, + "result": { + "id": "mineralogy:diorite_relief_vertical", + "count": 3 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/diorite_slab.json b/src/main/resources/data/mineralogy/recipe/diorite_slab.json index 849fb6061..c3ebd93c0 100644 --- a/src/main/resources/data/mineralogy/recipe/diorite_slab.json +++ b/src/main/resources/data/mineralogy/recipe/diorite_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:diorite" - } - }, - "result": { - "id": "mineralogy:diorite_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:diorite" + }, + "result": { + "id": "mineralogy:diorite_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/diorite_slab_from_vanilla.json b/src/main/resources/data/mineralogy/recipe/diorite_slab_from_vanilla.json index 1961e5349..5010f99a6 100644 --- a/src/main/resources/data/mineralogy/recipe/diorite_slab_from_vanilla.json +++ b/src/main/resources/data/mineralogy/recipe/diorite_slab_from_vanilla.json @@ -1,13 +1,11 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "minecraft:diorite_slab" - } - ], - "result": { - "id": "mineralogy:diorite_slab", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "minecraft:diorite_slab" + ], + "result": { + "id": "mineralogy:diorite_slab", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/diorite_slab_to_vanilla.json b/src/main/resources/data/mineralogy/recipe/diorite_slab_to_vanilla.json index 372d2fa2f..f6bbe4d89 100644 --- a/src/main/resources/data/mineralogy/recipe/diorite_slab_to_vanilla.json +++ b/src/main/resources/data/mineralogy/recipe/diorite_slab_to_vanilla.json @@ -1,13 +1,11 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:diorite_slab" - } - ], - "result": { - "id": "minecraft:diorite_slab", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:diorite_slab" + ], + "result": { + "id": "minecraft:diorite_slab", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/diorite_smooth.json b/src/main/resources/data/mineralogy/recipe/diorite_smooth.json index 6928b3821..69a11434f 100644 --- a/src/main/resources/data/mineralogy/recipe/diorite_smooth.json +++ b/src/main/resources/data/mineralogy/recipe/diorite_smooth.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:diorite" - }, - { - "item": "minecraft:sand" - } - ], - "result": { - "id": "mineralogy:diorite_smooth", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:diorite", + "minecraft:sand" + ], + "result": { + "id": "mineralogy:diorite_smooth", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/diorite_smooth_brick.json b/src/main/resources/data/mineralogy/recipe/diorite_smooth_brick.json index 6d6e0d7b9..b72fc7a9c 100644 --- a/src/main/resources/data/mineralogy/recipe/diorite_smooth_brick.json +++ b/src/main/resources/data/mineralogy/recipe/diorite_smooth_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/diorite/smooth" - } - }, - "result": { - "id": "mineralogy:diorite_smooth_brick", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "#mineralogy:stones/diorite/smooth" + }, + "result": { + "id": "mineralogy:diorite_smooth_brick", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/diorite_smooth_brick_furnace.json b/src/main/resources/data/mineralogy/recipe/diorite_smooth_brick_furnace.json index 10e9ef394..cfe79be32 100644 --- a/src/main/resources/data/mineralogy/recipe/diorite_smooth_brick_furnace.json +++ b/src/main/resources/data/mineralogy/recipe/diorite_smooth_brick_furnace.json @@ -1,22 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "xxx", - "xyx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:slabs/diorite/smooth_brick" - }, - "y": { - "item": "minecraft:furnace" - } - }, - "result": { - "id": "mineralogy:diorite_smooth_brick_furnace", - "count": 1 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "xxx", + "xyx", + "xxx" + ], + "key": { + "x": "#mineralogy:slabs/diorite/smooth_brick", + "y": "minecraft:furnace" + }, + "result": { + "id": "mineralogy:diorite_smooth_brick_furnace", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/diorite_smooth_brick_slab.json b/src/main/resources/data/mineralogy/recipe/diorite_smooth_brick_slab.json index e501c9893..1254c41fc 100644 --- a/src/main/resources/data/mineralogy/recipe/diorite_smooth_brick_slab.json +++ b/src/main/resources/data/mineralogy/recipe/diorite_smooth_brick_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:diorite_smooth_brick" - } - }, - "result": { - "id": "mineralogy:diorite_smooth_brick_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:diorite_smooth_brick" + }, + "result": { + "id": "mineralogy:diorite_smooth_brick_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/diorite_smooth_brick_stairs.json b/src/main/resources/data/mineralogy/recipe/diorite_smooth_brick_stairs.json index 2c7929018..53b8c02f9 100644 --- a/src/main/resources/data/mineralogy/recipe/diorite_smooth_brick_stairs.json +++ b/src/main/resources/data/mineralogy/recipe/diorite_smooth_brick_stairs.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - "xx ", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/diorite/smooth_brick" - } - }, - "result": { - "id": "mineralogy:diorite_smooth_brick_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + "xx ", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/diorite/smooth_brick" + }, + "result": { + "id": "mineralogy:diorite_smooth_brick_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/diorite_smooth_brick_wall.json b/src/main/resources/data/mineralogy/recipe/diorite_smooth_brick_wall.json index 875d09fc7..524ab3596 100644 --- a/src/main/resources/data/mineralogy/recipe/diorite_smooth_brick_wall.json +++ b/src/main/resources/data/mineralogy/recipe/diorite_smooth_brick_wall.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/diorite/smooth_brick" - } - }, - "result": { - "id": "mineralogy:diorite_smooth_brick_wall", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/diorite/smooth_brick" + }, + "result": { + "id": "mineralogy:diorite_smooth_brick_wall", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/diorite_smooth_furnace.json b/src/main/resources/data/mineralogy/recipe/diorite_smooth_furnace.json index 98713c5f2..884dd90b7 100644 --- a/src/main/resources/data/mineralogy/recipe/diorite_smooth_furnace.json +++ b/src/main/resources/data/mineralogy/recipe/diorite_smooth_furnace.json @@ -1,22 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "xxx", - "xyx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:slabs/diorite/smooth" - }, - "y": { - "item": "minecraft:furnace" - } - }, - "result": { - "id": "mineralogy:diorite_smooth_furnace", - "count": 1 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "xxx", + "xyx", + "xxx" + ], + "key": { + "x": "#mineralogy:slabs/diorite/smooth", + "y": "minecraft:furnace" + }, + "result": { + "id": "mineralogy:diorite_smooth_furnace", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/diorite_smooth_slab.json b/src/main/resources/data/mineralogy/recipe/diorite_smooth_slab.json index 7683c6548..3f2bf297f 100644 --- a/src/main/resources/data/mineralogy/recipe/diorite_smooth_slab.json +++ b/src/main/resources/data/mineralogy/recipe/diorite_smooth_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:diorite_smooth" - } - }, - "result": { - "id": "mineralogy:diorite_smooth_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:diorite_smooth" + }, + "result": { + "id": "mineralogy:diorite_smooth_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/diorite_smooth_slab_from_vanilla.json b/src/main/resources/data/mineralogy/recipe/diorite_smooth_slab_from_vanilla.json index 319f67198..2cce0727e 100644 --- a/src/main/resources/data/mineralogy/recipe/diorite_smooth_slab_from_vanilla.json +++ b/src/main/resources/data/mineralogy/recipe/diorite_smooth_slab_from_vanilla.json @@ -1,13 +1,11 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "minecraft:polished_diorite_slab" - } - ], - "result": { - "id": "mineralogy:diorite_smooth_slab", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "minecraft:polished_diorite_slab" + ], + "result": { + "id": "mineralogy:diorite_smooth_slab", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/diorite_smooth_slab_to_vanilla.json b/src/main/resources/data/mineralogy/recipe/diorite_smooth_slab_to_vanilla.json index 244d2ee0e..5369cebc8 100644 --- a/src/main/resources/data/mineralogy/recipe/diorite_smooth_slab_to_vanilla.json +++ b/src/main/resources/data/mineralogy/recipe/diorite_smooth_slab_to_vanilla.json @@ -1,13 +1,11 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:diorite_smooth_slab" - } - ], - "result": { - "id": "minecraft:polished_diorite_slab", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:diorite_smooth_slab" + ], + "result": { + "id": "minecraft:polished_diorite_slab", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/diorite_smooth_stairs.json b/src/main/resources/data/mineralogy/recipe/diorite_smooth_stairs.json index bb1aee0a7..5e785b2e4 100644 --- a/src/main/resources/data/mineralogy/recipe/diorite_smooth_stairs.json +++ b/src/main/resources/data/mineralogy/recipe/diorite_smooth_stairs.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - "xx ", - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:diorite_smooth" - } - }, - "result": { - "id": "mineralogy:diorite_smooth_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + "xx ", + "xxx" + ], + "key": { + "x": "mineralogy:diorite_smooth" + }, + "result": { + "id": "mineralogy:diorite_smooth_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/diorite_smooth_wall.json b/src/main/resources/data/mineralogy/recipe/diorite_smooth_wall.json index e60ded900..12929dac0 100644 --- a/src/main/resources/data/mineralogy/recipe/diorite_smooth_wall.json +++ b/src/main/resources/data/mineralogy/recipe/diorite_smooth_wall.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/diorite/smooth" - } - }, - "result": { - "id": "mineralogy:diorite_smooth_wall", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/diorite/smooth" + }, + "result": { + "id": "mineralogy:diorite_smooth_wall", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/diorite_stairs.json b/src/main/resources/data/mineralogy/recipe/diorite_stairs.json index 65fcbab98..026dc99dd 100644 --- a/src/main/resources/data/mineralogy/recipe/diorite_stairs.json +++ b/src/main/resources/data/mineralogy/recipe/diorite_stairs.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - "xx ", - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:diorite" - } - }, - "result": { - "id": "mineralogy:diorite_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + "xx ", + "xxx" + ], + "key": { + "x": "mineralogy:diorite" + }, + "result": { + "id": "mineralogy:diorite_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/diorite_to_stone.json b/src/main/resources/data/mineralogy/recipe/diorite_to_stone.json index a8df6851b..6616ce5ba 100644 --- a/src/main/resources/data/mineralogy/recipe/diorite_to_stone.json +++ b/src/main/resources/data/mineralogy/recipe/diorite_to_stone.json @@ -1,12 +1,10 @@ { - "type": "minecraft:smelting", - "category": "blocks", - "ingredient": { - "item": "mineralogy:diorite" - }, - "result": { - "id": "minecraft:stone" - }, - "experience": 0.1, - "cookingtime": 200 + "type": "minecraft:smelting", + "category": "blocks", + "ingredient": "mineralogy:diorite", + "result": { + "id": "minecraft:stone" + }, + "experience": 0.1, + "cookingtime": 200 } diff --git a/src/main/resources/data/mineralogy/recipe/diorite_wall.json b/src/main/resources/data/mineralogy/recipe/diorite_wall.json index b49e95396..e00c269c7 100644 --- a/src/main/resources/data/mineralogy/recipe/diorite_wall.json +++ b/src/main/resources/data/mineralogy/recipe/diorite_wall.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:diorite" - } - }, - "result": { - "id": "mineralogy:diorite_wall", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx" + ], + "key": { + "x": "mineralogy:diorite" + }, + "result": { + "id": "mineralogy:diorite_wall", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/dolomite_brick.json b/src/main/resources/data/mineralogy/recipe/dolomite_brick.json index f95ceda10..e4ec87fba 100644 --- a/src/main/resources/data/mineralogy/recipe/dolomite_brick.json +++ b/src/main/resources/data/mineralogy/recipe/dolomite_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/dolomite" - } - }, - "result": { - "id": "mineralogy:dolomite_brick", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "#mineralogy:stones/dolomite" + }, + "result": { + "id": "mineralogy:dolomite_brick", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/dolomite_brick_block_polishing.json b/src/main/resources/data/mineralogy/recipe/dolomite_brick_block_polishing.json index 63dee09b7..237f1b85c 100644 --- a/src/main/resources/data/mineralogy/recipe/dolomite_brick_block_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/dolomite_brick_block_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:dolomite_brick" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:dolomite_smooth_brick", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:dolomite_brick", + "#c:sands" + ], + "result": { + "id": "mineralogy:dolomite_smooth_brick", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/dolomite_brick_furnace.json b/src/main/resources/data/mineralogy/recipe/dolomite_brick_furnace.json index 4a43c44cf..47924a143 100644 --- a/src/main/resources/data/mineralogy/recipe/dolomite_brick_furnace.json +++ b/src/main/resources/data/mineralogy/recipe/dolomite_brick_furnace.json @@ -1,22 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "xxx", - "xyx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:slabs/dolomite/brick" - }, - "y": { - "item": "minecraft:furnace" - } - }, - "result": { - "id": "mineralogy:dolomite_brick_furnace", - "count": 1 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "xxx", + "xyx", + "xxx" + ], + "key": { + "x": "#mineralogy:slabs/dolomite/brick", + "y": "minecraft:furnace" + }, + "result": { + "id": "mineralogy:dolomite_brick_furnace", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/dolomite_brick_slab.json b/src/main/resources/data/mineralogy/recipe/dolomite_brick_slab.json index 9dcb812d3..15ace4a09 100644 --- a/src/main/resources/data/mineralogy/recipe/dolomite_brick_slab.json +++ b/src/main/resources/data/mineralogy/recipe/dolomite_brick_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:dolomite_brick" - } - }, - "result": { - "id": "mineralogy:dolomite_brick_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:dolomite_brick" + }, + "result": { + "id": "mineralogy:dolomite_brick_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/dolomite_brick_slab_polishing.json b/src/main/resources/data/mineralogy/recipe/dolomite_brick_slab_polishing.json index c995afe4b..60cdd27c5 100644 --- a/src/main/resources/data/mineralogy/recipe/dolomite_brick_slab_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/dolomite_brick_slab_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:dolomite_brick_slab" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:dolomite_smooth_brick_slab", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:dolomite_brick_slab", + "#c:sands" + ], + "result": { + "id": "mineralogy:dolomite_smooth_brick_slab", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/dolomite_brick_slab_recombination.json b/src/main/resources/data/mineralogy/recipe/dolomite_brick_slab_recombination.json index c00b8a25b..0c095b3b2 100644 --- a/src/main/resources/data/mineralogy/recipe/dolomite_brick_slab_recombination.json +++ b/src/main/resources/data/mineralogy/recipe/dolomite_brick_slab_recombination.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:dolomite_brick_slab" - }, - { - "item": "mineralogy:dolomite_brick_slab" - } - ], - "result": { - "id": "mineralogy:dolomite_brick", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:dolomite_brick_slab", + "mineralogy:dolomite_brick_slab" + ], + "result": { + "id": "mineralogy:dolomite_brick", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/dolomite_brick_stairs.json b/src/main/resources/data/mineralogy/recipe/dolomite_brick_stairs.json index fa20385c3..022190fd7 100644 --- a/src/main/resources/data/mineralogy/recipe/dolomite_brick_stairs.json +++ b/src/main/resources/data/mineralogy/recipe/dolomite_brick_stairs.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - "xx ", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/dolomite/brick" - } - }, - "result": { - "id": "mineralogy:dolomite_brick_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + "xx ", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/dolomite/brick" + }, + "result": { + "id": "mineralogy:dolomite_brick_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/dolomite_brick_stairs_polishing.json b/src/main/resources/data/mineralogy/recipe/dolomite_brick_stairs_polishing.json index d9b8cf9bb..3443ef0b7 100644 --- a/src/main/resources/data/mineralogy/recipe/dolomite_brick_stairs_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/dolomite_brick_stairs_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:dolomite_brick_stairs" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:dolomite_smooth_brick_stairs", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:dolomite_brick_stairs", + "#c:sands" + ], + "result": { + "id": "mineralogy:dolomite_smooth_brick_stairs", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/dolomite_brick_wall.json b/src/main/resources/data/mineralogy/recipe/dolomite_brick_wall.json index d0aa078d5..b2895b49f 100644 --- a/src/main/resources/data/mineralogy/recipe/dolomite_brick_wall.json +++ b/src/main/resources/data/mineralogy/recipe/dolomite_brick_wall.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/dolomite/brick" - } - }, - "result": { - "id": "mineralogy:dolomite_brick_wall", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/dolomite/brick" + }, + "result": { + "id": "mineralogy:dolomite_brick_wall", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/dolomite_brick_wall_polishing.json b/src/main/resources/data/mineralogy/recipe/dolomite_brick_wall_polishing.json index a985dcd55..996fb00d6 100644 --- a/src/main/resources/data/mineralogy/recipe/dolomite_brick_wall_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/dolomite_brick_wall_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:dolomite_brick_wall" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:dolomite_smooth_brick_wall", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:dolomite_brick_wall", + "#c:sands" + ], + "result": { + "id": "mineralogy:dolomite_smooth_brick_wall", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/dolomite_cobblestone.json b/src/main/resources/data/mineralogy/recipe/dolomite_cobblestone.json index c39324cec..750b370c6 100644 --- a/src/main/resources/data/mineralogy/recipe/dolomite_cobblestone.json +++ b/src/main/resources/data/mineralogy/recipe/dolomite_cobblestone.json @@ -1,22 +1,14 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "tag": "mineralogy:stones/dolomite" - }, - { - "tag": "mineralogy:stones/dolomite" - }, - { - "item": "minecraft:gravel" - }, - { - "item": "minecraft:gravel" - } - ], - "result": { - "id": "minecraft:cobblestone", - "count": 4 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "#mineralogy:stones/dolomite", + "#mineralogy:stones/dolomite", + "minecraft:gravel", + "minecraft:gravel" + ], + "result": { + "id": "minecraft:cobblestone", + "count": 4 + } } diff --git a/src/main/resources/data/mineralogy/recipe/dolomite_furnace.json b/src/main/resources/data/mineralogy/recipe/dolomite_furnace.json index dc2c3fb6a..3ad6dceb7 100644 --- a/src/main/resources/data/mineralogy/recipe/dolomite_furnace.json +++ b/src/main/resources/data/mineralogy/recipe/dolomite_furnace.json @@ -1,22 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "xxx", - "xyx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:slabs/dolomite" - }, - "y": { - "item": "minecraft:furnace" - } - }, - "result": { - "id": "mineralogy:dolomite_furnace", - "count": 1 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "xxx", + "xyx", + "xxx" + ], + "key": { + "x": "#mineralogy:slabs/dolomite", + "y": "minecraft:furnace" + }, + "result": { + "id": "mineralogy:dolomite_furnace", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/dolomite_polished_brick_slab_recombination.json b/src/main/resources/data/mineralogy/recipe/dolomite_polished_brick_slab_recombination.json index 452ca0f77..07b0008c0 100644 --- a/src/main/resources/data/mineralogy/recipe/dolomite_polished_brick_slab_recombination.json +++ b/src/main/resources/data/mineralogy/recipe/dolomite_polished_brick_slab_recombination.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:dolomite_smooth_brick_slab" - }, - { - "item": "mineralogy:dolomite_smooth_brick_slab" - } - ], - "result": { - "id": "mineralogy:dolomite_smooth_brick", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:dolomite_smooth_brick_slab", + "mineralogy:dolomite_smooth_brick_slab" + ], + "result": { + "id": "mineralogy:dolomite_smooth_brick", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/dolomite_polished_slab_recombination.json b/src/main/resources/data/mineralogy/recipe/dolomite_polished_slab_recombination.json index cfb4c452d..2db4d7b3c 100644 --- a/src/main/resources/data/mineralogy/recipe/dolomite_polished_slab_recombination.json +++ b/src/main/resources/data/mineralogy/recipe/dolomite_polished_slab_recombination.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:dolomite_smooth_slab" - }, - { - "item": "mineralogy:dolomite_smooth_slab" - } - ], - "result": { - "id": "mineralogy:dolomite_smooth", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:dolomite_smooth_slab", + "mineralogy:dolomite_smooth_slab" + ], + "result": { + "id": "mineralogy:dolomite_smooth", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/dolomite_polished_slabs_to_brick.json b/src/main/resources/data/mineralogy/recipe/dolomite_polished_slabs_to_brick.json index 3aaf490b1..a0d363491 100644 --- a/src/main/resources/data/mineralogy/recipe/dolomite_polished_slabs_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/dolomite_polished_slabs_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:dolomite_smooth_slab" - } - }, - "result": { - "id": "mineralogy:dolomite_smooth_brick_slab", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:dolomite_smooth_slab" + }, + "result": { + "id": "mineralogy:dolomite_smooth_brick_slab", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/dolomite_polished_stairs_to_brick.json b/src/main/resources/data/mineralogy/recipe/dolomite_polished_stairs_to_brick.json index 44d282519..bf9166189 100644 --- a/src/main/resources/data/mineralogy/recipe/dolomite_polished_stairs_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/dolomite_polished_stairs_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:dolomite_smooth_stairs" - } - }, - "result": { - "id": "mineralogy:dolomite_smooth_brick_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:dolomite_smooth_stairs" + }, + "result": { + "id": "mineralogy:dolomite_smooth_brick_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/dolomite_polished_walls_to_brick.json b/src/main/resources/data/mineralogy/recipe/dolomite_polished_walls_to_brick.json index 540ae6052..85596cd76 100644 --- a/src/main/resources/data/mineralogy/recipe/dolomite_polished_walls_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/dolomite_polished_walls_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:dolomite_smooth_wall" - } - }, - "result": { - "id": "mineralogy:dolomite_smooth_brick_wall", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:dolomite_smooth_wall" + }, + "result": { + "id": "mineralogy:dolomite_smooth_brick_wall", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/dolomite_raw_slab_polishing.json b/src/main/resources/data/mineralogy/recipe/dolomite_raw_slab_polishing.json index 0e3c12315..9d58adf07 100644 --- a/src/main/resources/data/mineralogy/recipe/dolomite_raw_slab_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/dolomite_raw_slab_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:dolomite_slab" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:dolomite_smooth_slab", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:dolomite_slab", + "#c:sands" + ], + "result": { + "id": "mineralogy:dolomite_smooth_slab", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/dolomite_raw_slab_recombination.json b/src/main/resources/data/mineralogy/recipe/dolomite_raw_slab_recombination.json index 572aed596..57c1f8887 100644 --- a/src/main/resources/data/mineralogy/recipe/dolomite_raw_slab_recombination.json +++ b/src/main/resources/data/mineralogy/recipe/dolomite_raw_slab_recombination.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:dolomite_slab" - }, - { - "item": "mineralogy:dolomite_slab" - } - ], - "result": { - "id": "mineralogy:dolomite", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:dolomite_slab", + "mineralogy:dolomite_slab" + ], + "result": { + "id": "mineralogy:dolomite", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/dolomite_raw_slabs_to_brick.json b/src/main/resources/data/mineralogy/recipe/dolomite_raw_slabs_to_brick.json index d1bb26c79..33226cd14 100644 --- a/src/main/resources/data/mineralogy/recipe/dolomite_raw_slabs_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/dolomite_raw_slabs_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:dolomite_slab" - } - }, - "result": { - "id": "mineralogy:dolomite_brick_slab", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:dolomite_slab" + }, + "result": { + "id": "mineralogy:dolomite_brick_slab", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/dolomite_raw_stairs_polishing.json b/src/main/resources/data/mineralogy/recipe/dolomite_raw_stairs_polishing.json index ae43f3abe..216c4d697 100644 --- a/src/main/resources/data/mineralogy/recipe/dolomite_raw_stairs_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/dolomite_raw_stairs_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:dolomite_stairs" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:dolomite_smooth_stairs", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:dolomite_stairs", + "#c:sands" + ], + "result": { + "id": "mineralogy:dolomite_smooth_stairs", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/dolomite_raw_stairs_to_brick.json b/src/main/resources/data/mineralogy/recipe/dolomite_raw_stairs_to_brick.json index 72eaed871..14731f9e4 100644 --- a/src/main/resources/data/mineralogy/recipe/dolomite_raw_stairs_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/dolomite_raw_stairs_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:dolomite_stairs" - } - }, - "result": { - "id": "mineralogy:dolomite_brick_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:dolomite_stairs" + }, + "result": { + "id": "mineralogy:dolomite_brick_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/dolomite_raw_wall_polishing.json b/src/main/resources/data/mineralogy/recipe/dolomite_raw_wall_polishing.json index 819f59d54..deaa0bfbf 100644 --- a/src/main/resources/data/mineralogy/recipe/dolomite_raw_wall_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/dolomite_raw_wall_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:dolomite_wall" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:dolomite_smooth_wall", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:dolomite_wall", + "#c:sands" + ], + "result": { + "id": "mineralogy:dolomite_smooth_wall", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/dolomite_raw_walls_to_brick.json b/src/main/resources/data/mineralogy/recipe/dolomite_raw_walls_to_brick.json index 5a3b86d01..963c25a5e 100644 --- a/src/main/resources/data/mineralogy/recipe/dolomite_raw_walls_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/dolomite_raw_walls_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:dolomite_wall" - } - }, - "result": { - "id": "mineralogy:dolomite_brick_wall", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:dolomite_wall" + }, + "result": { + "id": "mineralogy:dolomite_brick_wall", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/dolomite_relief_axe.json b/src/main/resources/data/mineralogy/recipe/dolomite_relief_axe.json index e28eedecf..bbafcc47c 100644 --- a/src/main/resources/data/mineralogy/recipe/dolomite_relief_axe.json +++ b/src/main/resources/data/mineralogy/recipe/dolomite_relief_axe.json @@ -1,37 +1,19 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:dolomite_relief_blank" - }, - { - "item": "mineralogy:dolomite_relief_blank" - }, - { - "item": "mineralogy:dolomite_relief_blank" - }, - { - "item": "mineralogy:dolomite_relief_blank" - }, - { - "item": "mineralogy:dolomite_relief_blank" - }, - { - "item": "mineralogy:dolomite_relief_blank" - }, - { - "item": "mineralogy:dolomite_relief_blank" - }, - { - "item": "mineralogy:dolomite_relief_blank" - }, - { - "item": "minecraft:stone_axe" - } - ], - "result": { - "id": "mineralogy:dolomite_relief_axe", - "count": 8 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:dolomite_relief_blank", + "mineralogy:dolomite_relief_blank", + "mineralogy:dolomite_relief_blank", + "mineralogy:dolomite_relief_blank", + "mineralogy:dolomite_relief_blank", + "mineralogy:dolomite_relief_blank", + "mineralogy:dolomite_relief_blank", + "mineralogy:dolomite_relief_blank", + "minecraft:stone_axe" + ], + "result": { + "id": "mineralogy:dolomite_relief_axe", + "count": 8 + } } diff --git a/src/main/resources/data/mineralogy/recipe/dolomite_relief_blank.json b/src/main/resources/data/mineralogy/recipe/dolomite_relief_blank.json index 6003dce65..6b9a35579 100644 --- a/src/main/resources/data/mineralogy/recipe/dolomite_relief_blank.json +++ b/src/main/resources/data/mineralogy/recipe/dolomite_relief_blank.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx", - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:dolomite_smooth" - } - }, - "result": { - "id": "mineralogy:dolomite_relief_blank", - "count": 16 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx", + "xxx" + ], + "key": { + "x": "mineralogy:dolomite_smooth" + }, + "result": { + "id": "mineralogy:dolomite_relief_blank", + "count": 16 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/dolomite_relief_cross.json b/src/main/resources/data/mineralogy/recipe/dolomite_relief_cross.json index 52c432336..3b76679cc 100644 --- a/src/main/resources/data/mineralogy/recipe/dolomite_relief_cross.json +++ b/src/main/resources/data/mineralogy/recipe/dolomite_relief_cross.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x x", - " ", - "x x" - ], - "key": { - "x": { - "item": "mineralogy:dolomite_relief_blank" - } - }, - "result": { - "id": "mineralogy:dolomite_relief_cross", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x x", + " ", + "x x" + ], + "key": { + "x": "mineralogy:dolomite_relief_blank" + }, + "result": { + "id": "mineralogy:dolomite_relief_cross", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/dolomite_relief_hammer.json b/src/main/resources/data/mineralogy/recipe/dolomite_relief_hammer.json index 19adbf739..a3292ac54 100644 --- a/src/main/resources/data/mineralogy/recipe/dolomite_relief_hammer.json +++ b/src/main/resources/data/mineralogy/recipe/dolomite_relief_hammer.json @@ -1,25 +1,19 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "zxz", - "zyz", - "zzz" - ], - "key": { - "x": { - "item": "mineralogy:dolomite_smooth" - }, - "y": { - "item": "minecraft:stick" - }, - "z": { - "item": "mineralogy:dolomite_relief_blank" - } - }, - "result": { - "id": "mineralogy:dolomite_relief_hammer", - "count": 7 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "zxz", + "zyz", + "zzz" + ], + "key": { + "x": "mineralogy:dolomite_smooth", + "y": "minecraft:stick", + "z": "mineralogy:dolomite_relief_blank" + }, + "result": { + "id": "mineralogy:dolomite_relief_hammer", + "count": 7 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/dolomite_relief_hoe.json b/src/main/resources/data/mineralogy/recipe/dolomite_relief_hoe.json index d64bfb7df..6b4e5832f 100644 --- a/src/main/resources/data/mineralogy/recipe/dolomite_relief_hoe.json +++ b/src/main/resources/data/mineralogy/recipe/dolomite_relief_hoe.json @@ -1,37 +1,19 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:dolomite_relief_blank" - }, - { - "item": "mineralogy:dolomite_relief_blank" - }, - { - "item": "mineralogy:dolomite_relief_blank" - }, - { - "item": "mineralogy:dolomite_relief_blank" - }, - { - "item": "mineralogy:dolomite_relief_blank" - }, - { - "item": "mineralogy:dolomite_relief_blank" - }, - { - "item": "mineralogy:dolomite_relief_blank" - }, - { - "item": "mineralogy:dolomite_relief_blank" - }, - { - "item": "minecraft:stone_hoe" - } - ], - "result": { - "id": "mineralogy:dolomite_relief_hoe", - "count": 8 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:dolomite_relief_blank", + "mineralogy:dolomite_relief_blank", + "mineralogy:dolomite_relief_blank", + "mineralogy:dolomite_relief_blank", + "mineralogy:dolomite_relief_blank", + "mineralogy:dolomite_relief_blank", + "mineralogy:dolomite_relief_blank", + "mineralogy:dolomite_relief_blank", + "minecraft:stone_hoe" + ], + "result": { + "id": "mineralogy:dolomite_relief_hoe", + "count": 8 + } } diff --git a/src/main/resources/data/mineralogy/recipe/dolomite_relief_horizontal.json b/src/main/resources/data/mineralogy/recipe/dolomite_relief_horizontal.json index 1885d5e56..9fd8346d9 100644 --- a/src/main/resources/data/mineralogy/recipe/dolomite_relief_horizontal.json +++ b/src/main/resources/data/mineralogy/recipe/dolomite_relief_horizontal.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:dolomite_relief_blank" - } - }, - "result": { - "id": "mineralogy:dolomite_relief_horizontal", - "count": 3 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:dolomite_relief_blank" + }, + "result": { + "id": "mineralogy:dolomite_relief_horizontal", + "count": 3 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/dolomite_relief_i.json b/src/main/resources/data/mineralogy/recipe/dolomite_relief_i.json index 291829c66..bf2ab23c3 100644 --- a/src/main/resources/data/mineralogy/recipe/dolomite_relief_i.json +++ b/src/main/resources/data/mineralogy/recipe/dolomite_relief_i.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - " x ", - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:dolomite_relief_blank" - } - }, - "result": { - "id": "mineralogy:dolomite_relief_i", - "count": 7 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + " x ", + "xxx" + ], + "key": { + "x": "mineralogy:dolomite_relief_blank" + }, + "result": { + "id": "mineralogy:dolomite_relief_i", + "count": 7 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/dolomite_relief_left.json b/src/main/resources/data/mineralogy/recipe/dolomite_relief_left.json index 8dd5332b1..a429be2ac 100644 --- a/src/main/resources/data/mineralogy/recipe/dolomite_relief_left.json +++ b/src/main/resources/data/mineralogy/recipe/dolomite_relief_left.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - " x ", - " x" - ], - "key": { - "x": { - "item": "mineralogy:dolomite_relief_blank" - } - }, - "result": { - "id": "mineralogy:dolomite_relief_left", - "count": 3 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + " x ", + " x" + ], + "key": { + "x": "mineralogy:dolomite_relief_blank" + }, + "result": { + "id": "mineralogy:dolomite_relief_left", + "count": 3 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/dolomite_relief_pickaxe.json b/src/main/resources/data/mineralogy/recipe/dolomite_relief_pickaxe.json index ac27a0d9f..b0aaa961f 100644 --- a/src/main/resources/data/mineralogy/recipe/dolomite_relief_pickaxe.json +++ b/src/main/resources/data/mineralogy/recipe/dolomite_relief_pickaxe.json @@ -1,37 +1,19 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:dolomite_relief_blank" - }, - { - "item": "mineralogy:dolomite_relief_blank" - }, - { - "item": "mineralogy:dolomite_relief_blank" - }, - { - "item": "mineralogy:dolomite_relief_blank" - }, - { - "item": "mineralogy:dolomite_relief_blank" - }, - { - "item": "mineralogy:dolomite_relief_blank" - }, - { - "item": "mineralogy:dolomite_relief_blank" - }, - { - "item": "mineralogy:dolomite_relief_blank" - }, - { - "item": "minecraft:stone_pickaxe" - } - ], - "result": { - "id": "mineralogy:dolomite_relief_pickaxe", - "count": 8 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:dolomite_relief_blank", + "mineralogy:dolomite_relief_blank", + "mineralogy:dolomite_relief_blank", + "mineralogy:dolomite_relief_blank", + "mineralogy:dolomite_relief_blank", + "mineralogy:dolomite_relief_blank", + "mineralogy:dolomite_relief_blank", + "mineralogy:dolomite_relief_blank", + "minecraft:stone_pickaxe" + ], + "result": { + "id": "mineralogy:dolomite_relief_pickaxe", + "count": 8 + } } diff --git a/src/main/resources/data/mineralogy/recipe/dolomite_relief_plus.json b/src/main/resources/data/mineralogy/recipe/dolomite_relief_plus.json index ddf317678..988712e3d 100644 --- a/src/main/resources/data/mineralogy/recipe/dolomite_relief_plus.json +++ b/src/main/resources/data/mineralogy/recipe/dolomite_relief_plus.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - " x ", - "xxx", - " x " - ], - "key": { - "x": { - "item": "mineralogy:dolomite_relief_blank" - } - }, - "result": { - "id": "mineralogy:dolomite_relief_plus", - "count": 5 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + " x ", + "xxx", + " x " + ], + "key": { + "x": "mineralogy:dolomite_relief_blank" + }, + "result": { + "id": "mineralogy:dolomite_relief_plus", + "count": 5 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/dolomite_relief_right.json b/src/main/resources/data/mineralogy/recipe/dolomite_relief_right.json index 606939851..38b3e9cc3 100644 --- a/src/main/resources/data/mineralogy/recipe/dolomite_relief_right.json +++ b/src/main/resources/data/mineralogy/recipe/dolomite_relief_right.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:dolomite_relief_left" - }, - { - "item": "mineralogy:dolomite_relief_left" - } - ], - "result": { - "id": "mineralogy:dolomite_relief_right", - "count": 2 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:dolomite_relief_left", + "mineralogy:dolomite_relief_left" + ], + "result": { + "id": "mineralogy:dolomite_relief_right", + "count": 2 + } } diff --git a/src/main/resources/data/mineralogy/recipe/dolomite_relief_sword.json b/src/main/resources/data/mineralogy/recipe/dolomite_relief_sword.json index 3f07c7fc3..7e8362ec0 100644 --- a/src/main/resources/data/mineralogy/recipe/dolomite_relief_sword.json +++ b/src/main/resources/data/mineralogy/recipe/dolomite_relief_sword.json @@ -1,37 +1,19 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:dolomite_relief_blank" - }, - { - "item": "mineralogy:dolomite_relief_blank" - }, - { - "item": "mineralogy:dolomite_relief_blank" - }, - { - "item": "mineralogy:dolomite_relief_blank" - }, - { - "item": "mineralogy:dolomite_relief_blank" - }, - { - "item": "mineralogy:dolomite_relief_blank" - }, - { - "item": "mineralogy:dolomite_relief_blank" - }, - { - "item": "mineralogy:dolomite_relief_blank" - }, - { - "item": "minecraft:stone_sword" - } - ], - "result": { - "id": "mineralogy:dolomite_relief_sword", - "count": 8 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:dolomite_relief_blank", + "mineralogy:dolomite_relief_blank", + "mineralogy:dolomite_relief_blank", + "mineralogy:dolomite_relief_blank", + "mineralogy:dolomite_relief_blank", + "mineralogy:dolomite_relief_blank", + "mineralogy:dolomite_relief_blank", + "mineralogy:dolomite_relief_blank", + "minecraft:stone_sword" + ], + "result": { + "id": "mineralogy:dolomite_relief_sword", + "count": 8 + } } diff --git a/src/main/resources/data/mineralogy/recipe/dolomite_relief_vertical.json b/src/main/resources/data/mineralogy/recipe/dolomite_relief_vertical.json index aaec64ac9..f87093496 100644 --- a/src/main/resources/data/mineralogy/recipe/dolomite_relief_vertical.json +++ b/src/main/resources/data/mineralogy/recipe/dolomite_relief_vertical.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x", - "x", - "x" - ], - "key": { - "x": { - "item": "mineralogy:dolomite_relief_blank" - } - }, - "result": { - "id": "mineralogy:dolomite_relief_vertical", - "count": 3 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x", + "x", + "x" + ], + "key": { + "x": "mineralogy:dolomite_relief_blank" + }, + "result": { + "id": "mineralogy:dolomite_relief_vertical", + "count": 3 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/dolomite_slab.json b/src/main/resources/data/mineralogy/recipe/dolomite_slab.json index 21ce37a45..03a339bc9 100644 --- a/src/main/resources/data/mineralogy/recipe/dolomite_slab.json +++ b/src/main/resources/data/mineralogy/recipe/dolomite_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:dolomite" - } - }, - "result": { - "id": "mineralogy:dolomite_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:dolomite" + }, + "result": { + "id": "mineralogy:dolomite_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/dolomite_smooth.json b/src/main/resources/data/mineralogy/recipe/dolomite_smooth.json index feb81e98e..028077475 100644 --- a/src/main/resources/data/mineralogy/recipe/dolomite_smooth.json +++ b/src/main/resources/data/mineralogy/recipe/dolomite_smooth.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "tag": "mineralogy:stones/dolomite" - }, - { - "item": "minecraft:sand" - } - ], - "result": { - "id": "mineralogy:dolomite_smooth", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "#mineralogy:stones/dolomite", + "minecraft:sand" + ], + "result": { + "id": "mineralogy:dolomite_smooth", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/dolomite_smooth_brick.json b/src/main/resources/data/mineralogy/recipe/dolomite_smooth_brick.json index a737a4350..513917fe7 100644 --- a/src/main/resources/data/mineralogy/recipe/dolomite_smooth_brick.json +++ b/src/main/resources/data/mineralogy/recipe/dolomite_smooth_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/dolomite/smooth" - } - }, - "result": { - "id": "mineralogy:dolomite_smooth_brick", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "#mineralogy:stones/dolomite/smooth" + }, + "result": { + "id": "mineralogy:dolomite_smooth_brick", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/dolomite_smooth_brick_furnace.json b/src/main/resources/data/mineralogy/recipe/dolomite_smooth_brick_furnace.json index 009b21af1..69d647d63 100644 --- a/src/main/resources/data/mineralogy/recipe/dolomite_smooth_brick_furnace.json +++ b/src/main/resources/data/mineralogy/recipe/dolomite_smooth_brick_furnace.json @@ -1,22 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "xxx", - "xyx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:slabs/dolomite/smooth_brick" - }, - "y": { - "item": "minecraft:furnace" - } - }, - "result": { - "id": "mineralogy:dolomite_smooth_brick_furnace", - "count": 1 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "xxx", + "xyx", + "xxx" + ], + "key": { + "x": "#mineralogy:slabs/dolomite/smooth_brick", + "y": "minecraft:furnace" + }, + "result": { + "id": "mineralogy:dolomite_smooth_brick_furnace", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/dolomite_smooth_brick_slab.json b/src/main/resources/data/mineralogy/recipe/dolomite_smooth_brick_slab.json index 6cc053d5a..8db6acfb2 100644 --- a/src/main/resources/data/mineralogy/recipe/dolomite_smooth_brick_slab.json +++ b/src/main/resources/data/mineralogy/recipe/dolomite_smooth_brick_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:dolomite_smooth_brick" - } - }, - "result": { - "id": "mineralogy:dolomite_smooth_brick_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:dolomite_smooth_brick" + }, + "result": { + "id": "mineralogy:dolomite_smooth_brick_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/dolomite_smooth_brick_stairs.json b/src/main/resources/data/mineralogy/recipe/dolomite_smooth_brick_stairs.json index e1e83b413..57369cd86 100644 --- a/src/main/resources/data/mineralogy/recipe/dolomite_smooth_brick_stairs.json +++ b/src/main/resources/data/mineralogy/recipe/dolomite_smooth_brick_stairs.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - "xx ", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/dolomite/smooth_brick" - } - }, - "result": { - "id": "mineralogy:dolomite_smooth_brick_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + "xx ", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/dolomite/smooth_brick" + }, + "result": { + "id": "mineralogy:dolomite_smooth_brick_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/dolomite_smooth_brick_wall.json b/src/main/resources/data/mineralogy/recipe/dolomite_smooth_brick_wall.json index fdf71fcd7..82743575a 100644 --- a/src/main/resources/data/mineralogy/recipe/dolomite_smooth_brick_wall.json +++ b/src/main/resources/data/mineralogy/recipe/dolomite_smooth_brick_wall.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/dolomite/smooth_brick" - } - }, - "result": { - "id": "mineralogy:dolomite_smooth_brick_wall", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/dolomite/smooth_brick" + }, + "result": { + "id": "mineralogy:dolomite_smooth_brick_wall", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/dolomite_smooth_furnace.json b/src/main/resources/data/mineralogy/recipe/dolomite_smooth_furnace.json index 8f1350bc6..162b32bfe 100644 --- a/src/main/resources/data/mineralogy/recipe/dolomite_smooth_furnace.json +++ b/src/main/resources/data/mineralogy/recipe/dolomite_smooth_furnace.json @@ -1,22 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "xxx", - "xyx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:slabs/dolomite/smooth" - }, - "y": { - "item": "minecraft:furnace" - } - }, - "result": { - "id": "mineralogy:dolomite_smooth_furnace", - "count": 1 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "xxx", + "xyx", + "xxx" + ], + "key": { + "x": "#mineralogy:slabs/dolomite/smooth", + "y": "minecraft:furnace" + }, + "result": { + "id": "mineralogy:dolomite_smooth_furnace", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/dolomite_smooth_slab.json b/src/main/resources/data/mineralogy/recipe/dolomite_smooth_slab.json index 35c9053e4..e597e2858 100644 --- a/src/main/resources/data/mineralogy/recipe/dolomite_smooth_slab.json +++ b/src/main/resources/data/mineralogy/recipe/dolomite_smooth_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:dolomite_smooth" - } - }, - "result": { - "id": "mineralogy:dolomite_smooth_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:dolomite_smooth" + }, + "result": { + "id": "mineralogy:dolomite_smooth_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/dolomite_smooth_stairs.json b/src/main/resources/data/mineralogy/recipe/dolomite_smooth_stairs.json index 9cd130c4b..431505953 100644 --- a/src/main/resources/data/mineralogy/recipe/dolomite_smooth_stairs.json +++ b/src/main/resources/data/mineralogy/recipe/dolomite_smooth_stairs.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - "xx ", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/dolomite/smooth" - } - }, - "result": { - "id": "mineralogy:dolomite_smooth_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + "xx ", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/dolomite/smooth" + }, + "result": { + "id": "mineralogy:dolomite_smooth_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/dolomite_smooth_wall.json b/src/main/resources/data/mineralogy/recipe/dolomite_smooth_wall.json index 04369589e..32d63a9c7 100644 --- a/src/main/resources/data/mineralogy/recipe/dolomite_smooth_wall.json +++ b/src/main/resources/data/mineralogy/recipe/dolomite_smooth_wall.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/dolomite/smooth" - } - }, - "result": { - "id": "mineralogy:dolomite_smooth_wall", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/dolomite/smooth" + }, + "result": { + "id": "mineralogy:dolomite_smooth_wall", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/dolomite_stairs.json b/src/main/resources/data/mineralogy/recipe/dolomite_stairs.json index abccc56c3..70b04d7d5 100644 --- a/src/main/resources/data/mineralogy/recipe/dolomite_stairs.json +++ b/src/main/resources/data/mineralogy/recipe/dolomite_stairs.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - "xx ", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/dolomite" - } - }, - "result": { - "id": "mineralogy:dolomite_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + "xx ", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/dolomite" + }, + "result": { + "id": "mineralogy:dolomite_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/dolomite_to_stone.json b/src/main/resources/data/mineralogy/recipe/dolomite_to_stone.json index 15073a049..ab92b6253 100644 --- a/src/main/resources/data/mineralogy/recipe/dolomite_to_stone.json +++ b/src/main/resources/data/mineralogy/recipe/dolomite_to_stone.json @@ -1,12 +1,10 @@ { - "type": "minecraft:smelting", - "category": "blocks", - "ingredient": { - "item": "mineralogy:dolomite" - }, - "result": { - "id": "minecraft:stone" - }, - "experience": 0.1, - "cookingtime": 200 + "type": "minecraft:smelting", + "category": "blocks", + "ingredient": "mineralogy:dolomite", + "result": { + "id": "minecraft:stone" + }, + "experience": 0.1, + "cookingtime": 200 } diff --git a/src/main/resources/data/mineralogy/recipe/dolomite_wall.json b/src/main/resources/data/mineralogy/recipe/dolomite_wall.json index 54ac96a10..029020978 100644 --- a/src/main/resources/data/mineralogy/recipe/dolomite_wall.json +++ b/src/main/resources/data/mineralogy/recipe/dolomite_wall.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/dolomite" - } - }, - "result": { - "id": "mineralogy:dolomite_wall", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/dolomite" + }, + "result": { + "id": "mineralogy:dolomite_wall", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/drywall.json b/src/main/resources/data/mineralogy/recipe/drywall.json index c50b4d0a5..524886520 100644 --- a/src/main/resources/data/mineralogy/recipe/drywall.json +++ b/src/main/resources/data/mineralogy/recipe/drywall.json @@ -1,28 +1,24 @@ { - "neoforge:conditions": [ - { - "type": "mineralogy:config", - "flag": "ENABLE_DRYWALLS" - } - ], - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "pgp", - "pgp", - "pgp" - ], - "key": { - "p": { - "tag": "c:paper" - }, - "g": { - "tag": "c:dusts/gypsum" - } - }, - "result": { - "id": "mineralogy:drywall_white", - "count": 3 - }, - "show_notification": true + "neoforge:conditions": [ + { + "type": "mineralogy:config", + "flag": "ENABLE_DRYWALLS" + } + ], + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "pgp", + "pgp", + "pgp" + ], + "key": { + "p": "#c:paper", + "g": "#c:dusts/gypsum" + }, + "result": { + "id": "mineralogy:drywall_white", + "count": 3 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/drywall_black.json b/src/main/resources/data/mineralogy/recipe/drywall_black.json index 317fed57f..c0638f331 100644 --- a/src/main/resources/data/mineralogy/recipe/drywall_black.json +++ b/src/main/resources/data/mineralogy/recipe/drywall_black.json @@ -1,22 +1,18 @@ { - "neoforge:conditions": [ - { - "type": "mineralogy:config", - "flag": "ENABLE_DRYWALLS" - } - ], - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "tag": "mineralogy:drywall/white" - }, - { - "item": "minecraft:ink_sac" - } - ], - "result": { - "id": "mineralogy:drywall_black", - "count": 1 - } + "neoforge:conditions": [ + { + "type": "mineralogy:config", + "flag": "ENABLE_DRYWALLS" + } + ], + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "#mineralogy:drywall/white", + "minecraft:ink_sac" + ], + "result": { + "id": "mineralogy:drywall_black", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/drywall_blue.json b/src/main/resources/data/mineralogy/recipe/drywall_blue.json index 58613048b..678e6b9d1 100644 --- a/src/main/resources/data/mineralogy/recipe/drywall_blue.json +++ b/src/main/resources/data/mineralogy/recipe/drywall_blue.json @@ -1,22 +1,18 @@ { - "neoforge:conditions": [ - { - "type": "mineralogy:config", - "flag": "ENABLE_DRYWALLS" - } - ], - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "tag": "mineralogy:drywall/white" - }, - { - "item": "minecraft:lapis_lazuli" - } - ], - "result": { - "id": "mineralogy:drywall_blue", - "count": 1 - } + "neoforge:conditions": [ + { + "type": "mineralogy:config", + "flag": "ENABLE_DRYWALLS" + } + ], + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "#mineralogy:drywall/white", + "minecraft:lapis_lazuli" + ], + "result": { + "id": "mineralogy:drywall_blue", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/drywall_brown.json b/src/main/resources/data/mineralogy/recipe/drywall_brown.json index 8a3c84b42..8c9cab89f 100644 --- a/src/main/resources/data/mineralogy/recipe/drywall_brown.json +++ b/src/main/resources/data/mineralogy/recipe/drywall_brown.json @@ -1,22 +1,18 @@ { - "neoforge:conditions": [ - { - "type": "mineralogy:config", - "flag": "ENABLE_DRYWALLS" - } - ], - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "tag": "mineralogy:drywall/white" - }, - { - "item": "minecraft:cocoa_beans" - } - ], - "result": { - "id": "mineralogy:drywall_brown", - "count": 1 - } + "neoforge:conditions": [ + { + "type": "mineralogy:config", + "flag": "ENABLE_DRYWALLS" + } + ], + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "#mineralogy:drywall/white", + "minecraft:cocoa_beans" + ], + "result": { + "id": "mineralogy:drywall_brown", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/drywall_cyan.json b/src/main/resources/data/mineralogy/recipe/drywall_cyan.json index 363692a34..c94f6ff64 100644 --- a/src/main/resources/data/mineralogy/recipe/drywall_cyan.json +++ b/src/main/resources/data/mineralogy/recipe/drywall_cyan.json @@ -1,22 +1,18 @@ { - "neoforge:conditions": [ - { - "type": "mineralogy:config", - "flag": "ENABLE_DRYWALLS" - } - ], - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "tag": "mineralogy:drywall/white" - }, - { - "item": "minecraft:cyan_dye" - } - ], - "result": { - "id": "mineralogy:drywall_cyan", - "count": 1 - } + "neoforge:conditions": [ + { + "type": "mineralogy:config", + "flag": "ENABLE_DRYWALLS" + } + ], + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "#mineralogy:drywall/white", + "minecraft:cyan_dye" + ], + "result": { + "id": "mineralogy:drywall_cyan", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/drywall_gray.json b/src/main/resources/data/mineralogy/recipe/drywall_gray.json index 4170c7ca6..71e2bb4cd 100644 --- a/src/main/resources/data/mineralogy/recipe/drywall_gray.json +++ b/src/main/resources/data/mineralogy/recipe/drywall_gray.json @@ -1,22 +1,18 @@ { - "neoforge:conditions": [ - { - "type": "mineralogy:config", - "flag": "ENABLE_DRYWALLS" - } - ], - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "tag": "mineralogy:drywall/white" - }, - { - "item": "minecraft:gray_dye" - } - ], - "result": { - "id": "mineralogy:drywall_gray", - "count": 1 - } + "neoforge:conditions": [ + { + "type": "mineralogy:config", + "flag": "ENABLE_DRYWALLS" + } + ], + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "#mineralogy:drywall/white", + "minecraft:gray_dye" + ], + "result": { + "id": "mineralogy:drywall_gray", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/drywall_green.json b/src/main/resources/data/mineralogy/recipe/drywall_green.json index a3616952a..14a5740ea 100644 --- a/src/main/resources/data/mineralogy/recipe/drywall_green.json +++ b/src/main/resources/data/mineralogy/recipe/drywall_green.json @@ -1,22 +1,18 @@ { - "neoforge:conditions": [ - { - "type": "mineralogy:config", - "flag": "ENABLE_DRYWALLS" - } - ], - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "tag": "mineralogy:drywall/white" - }, - { - "item": "minecraft:green_dye" - } - ], - "result": { - "id": "mineralogy:drywall_green", - "count": 1 - } + "neoforge:conditions": [ + { + "type": "mineralogy:config", + "flag": "ENABLE_DRYWALLS" + } + ], + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "#mineralogy:drywall/white", + "minecraft:green_dye" + ], + "result": { + "id": "mineralogy:drywall_green", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/drywall_light_blue.json b/src/main/resources/data/mineralogy/recipe/drywall_light_blue.json index 7195359b3..614dcd0d1 100644 --- a/src/main/resources/data/mineralogy/recipe/drywall_light_blue.json +++ b/src/main/resources/data/mineralogy/recipe/drywall_light_blue.json @@ -1,22 +1,18 @@ { - "neoforge:conditions": [ - { - "type": "mineralogy:config", - "flag": "ENABLE_DRYWALLS" - } - ], - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "tag": "mineralogy:drywall/white" - }, - { - "item": "minecraft:light_blue_dye" - } - ], - "result": { - "id": "mineralogy:drywall_light_blue", - "count": 1 - } + "neoforge:conditions": [ + { + "type": "mineralogy:config", + "flag": "ENABLE_DRYWALLS" + } + ], + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "#mineralogy:drywall/white", + "minecraft:light_blue_dye" + ], + "result": { + "id": "mineralogy:drywall_light_blue", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/drywall_lime.json b/src/main/resources/data/mineralogy/recipe/drywall_lime.json index 53fcd4b36..aab06a909 100644 --- a/src/main/resources/data/mineralogy/recipe/drywall_lime.json +++ b/src/main/resources/data/mineralogy/recipe/drywall_lime.json @@ -1,22 +1,18 @@ { - "neoforge:conditions": [ - { - "type": "mineralogy:config", - "flag": "ENABLE_DRYWALLS" - } - ], - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "tag": "mineralogy:drywall/white" - }, - { - "item": "minecraft:lime_dye" - } - ], - "result": { - "id": "mineralogy:drywall_lime", - "count": 1 - } + "neoforge:conditions": [ + { + "type": "mineralogy:config", + "flag": "ENABLE_DRYWALLS" + } + ], + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "#mineralogy:drywall/white", + "minecraft:lime_dye" + ], + "result": { + "id": "mineralogy:drywall_lime", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/drywall_magenta.json b/src/main/resources/data/mineralogy/recipe/drywall_magenta.json index be6b58302..7bceb93c9 100644 --- a/src/main/resources/data/mineralogy/recipe/drywall_magenta.json +++ b/src/main/resources/data/mineralogy/recipe/drywall_magenta.json @@ -1,22 +1,18 @@ { - "neoforge:conditions": [ - { - "type": "mineralogy:config", - "flag": "ENABLE_DRYWALLS" - } - ], - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "tag": "mineralogy:drywall/white" - }, - { - "item": "minecraft:magenta_dye" - } - ], - "result": { - "id": "mineralogy:drywall_magenta", - "count": 1 - } + "neoforge:conditions": [ + { + "type": "mineralogy:config", + "flag": "ENABLE_DRYWALLS" + } + ], + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "#mineralogy:drywall/white", + "minecraft:magenta_dye" + ], + "result": { + "id": "mineralogy:drywall_magenta", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/drywall_orange.json b/src/main/resources/data/mineralogy/recipe/drywall_orange.json index 9e4665892..44f1bd0d3 100644 --- a/src/main/resources/data/mineralogy/recipe/drywall_orange.json +++ b/src/main/resources/data/mineralogy/recipe/drywall_orange.json @@ -1,22 +1,18 @@ { - "neoforge:conditions": [ - { - "type": "mineralogy:config", - "flag": "ENABLE_DRYWALLS" - } - ], - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "tag": "mineralogy:drywall/white" - }, - { - "item": "minecraft:orange_dye" - } - ], - "result": { - "id": "mineralogy:drywall_orange", - "count": 1 - } + "neoforge:conditions": [ + { + "type": "mineralogy:config", + "flag": "ENABLE_DRYWALLS" + } + ], + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "#mineralogy:drywall/white", + "minecraft:orange_dye" + ], + "result": { + "id": "mineralogy:drywall_orange", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/drywall_pink.json b/src/main/resources/data/mineralogy/recipe/drywall_pink.json index 8d8ab40a0..0155c9b5b 100644 --- a/src/main/resources/data/mineralogy/recipe/drywall_pink.json +++ b/src/main/resources/data/mineralogy/recipe/drywall_pink.json @@ -1,22 +1,18 @@ { - "neoforge:conditions": [ - { - "type": "mineralogy:config", - "flag": "ENABLE_DRYWALLS" - } - ], - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "tag": "mineralogy:drywall/white" - }, - { - "item": "minecraft:pink_dye" - } - ], - "result": { - "id": "mineralogy:drywall_pink", - "count": 1 - } + "neoforge:conditions": [ + { + "type": "mineralogy:config", + "flag": "ENABLE_DRYWALLS" + } + ], + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "#mineralogy:drywall/white", + "minecraft:pink_dye" + ], + "result": { + "id": "mineralogy:drywall_pink", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/drywall_purple.json b/src/main/resources/data/mineralogy/recipe/drywall_purple.json index c2dd6290b..d60374b4d 100644 --- a/src/main/resources/data/mineralogy/recipe/drywall_purple.json +++ b/src/main/resources/data/mineralogy/recipe/drywall_purple.json @@ -1,22 +1,18 @@ { - "neoforge:conditions": [ - { - "type": "mineralogy:config", - "flag": "ENABLE_DRYWALLS" - } - ], - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "tag": "mineralogy:drywall/white" - }, - { - "item": "minecraft:purple_dye" - } - ], - "result": { - "id": "mineralogy:drywall_purple", - "count": 1 - } + "neoforge:conditions": [ + { + "type": "mineralogy:config", + "flag": "ENABLE_DRYWALLS" + } + ], + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "#mineralogy:drywall/white", + "minecraft:purple_dye" + ], + "result": { + "id": "mineralogy:drywall_purple", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/drywall_red.json b/src/main/resources/data/mineralogy/recipe/drywall_red.json index 87d87afd6..779890152 100644 --- a/src/main/resources/data/mineralogy/recipe/drywall_red.json +++ b/src/main/resources/data/mineralogy/recipe/drywall_red.json @@ -1,22 +1,18 @@ { - "neoforge:conditions": [ - { - "type": "mineralogy:config", - "flag": "ENABLE_DRYWALLS" - } - ], - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "tag": "mineralogy:drywall/white" - }, - { - "item": "minecraft:red_dye" - } - ], - "result": { - "id": "mineralogy:drywall_red", - "count": 1 - } + "neoforge:conditions": [ + { + "type": "mineralogy:config", + "flag": "ENABLE_DRYWALLS" + } + ], + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "#mineralogy:drywall/white", + "minecraft:red_dye" + ], + "result": { + "id": "mineralogy:drywall_red", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/drywall_silver.json b/src/main/resources/data/mineralogy/recipe/drywall_silver.json index 9d750bf2f..105d17d24 100644 --- a/src/main/resources/data/mineralogy/recipe/drywall_silver.json +++ b/src/main/resources/data/mineralogy/recipe/drywall_silver.json @@ -1,22 +1,18 @@ { - "neoforge:conditions": [ - { - "type": "mineralogy:config", - "flag": "ENABLE_DRYWALLS" - } - ], - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "tag": "mineralogy:drywall/white" - }, - { - "item": "minecraft:light_gray_dye" - } - ], - "result": { - "id": "mineralogy:drywall_silver", - "count": 1 - } + "neoforge:conditions": [ + { + "type": "mineralogy:config", + "flag": "ENABLE_DRYWALLS" + } + ], + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "#mineralogy:drywall/white", + "minecraft:light_gray_dye" + ], + "result": { + "id": "mineralogy:drywall_silver", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/drywall_white.json b/src/main/resources/data/mineralogy/recipe/drywall_white.json index 55ca0c6d5..a524c1022 100644 --- a/src/main/resources/data/mineralogy/recipe/drywall_white.json +++ b/src/main/resources/data/mineralogy/recipe/drywall_white.json @@ -1,22 +1,18 @@ { - "neoforge:conditions": [ - { - "type": "mineralogy:config", - "flag": "ENABLE_DRYWALLS" - } - ], - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "tag": "mineralogy:drywall/white" - }, - { - "item": "minecraft:bone_meal" - } - ], - "result": { - "id": "mineralogy:drywall_white", - "count": 1 - } + "neoforge:conditions": [ + { + "type": "mineralogy:config", + "flag": "ENABLE_DRYWALLS" + } + ], + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "#mineralogy:drywall/white", + "minecraft:bone_meal" + ], + "result": { + "id": "mineralogy:drywall_white", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/drywall_yellow.json b/src/main/resources/data/mineralogy/recipe/drywall_yellow.json index d181aecdc..b5bc29cf5 100644 --- a/src/main/resources/data/mineralogy/recipe/drywall_yellow.json +++ b/src/main/resources/data/mineralogy/recipe/drywall_yellow.json @@ -1,22 +1,18 @@ { - "neoforge:conditions": [ - { - "type": "mineralogy:config", - "flag": "ENABLE_DRYWALLS" - } - ], - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "tag": "mineralogy:drywall/white" - }, - { - "item": "minecraft:yellow_dye" - } - ], - "result": { - "id": "mineralogy:drywall_yellow", - "count": 1 - } + "neoforge:conditions": [ + { + "type": "mineralogy:config", + "flag": "ENABLE_DRYWALLS" + } + ], + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "#mineralogy:drywall/white", + "minecraft:yellow_dye" + ], + "result": { + "id": "mineralogy:drywall_yellow", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/gabbro_brick.json b/src/main/resources/data/mineralogy/recipe/gabbro_brick.json index dceb83fb6..28d549789 100644 --- a/src/main/resources/data/mineralogy/recipe/gabbro_brick.json +++ b/src/main/resources/data/mineralogy/recipe/gabbro_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/gabbro" - } - }, - "result": { - "id": "mineralogy:gabbro_brick", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "#mineralogy:stones/gabbro" + }, + "result": { + "id": "mineralogy:gabbro_brick", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/gabbro_brick_block_polishing.json b/src/main/resources/data/mineralogy/recipe/gabbro_brick_block_polishing.json index cbc0af85f..5a836bae3 100644 --- a/src/main/resources/data/mineralogy/recipe/gabbro_brick_block_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/gabbro_brick_block_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:gabbro_brick" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:gabbro_smooth_brick", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:gabbro_brick", + "#c:sands" + ], + "result": { + "id": "mineralogy:gabbro_smooth_brick", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/gabbro_brick_furnace.json b/src/main/resources/data/mineralogy/recipe/gabbro_brick_furnace.json index f8e94ffba..ef27481d7 100644 --- a/src/main/resources/data/mineralogy/recipe/gabbro_brick_furnace.json +++ b/src/main/resources/data/mineralogy/recipe/gabbro_brick_furnace.json @@ -1,22 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "xxx", - "xyx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:slabs/gabbro/brick" - }, - "y": { - "item": "minecraft:furnace" - } - }, - "result": { - "id": "mineralogy:gabbro_brick_furnace", - "count": 1 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "xxx", + "xyx", + "xxx" + ], + "key": { + "x": "#mineralogy:slabs/gabbro/brick", + "y": "minecraft:furnace" + }, + "result": { + "id": "mineralogy:gabbro_brick_furnace", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/gabbro_brick_slab.json b/src/main/resources/data/mineralogy/recipe/gabbro_brick_slab.json index a9edd467d..c1a2eb151 100644 --- a/src/main/resources/data/mineralogy/recipe/gabbro_brick_slab.json +++ b/src/main/resources/data/mineralogy/recipe/gabbro_brick_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:gabbro_brick" - } - }, - "result": { - "id": "mineralogy:gabbro_brick_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:gabbro_brick" + }, + "result": { + "id": "mineralogy:gabbro_brick_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/gabbro_brick_slab_polishing.json b/src/main/resources/data/mineralogy/recipe/gabbro_brick_slab_polishing.json index e9275d3e4..bc788887e 100644 --- a/src/main/resources/data/mineralogy/recipe/gabbro_brick_slab_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/gabbro_brick_slab_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:gabbro_brick_slab" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:gabbro_smooth_brick_slab", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:gabbro_brick_slab", + "#c:sands" + ], + "result": { + "id": "mineralogy:gabbro_smooth_brick_slab", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/gabbro_brick_slab_recombination.json b/src/main/resources/data/mineralogy/recipe/gabbro_brick_slab_recombination.json index 86dcde2c8..7713f185e 100644 --- a/src/main/resources/data/mineralogy/recipe/gabbro_brick_slab_recombination.json +++ b/src/main/resources/data/mineralogy/recipe/gabbro_brick_slab_recombination.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:gabbro_brick_slab" - }, - { - "item": "mineralogy:gabbro_brick_slab" - } - ], - "result": { - "id": "mineralogy:gabbro_brick", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:gabbro_brick_slab", + "mineralogy:gabbro_brick_slab" + ], + "result": { + "id": "mineralogy:gabbro_brick", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/gabbro_brick_stairs.json b/src/main/resources/data/mineralogy/recipe/gabbro_brick_stairs.json index 78fe38c3a..4665e280d 100644 --- a/src/main/resources/data/mineralogy/recipe/gabbro_brick_stairs.json +++ b/src/main/resources/data/mineralogy/recipe/gabbro_brick_stairs.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - "xx ", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/gabbro/brick" - } - }, - "result": { - "id": "mineralogy:gabbro_brick_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + "xx ", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/gabbro/brick" + }, + "result": { + "id": "mineralogy:gabbro_brick_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/gabbro_brick_stairs_polishing.json b/src/main/resources/data/mineralogy/recipe/gabbro_brick_stairs_polishing.json index 6db2ff6ea..3ce06584c 100644 --- a/src/main/resources/data/mineralogy/recipe/gabbro_brick_stairs_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/gabbro_brick_stairs_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:gabbro_brick_stairs" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:gabbro_smooth_brick_stairs", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:gabbro_brick_stairs", + "#c:sands" + ], + "result": { + "id": "mineralogy:gabbro_smooth_brick_stairs", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/gabbro_brick_wall.json b/src/main/resources/data/mineralogy/recipe/gabbro_brick_wall.json index 4ee4d5498..23a79072a 100644 --- a/src/main/resources/data/mineralogy/recipe/gabbro_brick_wall.json +++ b/src/main/resources/data/mineralogy/recipe/gabbro_brick_wall.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/gabbro/brick" - } - }, - "result": { - "id": "mineralogy:gabbro_brick_wall", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/gabbro/brick" + }, + "result": { + "id": "mineralogy:gabbro_brick_wall", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/gabbro_brick_wall_polishing.json b/src/main/resources/data/mineralogy/recipe/gabbro_brick_wall_polishing.json index d42cd22f5..686a5d1ce 100644 --- a/src/main/resources/data/mineralogy/recipe/gabbro_brick_wall_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/gabbro_brick_wall_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:gabbro_brick_wall" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:gabbro_smooth_brick_wall", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:gabbro_brick_wall", + "#c:sands" + ], + "result": { + "id": "mineralogy:gabbro_smooth_brick_wall", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/gabbro_cobblestone.json b/src/main/resources/data/mineralogy/recipe/gabbro_cobblestone.json index 626c76a4a..fe80efae5 100644 --- a/src/main/resources/data/mineralogy/recipe/gabbro_cobblestone.json +++ b/src/main/resources/data/mineralogy/recipe/gabbro_cobblestone.json @@ -1,22 +1,14 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "tag": "mineralogy:stones/gabbro" - }, - { - "tag": "mineralogy:stones/gabbro" - }, - { - "item": "minecraft:gravel" - }, - { - "item": "minecraft:gravel" - } - ], - "result": { - "id": "minecraft:cobblestone", - "count": 4 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "#mineralogy:stones/gabbro", + "#mineralogy:stones/gabbro", + "minecraft:gravel", + "minecraft:gravel" + ], + "result": { + "id": "minecraft:cobblestone", + "count": 4 + } } diff --git a/src/main/resources/data/mineralogy/recipe/gabbro_furnace.json b/src/main/resources/data/mineralogy/recipe/gabbro_furnace.json index 12cc9d44e..97a651a36 100644 --- a/src/main/resources/data/mineralogy/recipe/gabbro_furnace.json +++ b/src/main/resources/data/mineralogy/recipe/gabbro_furnace.json @@ -1,22 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "xxx", - "xyx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:slabs/gabbro" - }, - "y": { - "item": "minecraft:furnace" - } - }, - "result": { - "id": "mineralogy:gabbro_furnace", - "count": 1 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "xxx", + "xyx", + "xxx" + ], + "key": { + "x": "#mineralogy:slabs/gabbro", + "y": "minecraft:furnace" + }, + "result": { + "id": "mineralogy:gabbro_furnace", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/gabbro_polished_brick_slab_recombination.json b/src/main/resources/data/mineralogy/recipe/gabbro_polished_brick_slab_recombination.json index 882a04489..67a1ce2de 100644 --- a/src/main/resources/data/mineralogy/recipe/gabbro_polished_brick_slab_recombination.json +++ b/src/main/resources/data/mineralogy/recipe/gabbro_polished_brick_slab_recombination.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:gabbro_smooth_brick_slab" - }, - { - "item": "mineralogy:gabbro_smooth_brick_slab" - } - ], - "result": { - "id": "mineralogy:gabbro_smooth_brick", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:gabbro_smooth_brick_slab", + "mineralogy:gabbro_smooth_brick_slab" + ], + "result": { + "id": "mineralogy:gabbro_smooth_brick", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/gabbro_polished_slab_recombination.json b/src/main/resources/data/mineralogy/recipe/gabbro_polished_slab_recombination.json index f4420dce1..64398cae9 100644 --- a/src/main/resources/data/mineralogy/recipe/gabbro_polished_slab_recombination.json +++ b/src/main/resources/data/mineralogy/recipe/gabbro_polished_slab_recombination.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:gabbro_smooth_slab" - }, - { - "item": "mineralogy:gabbro_smooth_slab" - } - ], - "result": { - "id": "mineralogy:gabbro_smooth", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:gabbro_smooth_slab", + "mineralogy:gabbro_smooth_slab" + ], + "result": { + "id": "mineralogy:gabbro_smooth", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/gabbro_polished_slabs_to_brick.json b/src/main/resources/data/mineralogy/recipe/gabbro_polished_slabs_to_brick.json index 1ac17d1eb..22ffb4735 100644 --- a/src/main/resources/data/mineralogy/recipe/gabbro_polished_slabs_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/gabbro_polished_slabs_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:gabbro_smooth_slab" - } - }, - "result": { - "id": "mineralogy:gabbro_smooth_brick_slab", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:gabbro_smooth_slab" + }, + "result": { + "id": "mineralogy:gabbro_smooth_brick_slab", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/gabbro_polished_stairs_to_brick.json b/src/main/resources/data/mineralogy/recipe/gabbro_polished_stairs_to_brick.json index 11d2f0578..5f37e0cd7 100644 --- a/src/main/resources/data/mineralogy/recipe/gabbro_polished_stairs_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/gabbro_polished_stairs_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:gabbro_smooth_stairs" - } - }, - "result": { - "id": "mineralogy:gabbro_smooth_brick_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:gabbro_smooth_stairs" + }, + "result": { + "id": "mineralogy:gabbro_smooth_brick_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/gabbro_polished_walls_to_brick.json b/src/main/resources/data/mineralogy/recipe/gabbro_polished_walls_to_brick.json index bc1fdc918..ea80abe23 100644 --- a/src/main/resources/data/mineralogy/recipe/gabbro_polished_walls_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/gabbro_polished_walls_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:gabbro_smooth_wall" - } - }, - "result": { - "id": "mineralogy:gabbro_smooth_brick_wall", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:gabbro_smooth_wall" + }, + "result": { + "id": "mineralogy:gabbro_smooth_brick_wall", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/gabbro_raw_slab_polishing.json b/src/main/resources/data/mineralogy/recipe/gabbro_raw_slab_polishing.json index 1380d058d..e49eedeb5 100644 --- a/src/main/resources/data/mineralogy/recipe/gabbro_raw_slab_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/gabbro_raw_slab_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:gabbro_slab" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:gabbro_smooth_slab", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:gabbro_slab", + "#c:sands" + ], + "result": { + "id": "mineralogy:gabbro_smooth_slab", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/gabbro_raw_slab_recombination.json b/src/main/resources/data/mineralogy/recipe/gabbro_raw_slab_recombination.json index 1de7b348f..0a44caac2 100644 --- a/src/main/resources/data/mineralogy/recipe/gabbro_raw_slab_recombination.json +++ b/src/main/resources/data/mineralogy/recipe/gabbro_raw_slab_recombination.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:gabbro_slab" - }, - { - "item": "mineralogy:gabbro_slab" - } - ], - "result": { - "id": "mineralogy:gabbro", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:gabbro_slab", + "mineralogy:gabbro_slab" + ], + "result": { + "id": "mineralogy:gabbro", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/gabbro_raw_slabs_to_brick.json b/src/main/resources/data/mineralogy/recipe/gabbro_raw_slabs_to_brick.json index d6f861f42..79772786c 100644 --- a/src/main/resources/data/mineralogy/recipe/gabbro_raw_slabs_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/gabbro_raw_slabs_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:gabbro_slab" - } - }, - "result": { - "id": "mineralogy:gabbro_brick_slab", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:gabbro_slab" + }, + "result": { + "id": "mineralogy:gabbro_brick_slab", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/gabbro_raw_stairs_polishing.json b/src/main/resources/data/mineralogy/recipe/gabbro_raw_stairs_polishing.json index 17a3100a0..33d466797 100644 --- a/src/main/resources/data/mineralogy/recipe/gabbro_raw_stairs_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/gabbro_raw_stairs_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:gabbro_stairs" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:gabbro_smooth_stairs", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:gabbro_stairs", + "#c:sands" + ], + "result": { + "id": "mineralogy:gabbro_smooth_stairs", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/gabbro_raw_stairs_to_brick.json b/src/main/resources/data/mineralogy/recipe/gabbro_raw_stairs_to_brick.json index 3975dcccc..a821d456c 100644 --- a/src/main/resources/data/mineralogy/recipe/gabbro_raw_stairs_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/gabbro_raw_stairs_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:gabbro_stairs" - } - }, - "result": { - "id": "mineralogy:gabbro_brick_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:gabbro_stairs" + }, + "result": { + "id": "mineralogy:gabbro_brick_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/gabbro_raw_wall_polishing.json b/src/main/resources/data/mineralogy/recipe/gabbro_raw_wall_polishing.json index 3193f43c7..32f679b31 100644 --- a/src/main/resources/data/mineralogy/recipe/gabbro_raw_wall_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/gabbro_raw_wall_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:gabbro_wall" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:gabbro_smooth_wall", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:gabbro_wall", + "#c:sands" + ], + "result": { + "id": "mineralogy:gabbro_smooth_wall", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/gabbro_raw_walls_to_brick.json b/src/main/resources/data/mineralogy/recipe/gabbro_raw_walls_to_brick.json index 2f25690da..76f51a6a2 100644 --- a/src/main/resources/data/mineralogy/recipe/gabbro_raw_walls_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/gabbro_raw_walls_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:gabbro_wall" - } - }, - "result": { - "id": "mineralogy:gabbro_brick_wall", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:gabbro_wall" + }, + "result": { + "id": "mineralogy:gabbro_brick_wall", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/gabbro_relief_axe.json b/src/main/resources/data/mineralogy/recipe/gabbro_relief_axe.json index ae40bc543..fb7bd6cd7 100644 --- a/src/main/resources/data/mineralogy/recipe/gabbro_relief_axe.json +++ b/src/main/resources/data/mineralogy/recipe/gabbro_relief_axe.json @@ -1,37 +1,19 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:gabbro_relief_blank" - }, - { - "item": "mineralogy:gabbro_relief_blank" - }, - { - "item": "mineralogy:gabbro_relief_blank" - }, - { - "item": "mineralogy:gabbro_relief_blank" - }, - { - "item": "mineralogy:gabbro_relief_blank" - }, - { - "item": "mineralogy:gabbro_relief_blank" - }, - { - "item": "mineralogy:gabbro_relief_blank" - }, - { - "item": "mineralogy:gabbro_relief_blank" - }, - { - "item": "minecraft:stone_axe" - } - ], - "result": { - "id": "mineralogy:gabbro_relief_axe", - "count": 8 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:gabbro_relief_blank", + "mineralogy:gabbro_relief_blank", + "mineralogy:gabbro_relief_blank", + "mineralogy:gabbro_relief_blank", + "mineralogy:gabbro_relief_blank", + "mineralogy:gabbro_relief_blank", + "mineralogy:gabbro_relief_blank", + "mineralogy:gabbro_relief_blank", + "minecraft:stone_axe" + ], + "result": { + "id": "mineralogy:gabbro_relief_axe", + "count": 8 + } } diff --git a/src/main/resources/data/mineralogy/recipe/gabbro_relief_blank.json b/src/main/resources/data/mineralogy/recipe/gabbro_relief_blank.json index e5ecb9322..810e6d9e6 100644 --- a/src/main/resources/data/mineralogy/recipe/gabbro_relief_blank.json +++ b/src/main/resources/data/mineralogy/recipe/gabbro_relief_blank.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx", - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:gabbro_smooth" - } - }, - "result": { - "id": "mineralogy:gabbro_relief_blank", - "count": 16 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx", + "xxx" + ], + "key": { + "x": "mineralogy:gabbro_smooth" + }, + "result": { + "id": "mineralogy:gabbro_relief_blank", + "count": 16 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/gabbro_relief_cross.json b/src/main/resources/data/mineralogy/recipe/gabbro_relief_cross.json index b9a95dce1..ddf4dd075 100644 --- a/src/main/resources/data/mineralogy/recipe/gabbro_relief_cross.json +++ b/src/main/resources/data/mineralogy/recipe/gabbro_relief_cross.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x x", - " ", - "x x" - ], - "key": { - "x": { - "item": "mineralogy:gabbro_relief_blank" - } - }, - "result": { - "id": "mineralogy:gabbro_relief_cross", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x x", + " ", + "x x" + ], + "key": { + "x": "mineralogy:gabbro_relief_blank" + }, + "result": { + "id": "mineralogy:gabbro_relief_cross", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/gabbro_relief_hammer.json b/src/main/resources/data/mineralogy/recipe/gabbro_relief_hammer.json index d97cba699..1e11bc2c0 100644 --- a/src/main/resources/data/mineralogy/recipe/gabbro_relief_hammer.json +++ b/src/main/resources/data/mineralogy/recipe/gabbro_relief_hammer.json @@ -1,25 +1,19 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "zxz", - "zyz", - "zzz" - ], - "key": { - "x": { - "item": "mineralogy:gabbro_smooth" - }, - "y": { - "item": "minecraft:stick" - }, - "z": { - "item": "mineralogy:gabbro_relief_blank" - } - }, - "result": { - "id": "mineralogy:gabbro_relief_hammer", - "count": 7 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "zxz", + "zyz", + "zzz" + ], + "key": { + "x": "mineralogy:gabbro_smooth", + "y": "minecraft:stick", + "z": "mineralogy:gabbro_relief_blank" + }, + "result": { + "id": "mineralogy:gabbro_relief_hammer", + "count": 7 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/gabbro_relief_hoe.json b/src/main/resources/data/mineralogy/recipe/gabbro_relief_hoe.json index d4a5d31d7..6dc8985c8 100644 --- a/src/main/resources/data/mineralogy/recipe/gabbro_relief_hoe.json +++ b/src/main/resources/data/mineralogy/recipe/gabbro_relief_hoe.json @@ -1,37 +1,19 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:gabbro_relief_blank" - }, - { - "item": "mineralogy:gabbro_relief_blank" - }, - { - "item": "mineralogy:gabbro_relief_blank" - }, - { - "item": "mineralogy:gabbro_relief_blank" - }, - { - "item": "mineralogy:gabbro_relief_blank" - }, - { - "item": "mineralogy:gabbro_relief_blank" - }, - { - "item": "mineralogy:gabbro_relief_blank" - }, - { - "item": "mineralogy:gabbro_relief_blank" - }, - { - "item": "minecraft:stone_hoe" - } - ], - "result": { - "id": "mineralogy:gabbro_relief_hoe", - "count": 8 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:gabbro_relief_blank", + "mineralogy:gabbro_relief_blank", + "mineralogy:gabbro_relief_blank", + "mineralogy:gabbro_relief_blank", + "mineralogy:gabbro_relief_blank", + "mineralogy:gabbro_relief_blank", + "mineralogy:gabbro_relief_blank", + "mineralogy:gabbro_relief_blank", + "minecraft:stone_hoe" + ], + "result": { + "id": "mineralogy:gabbro_relief_hoe", + "count": 8 + } } diff --git a/src/main/resources/data/mineralogy/recipe/gabbro_relief_horizontal.json b/src/main/resources/data/mineralogy/recipe/gabbro_relief_horizontal.json index 81696e599..81a07c010 100644 --- a/src/main/resources/data/mineralogy/recipe/gabbro_relief_horizontal.json +++ b/src/main/resources/data/mineralogy/recipe/gabbro_relief_horizontal.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:gabbro_relief_blank" - } - }, - "result": { - "id": "mineralogy:gabbro_relief_horizontal", - "count": 3 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:gabbro_relief_blank" + }, + "result": { + "id": "mineralogy:gabbro_relief_horizontal", + "count": 3 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/gabbro_relief_i.json b/src/main/resources/data/mineralogy/recipe/gabbro_relief_i.json index fee080f2c..b85d9b4ca 100644 --- a/src/main/resources/data/mineralogy/recipe/gabbro_relief_i.json +++ b/src/main/resources/data/mineralogy/recipe/gabbro_relief_i.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - " x ", - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:gabbro_relief_blank" - } - }, - "result": { - "id": "mineralogy:gabbro_relief_i", - "count": 7 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + " x ", + "xxx" + ], + "key": { + "x": "mineralogy:gabbro_relief_blank" + }, + "result": { + "id": "mineralogy:gabbro_relief_i", + "count": 7 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/gabbro_relief_left.json b/src/main/resources/data/mineralogy/recipe/gabbro_relief_left.json index 5d5c4bbea..d7dc21869 100644 --- a/src/main/resources/data/mineralogy/recipe/gabbro_relief_left.json +++ b/src/main/resources/data/mineralogy/recipe/gabbro_relief_left.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - " x ", - " x" - ], - "key": { - "x": { - "item": "mineralogy:gabbro_relief_blank" - } - }, - "result": { - "id": "mineralogy:gabbro_relief_left", - "count": 3 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + " x ", + " x" + ], + "key": { + "x": "mineralogy:gabbro_relief_blank" + }, + "result": { + "id": "mineralogy:gabbro_relief_left", + "count": 3 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/gabbro_relief_pickaxe.json b/src/main/resources/data/mineralogy/recipe/gabbro_relief_pickaxe.json index 87998cffb..e5be4eb1d 100644 --- a/src/main/resources/data/mineralogy/recipe/gabbro_relief_pickaxe.json +++ b/src/main/resources/data/mineralogy/recipe/gabbro_relief_pickaxe.json @@ -1,37 +1,19 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:gabbro_relief_blank" - }, - { - "item": "mineralogy:gabbro_relief_blank" - }, - { - "item": "mineralogy:gabbro_relief_blank" - }, - { - "item": "mineralogy:gabbro_relief_blank" - }, - { - "item": "mineralogy:gabbro_relief_blank" - }, - { - "item": "mineralogy:gabbro_relief_blank" - }, - { - "item": "mineralogy:gabbro_relief_blank" - }, - { - "item": "mineralogy:gabbro_relief_blank" - }, - { - "item": "minecraft:stone_pickaxe" - } - ], - "result": { - "id": "mineralogy:gabbro_relief_pickaxe", - "count": 8 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:gabbro_relief_blank", + "mineralogy:gabbro_relief_blank", + "mineralogy:gabbro_relief_blank", + "mineralogy:gabbro_relief_blank", + "mineralogy:gabbro_relief_blank", + "mineralogy:gabbro_relief_blank", + "mineralogy:gabbro_relief_blank", + "mineralogy:gabbro_relief_blank", + "minecraft:stone_pickaxe" + ], + "result": { + "id": "mineralogy:gabbro_relief_pickaxe", + "count": 8 + } } diff --git a/src/main/resources/data/mineralogy/recipe/gabbro_relief_plus.json b/src/main/resources/data/mineralogy/recipe/gabbro_relief_plus.json index e9c9003e2..d2bd3440b 100644 --- a/src/main/resources/data/mineralogy/recipe/gabbro_relief_plus.json +++ b/src/main/resources/data/mineralogy/recipe/gabbro_relief_plus.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - " x ", - "xxx", - " x " - ], - "key": { - "x": { - "item": "mineralogy:gabbro_relief_blank" - } - }, - "result": { - "id": "mineralogy:gabbro_relief_plus", - "count": 5 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + " x ", + "xxx", + " x " + ], + "key": { + "x": "mineralogy:gabbro_relief_blank" + }, + "result": { + "id": "mineralogy:gabbro_relief_plus", + "count": 5 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/gabbro_relief_right.json b/src/main/resources/data/mineralogy/recipe/gabbro_relief_right.json index 6e8fcce55..ef2bad4e2 100644 --- a/src/main/resources/data/mineralogy/recipe/gabbro_relief_right.json +++ b/src/main/resources/data/mineralogy/recipe/gabbro_relief_right.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:gabbro_relief_left" - }, - { - "item": "mineralogy:gabbro_relief_left" - } - ], - "result": { - "id": "mineralogy:gabbro_relief_right", - "count": 2 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:gabbro_relief_left", + "mineralogy:gabbro_relief_left" + ], + "result": { + "id": "mineralogy:gabbro_relief_right", + "count": 2 + } } diff --git a/src/main/resources/data/mineralogy/recipe/gabbro_relief_sword.json b/src/main/resources/data/mineralogy/recipe/gabbro_relief_sword.json index f629677cf..36d03489c 100644 --- a/src/main/resources/data/mineralogy/recipe/gabbro_relief_sword.json +++ b/src/main/resources/data/mineralogy/recipe/gabbro_relief_sword.json @@ -1,37 +1,19 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:gabbro_relief_blank" - }, - { - "item": "mineralogy:gabbro_relief_blank" - }, - { - "item": "mineralogy:gabbro_relief_blank" - }, - { - "item": "mineralogy:gabbro_relief_blank" - }, - { - "item": "mineralogy:gabbro_relief_blank" - }, - { - "item": "mineralogy:gabbro_relief_blank" - }, - { - "item": "mineralogy:gabbro_relief_blank" - }, - { - "item": "mineralogy:gabbro_relief_blank" - }, - { - "item": "minecraft:stone_sword" - } - ], - "result": { - "id": "mineralogy:gabbro_relief_sword", - "count": 8 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:gabbro_relief_blank", + "mineralogy:gabbro_relief_blank", + "mineralogy:gabbro_relief_blank", + "mineralogy:gabbro_relief_blank", + "mineralogy:gabbro_relief_blank", + "mineralogy:gabbro_relief_blank", + "mineralogy:gabbro_relief_blank", + "mineralogy:gabbro_relief_blank", + "minecraft:stone_sword" + ], + "result": { + "id": "mineralogy:gabbro_relief_sword", + "count": 8 + } } diff --git a/src/main/resources/data/mineralogy/recipe/gabbro_relief_vertical.json b/src/main/resources/data/mineralogy/recipe/gabbro_relief_vertical.json index 376fab5a9..97ddb1f65 100644 --- a/src/main/resources/data/mineralogy/recipe/gabbro_relief_vertical.json +++ b/src/main/resources/data/mineralogy/recipe/gabbro_relief_vertical.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x", - "x", - "x" - ], - "key": { - "x": { - "item": "mineralogy:gabbro_relief_blank" - } - }, - "result": { - "id": "mineralogy:gabbro_relief_vertical", - "count": 3 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x", + "x", + "x" + ], + "key": { + "x": "mineralogy:gabbro_relief_blank" + }, + "result": { + "id": "mineralogy:gabbro_relief_vertical", + "count": 3 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/gabbro_slab.json b/src/main/resources/data/mineralogy/recipe/gabbro_slab.json index c546945f4..7b22c1f30 100644 --- a/src/main/resources/data/mineralogy/recipe/gabbro_slab.json +++ b/src/main/resources/data/mineralogy/recipe/gabbro_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:gabbro" - } - }, - "result": { - "id": "mineralogy:gabbro_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:gabbro" + }, + "result": { + "id": "mineralogy:gabbro_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/gabbro_smooth.json b/src/main/resources/data/mineralogy/recipe/gabbro_smooth.json index 0ced20404..189dee961 100644 --- a/src/main/resources/data/mineralogy/recipe/gabbro_smooth.json +++ b/src/main/resources/data/mineralogy/recipe/gabbro_smooth.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "tag": "mineralogy:stones/gabbro" - }, - { - "item": "minecraft:sand" - } - ], - "result": { - "id": "mineralogy:gabbro_smooth", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "#mineralogy:stones/gabbro", + "minecraft:sand" + ], + "result": { + "id": "mineralogy:gabbro_smooth", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/gabbro_smooth_brick.json b/src/main/resources/data/mineralogy/recipe/gabbro_smooth_brick.json index fdd0e5481..bf02761ca 100644 --- a/src/main/resources/data/mineralogy/recipe/gabbro_smooth_brick.json +++ b/src/main/resources/data/mineralogy/recipe/gabbro_smooth_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/gabbro/smooth" - } - }, - "result": { - "id": "mineralogy:gabbro_smooth_brick", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "#mineralogy:stones/gabbro/smooth" + }, + "result": { + "id": "mineralogy:gabbro_smooth_brick", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/gabbro_smooth_brick_furnace.json b/src/main/resources/data/mineralogy/recipe/gabbro_smooth_brick_furnace.json index 2c7fc8eed..a7bbaeb5e 100644 --- a/src/main/resources/data/mineralogy/recipe/gabbro_smooth_brick_furnace.json +++ b/src/main/resources/data/mineralogy/recipe/gabbro_smooth_brick_furnace.json @@ -1,22 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "xxx", - "xyx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:slabs/gabbro/smooth_brick" - }, - "y": { - "item": "minecraft:furnace" - } - }, - "result": { - "id": "mineralogy:gabbro_smooth_brick_furnace", - "count": 1 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "xxx", + "xyx", + "xxx" + ], + "key": { + "x": "#mineralogy:slabs/gabbro/smooth_brick", + "y": "minecraft:furnace" + }, + "result": { + "id": "mineralogy:gabbro_smooth_brick_furnace", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/gabbro_smooth_brick_slab.json b/src/main/resources/data/mineralogy/recipe/gabbro_smooth_brick_slab.json index e6546b6b2..151cfb8df 100644 --- a/src/main/resources/data/mineralogy/recipe/gabbro_smooth_brick_slab.json +++ b/src/main/resources/data/mineralogy/recipe/gabbro_smooth_brick_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:gabbro_smooth_brick" - } - }, - "result": { - "id": "mineralogy:gabbro_smooth_brick_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:gabbro_smooth_brick" + }, + "result": { + "id": "mineralogy:gabbro_smooth_brick_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/gabbro_smooth_brick_stairs.json b/src/main/resources/data/mineralogy/recipe/gabbro_smooth_brick_stairs.json index 7655e8441..4959eab65 100644 --- a/src/main/resources/data/mineralogy/recipe/gabbro_smooth_brick_stairs.json +++ b/src/main/resources/data/mineralogy/recipe/gabbro_smooth_brick_stairs.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - "xx ", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/gabbro/smooth_brick" - } - }, - "result": { - "id": "mineralogy:gabbro_smooth_brick_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + "xx ", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/gabbro/smooth_brick" + }, + "result": { + "id": "mineralogy:gabbro_smooth_brick_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/gabbro_smooth_brick_wall.json b/src/main/resources/data/mineralogy/recipe/gabbro_smooth_brick_wall.json index 3852a94ac..a26e61f24 100644 --- a/src/main/resources/data/mineralogy/recipe/gabbro_smooth_brick_wall.json +++ b/src/main/resources/data/mineralogy/recipe/gabbro_smooth_brick_wall.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/gabbro/smooth_brick" - } - }, - "result": { - "id": "mineralogy:gabbro_smooth_brick_wall", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/gabbro/smooth_brick" + }, + "result": { + "id": "mineralogy:gabbro_smooth_brick_wall", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/gabbro_smooth_furnace.json b/src/main/resources/data/mineralogy/recipe/gabbro_smooth_furnace.json index 08362bfc4..e3f146683 100644 --- a/src/main/resources/data/mineralogy/recipe/gabbro_smooth_furnace.json +++ b/src/main/resources/data/mineralogy/recipe/gabbro_smooth_furnace.json @@ -1,22 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "xxx", - "xyx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:slabs/gabbro/smooth" - }, - "y": { - "item": "minecraft:furnace" - } - }, - "result": { - "id": "mineralogy:gabbro_smooth_furnace", - "count": 1 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "xxx", + "xyx", + "xxx" + ], + "key": { + "x": "#mineralogy:slabs/gabbro/smooth", + "y": "minecraft:furnace" + }, + "result": { + "id": "mineralogy:gabbro_smooth_furnace", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/gabbro_smooth_slab.json b/src/main/resources/data/mineralogy/recipe/gabbro_smooth_slab.json index 6e0132067..9b8d56062 100644 --- a/src/main/resources/data/mineralogy/recipe/gabbro_smooth_slab.json +++ b/src/main/resources/data/mineralogy/recipe/gabbro_smooth_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:gabbro_smooth" - } - }, - "result": { - "id": "mineralogy:gabbro_smooth_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:gabbro_smooth" + }, + "result": { + "id": "mineralogy:gabbro_smooth_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/gabbro_smooth_stairs.json b/src/main/resources/data/mineralogy/recipe/gabbro_smooth_stairs.json index 1e6dfc182..2510f51d8 100644 --- a/src/main/resources/data/mineralogy/recipe/gabbro_smooth_stairs.json +++ b/src/main/resources/data/mineralogy/recipe/gabbro_smooth_stairs.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - "xx ", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/gabbro/smooth" - } - }, - "result": { - "id": "mineralogy:gabbro_smooth_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + "xx ", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/gabbro/smooth" + }, + "result": { + "id": "mineralogy:gabbro_smooth_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/gabbro_smooth_wall.json b/src/main/resources/data/mineralogy/recipe/gabbro_smooth_wall.json index da5d7e910..58533dda9 100644 --- a/src/main/resources/data/mineralogy/recipe/gabbro_smooth_wall.json +++ b/src/main/resources/data/mineralogy/recipe/gabbro_smooth_wall.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/gabbro/smooth" - } - }, - "result": { - "id": "mineralogy:gabbro_smooth_wall", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/gabbro/smooth" + }, + "result": { + "id": "mineralogy:gabbro_smooth_wall", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/gabbro_stairs.json b/src/main/resources/data/mineralogy/recipe/gabbro_stairs.json index 17a249e6b..0859ff18a 100644 --- a/src/main/resources/data/mineralogy/recipe/gabbro_stairs.json +++ b/src/main/resources/data/mineralogy/recipe/gabbro_stairs.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - "xx ", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/gabbro" - } - }, - "result": { - "id": "mineralogy:gabbro_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + "xx ", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/gabbro" + }, + "result": { + "id": "mineralogy:gabbro_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/gabbro_to_stone.json b/src/main/resources/data/mineralogy/recipe/gabbro_to_stone.json index 2d626eba8..fe6e41c5e 100644 --- a/src/main/resources/data/mineralogy/recipe/gabbro_to_stone.json +++ b/src/main/resources/data/mineralogy/recipe/gabbro_to_stone.json @@ -1,12 +1,10 @@ { - "type": "minecraft:smelting", - "category": "blocks", - "ingredient": { - "item": "mineralogy:gabbro" - }, - "result": { - "id": "minecraft:stone" - }, - "experience": 0.1, - "cookingtime": 200 + "type": "minecraft:smelting", + "category": "blocks", + "ingredient": "mineralogy:gabbro", + "result": { + "id": "minecraft:stone" + }, + "experience": 0.1, + "cookingtime": 200 } diff --git a/src/main/resources/data/mineralogy/recipe/gabbro_wall.json b/src/main/resources/data/mineralogy/recipe/gabbro_wall.json index 730ea97d6..96a5e8c50 100644 --- a/src/main/resources/data/mineralogy/recipe/gabbro_wall.json +++ b/src/main/resources/data/mineralogy/recipe/gabbro_wall.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/gabbro" - } - }, - "result": { - "id": "mineralogy:gabbro_wall", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/gabbro" + }, + "result": { + "id": "mineralogy:gabbro_wall", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/gneiss_brick.json b/src/main/resources/data/mineralogy/recipe/gneiss_brick.json index 5eec8a405..bdd4df0dc 100644 --- a/src/main/resources/data/mineralogy/recipe/gneiss_brick.json +++ b/src/main/resources/data/mineralogy/recipe/gneiss_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/gneiss" - } - }, - "result": { - "id": "mineralogy:gneiss_brick", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "#mineralogy:stones/gneiss" + }, + "result": { + "id": "mineralogy:gneiss_brick", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/gneiss_brick_block_polishing.json b/src/main/resources/data/mineralogy/recipe/gneiss_brick_block_polishing.json index 385cf5edc..0386b91ed 100644 --- a/src/main/resources/data/mineralogy/recipe/gneiss_brick_block_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/gneiss_brick_block_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:gneiss_brick" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:gneiss_smooth_brick", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:gneiss_brick", + "#c:sands" + ], + "result": { + "id": "mineralogy:gneiss_smooth_brick", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/gneiss_brick_furnace.json b/src/main/resources/data/mineralogy/recipe/gneiss_brick_furnace.json index 5cf9826ba..82a4cc112 100644 --- a/src/main/resources/data/mineralogy/recipe/gneiss_brick_furnace.json +++ b/src/main/resources/data/mineralogy/recipe/gneiss_brick_furnace.json @@ -1,22 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "xxx", - "xyx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:slabs/gneiss/brick" - }, - "y": { - "item": "minecraft:furnace" - } - }, - "result": { - "id": "mineralogy:gneiss_brick_furnace", - "count": 1 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "xxx", + "xyx", + "xxx" + ], + "key": { + "x": "#mineralogy:slabs/gneiss/brick", + "y": "minecraft:furnace" + }, + "result": { + "id": "mineralogy:gneiss_brick_furnace", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/gneiss_brick_slab.json b/src/main/resources/data/mineralogy/recipe/gneiss_brick_slab.json index 9d87fe501..0f5f917d7 100644 --- a/src/main/resources/data/mineralogy/recipe/gneiss_brick_slab.json +++ b/src/main/resources/data/mineralogy/recipe/gneiss_brick_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:gneiss_brick" - } - }, - "result": { - "id": "mineralogy:gneiss_brick_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:gneiss_brick" + }, + "result": { + "id": "mineralogy:gneiss_brick_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/gneiss_brick_slab_polishing.json b/src/main/resources/data/mineralogy/recipe/gneiss_brick_slab_polishing.json index baaadbdd8..bf046911f 100644 --- a/src/main/resources/data/mineralogy/recipe/gneiss_brick_slab_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/gneiss_brick_slab_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:gneiss_brick_slab" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:gneiss_smooth_brick_slab", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:gneiss_brick_slab", + "#c:sands" + ], + "result": { + "id": "mineralogy:gneiss_smooth_brick_slab", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/gneiss_brick_slab_recombination.json b/src/main/resources/data/mineralogy/recipe/gneiss_brick_slab_recombination.json index f2fd5326b..38cb0bf3b 100644 --- a/src/main/resources/data/mineralogy/recipe/gneiss_brick_slab_recombination.json +++ b/src/main/resources/data/mineralogy/recipe/gneiss_brick_slab_recombination.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:gneiss_brick_slab" - }, - { - "item": "mineralogy:gneiss_brick_slab" - } - ], - "result": { - "id": "mineralogy:gneiss_brick", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:gneiss_brick_slab", + "mineralogy:gneiss_brick_slab" + ], + "result": { + "id": "mineralogy:gneiss_brick", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/gneiss_brick_stairs.json b/src/main/resources/data/mineralogy/recipe/gneiss_brick_stairs.json index c16fa8f26..c4ba230e3 100644 --- a/src/main/resources/data/mineralogy/recipe/gneiss_brick_stairs.json +++ b/src/main/resources/data/mineralogy/recipe/gneiss_brick_stairs.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - "xx ", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/gneiss/brick" - } - }, - "result": { - "id": "mineralogy:gneiss_brick_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + "xx ", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/gneiss/brick" + }, + "result": { + "id": "mineralogy:gneiss_brick_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/gneiss_brick_stairs_polishing.json b/src/main/resources/data/mineralogy/recipe/gneiss_brick_stairs_polishing.json index 5b97c5e96..400060f85 100644 --- a/src/main/resources/data/mineralogy/recipe/gneiss_brick_stairs_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/gneiss_brick_stairs_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:gneiss_brick_stairs" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:gneiss_smooth_brick_stairs", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:gneiss_brick_stairs", + "#c:sands" + ], + "result": { + "id": "mineralogy:gneiss_smooth_brick_stairs", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/gneiss_brick_wall.json b/src/main/resources/data/mineralogy/recipe/gneiss_brick_wall.json index 3c9a45e6e..3b29682ca 100644 --- a/src/main/resources/data/mineralogy/recipe/gneiss_brick_wall.json +++ b/src/main/resources/data/mineralogy/recipe/gneiss_brick_wall.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/gneiss/brick" - } - }, - "result": { - "id": "mineralogy:gneiss_brick_wall", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/gneiss/brick" + }, + "result": { + "id": "mineralogy:gneiss_brick_wall", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/gneiss_brick_wall_polishing.json b/src/main/resources/data/mineralogy/recipe/gneiss_brick_wall_polishing.json index 1d446fcc1..b6192ce4f 100644 --- a/src/main/resources/data/mineralogy/recipe/gneiss_brick_wall_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/gneiss_brick_wall_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:gneiss_brick_wall" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:gneiss_smooth_brick_wall", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:gneiss_brick_wall", + "#c:sands" + ], + "result": { + "id": "mineralogy:gneiss_smooth_brick_wall", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/gneiss_cobblestone.json b/src/main/resources/data/mineralogy/recipe/gneiss_cobblestone.json index bfebf58e8..1d050a2f7 100644 --- a/src/main/resources/data/mineralogy/recipe/gneiss_cobblestone.json +++ b/src/main/resources/data/mineralogy/recipe/gneiss_cobblestone.json @@ -1,22 +1,14 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "tag": "mineralogy:stones/gneiss" - }, - { - "tag": "mineralogy:stones/gneiss" - }, - { - "item": "minecraft:gravel" - }, - { - "item": "minecraft:gravel" - } - ], - "result": { - "id": "minecraft:cobblestone", - "count": 4 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "#mineralogy:stones/gneiss", + "#mineralogy:stones/gneiss", + "minecraft:gravel", + "minecraft:gravel" + ], + "result": { + "id": "minecraft:cobblestone", + "count": 4 + } } diff --git a/src/main/resources/data/mineralogy/recipe/gneiss_furnace.json b/src/main/resources/data/mineralogy/recipe/gneiss_furnace.json index e6a47b982..9cf5ec74c 100644 --- a/src/main/resources/data/mineralogy/recipe/gneiss_furnace.json +++ b/src/main/resources/data/mineralogy/recipe/gneiss_furnace.json @@ -1,22 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "xxx", - "xyx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:slabs/gneiss" - }, - "y": { - "item": "minecraft:furnace" - } - }, - "result": { - "id": "mineralogy:gneiss_furnace", - "count": 1 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "xxx", + "xyx", + "xxx" + ], + "key": { + "x": "#mineralogy:slabs/gneiss", + "y": "minecraft:furnace" + }, + "result": { + "id": "mineralogy:gneiss_furnace", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/gneiss_polished_brick_slab_recombination.json b/src/main/resources/data/mineralogy/recipe/gneiss_polished_brick_slab_recombination.json index 48382cfd6..6a56452a5 100644 --- a/src/main/resources/data/mineralogy/recipe/gneiss_polished_brick_slab_recombination.json +++ b/src/main/resources/data/mineralogy/recipe/gneiss_polished_brick_slab_recombination.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:gneiss_smooth_brick_slab" - }, - { - "item": "mineralogy:gneiss_smooth_brick_slab" - } - ], - "result": { - "id": "mineralogy:gneiss_smooth_brick", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:gneiss_smooth_brick_slab", + "mineralogy:gneiss_smooth_brick_slab" + ], + "result": { + "id": "mineralogy:gneiss_smooth_brick", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/gneiss_polished_slab_recombination.json b/src/main/resources/data/mineralogy/recipe/gneiss_polished_slab_recombination.json index 30f2eab10..4d73f14c8 100644 --- a/src/main/resources/data/mineralogy/recipe/gneiss_polished_slab_recombination.json +++ b/src/main/resources/data/mineralogy/recipe/gneiss_polished_slab_recombination.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:gneiss_smooth_slab" - }, - { - "item": "mineralogy:gneiss_smooth_slab" - } - ], - "result": { - "id": "mineralogy:gneiss_smooth", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:gneiss_smooth_slab", + "mineralogy:gneiss_smooth_slab" + ], + "result": { + "id": "mineralogy:gneiss_smooth", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/gneiss_polished_slabs_to_brick.json b/src/main/resources/data/mineralogy/recipe/gneiss_polished_slabs_to_brick.json index 212fd96a4..741686a84 100644 --- a/src/main/resources/data/mineralogy/recipe/gneiss_polished_slabs_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/gneiss_polished_slabs_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:gneiss_smooth_slab" - } - }, - "result": { - "id": "mineralogy:gneiss_smooth_brick_slab", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:gneiss_smooth_slab" + }, + "result": { + "id": "mineralogy:gneiss_smooth_brick_slab", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/gneiss_polished_stairs_to_brick.json b/src/main/resources/data/mineralogy/recipe/gneiss_polished_stairs_to_brick.json index f565fb840..31f851c35 100644 --- a/src/main/resources/data/mineralogy/recipe/gneiss_polished_stairs_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/gneiss_polished_stairs_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:gneiss_smooth_stairs" - } - }, - "result": { - "id": "mineralogy:gneiss_smooth_brick_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:gneiss_smooth_stairs" + }, + "result": { + "id": "mineralogy:gneiss_smooth_brick_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/gneiss_polished_walls_to_brick.json b/src/main/resources/data/mineralogy/recipe/gneiss_polished_walls_to_brick.json index 31d620bd4..0aabfc76a 100644 --- a/src/main/resources/data/mineralogy/recipe/gneiss_polished_walls_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/gneiss_polished_walls_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:gneiss_smooth_wall" - } - }, - "result": { - "id": "mineralogy:gneiss_smooth_brick_wall", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:gneiss_smooth_wall" + }, + "result": { + "id": "mineralogy:gneiss_smooth_brick_wall", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/gneiss_raw_slab_polishing.json b/src/main/resources/data/mineralogy/recipe/gneiss_raw_slab_polishing.json index 172fb2c4d..67258c80d 100644 --- a/src/main/resources/data/mineralogy/recipe/gneiss_raw_slab_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/gneiss_raw_slab_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:gneiss_slab" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:gneiss_smooth_slab", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:gneiss_slab", + "#c:sands" + ], + "result": { + "id": "mineralogy:gneiss_smooth_slab", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/gneiss_raw_slab_recombination.json b/src/main/resources/data/mineralogy/recipe/gneiss_raw_slab_recombination.json index 48a25daba..44b7bf4b8 100644 --- a/src/main/resources/data/mineralogy/recipe/gneiss_raw_slab_recombination.json +++ b/src/main/resources/data/mineralogy/recipe/gneiss_raw_slab_recombination.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:gneiss_slab" - }, - { - "item": "mineralogy:gneiss_slab" - } - ], - "result": { - "id": "mineralogy:gneiss", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:gneiss_slab", + "mineralogy:gneiss_slab" + ], + "result": { + "id": "mineralogy:gneiss", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/gneiss_raw_slabs_to_brick.json b/src/main/resources/data/mineralogy/recipe/gneiss_raw_slabs_to_brick.json index ac4ceb57e..7e9b434f4 100644 --- a/src/main/resources/data/mineralogy/recipe/gneiss_raw_slabs_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/gneiss_raw_slabs_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:gneiss_slab" - } - }, - "result": { - "id": "mineralogy:gneiss_brick_slab", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:gneiss_slab" + }, + "result": { + "id": "mineralogy:gneiss_brick_slab", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/gneiss_raw_stairs_polishing.json b/src/main/resources/data/mineralogy/recipe/gneiss_raw_stairs_polishing.json index 268ace0de..98a761968 100644 --- a/src/main/resources/data/mineralogy/recipe/gneiss_raw_stairs_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/gneiss_raw_stairs_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:gneiss_stairs" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:gneiss_smooth_stairs", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:gneiss_stairs", + "#c:sands" + ], + "result": { + "id": "mineralogy:gneiss_smooth_stairs", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/gneiss_raw_stairs_to_brick.json b/src/main/resources/data/mineralogy/recipe/gneiss_raw_stairs_to_brick.json index e0efbd2c1..3f0de3bf8 100644 --- a/src/main/resources/data/mineralogy/recipe/gneiss_raw_stairs_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/gneiss_raw_stairs_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:gneiss_stairs" - } - }, - "result": { - "id": "mineralogy:gneiss_brick_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:gneiss_stairs" + }, + "result": { + "id": "mineralogy:gneiss_brick_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/gneiss_raw_wall_polishing.json b/src/main/resources/data/mineralogy/recipe/gneiss_raw_wall_polishing.json index 00ac91888..b6eb401e0 100644 --- a/src/main/resources/data/mineralogy/recipe/gneiss_raw_wall_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/gneiss_raw_wall_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:gneiss_wall" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:gneiss_smooth_wall", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:gneiss_wall", + "#c:sands" + ], + "result": { + "id": "mineralogy:gneiss_smooth_wall", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/gneiss_raw_walls_to_brick.json b/src/main/resources/data/mineralogy/recipe/gneiss_raw_walls_to_brick.json index 073725326..5cd3a1ae0 100644 --- a/src/main/resources/data/mineralogy/recipe/gneiss_raw_walls_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/gneiss_raw_walls_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:gneiss_wall" - } - }, - "result": { - "id": "mineralogy:gneiss_brick_wall", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:gneiss_wall" + }, + "result": { + "id": "mineralogy:gneiss_brick_wall", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/gneiss_relief_axe.json b/src/main/resources/data/mineralogy/recipe/gneiss_relief_axe.json index 9e7922634..28c02ab00 100644 --- a/src/main/resources/data/mineralogy/recipe/gneiss_relief_axe.json +++ b/src/main/resources/data/mineralogy/recipe/gneiss_relief_axe.json @@ -1,37 +1,19 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:gneiss_relief_blank" - }, - { - "item": "mineralogy:gneiss_relief_blank" - }, - { - "item": "mineralogy:gneiss_relief_blank" - }, - { - "item": "mineralogy:gneiss_relief_blank" - }, - { - "item": "mineralogy:gneiss_relief_blank" - }, - { - "item": "mineralogy:gneiss_relief_blank" - }, - { - "item": "mineralogy:gneiss_relief_blank" - }, - { - "item": "mineralogy:gneiss_relief_blank" - }, - { - "item": "minecraft:stone_axe" - } - ], - "result": { - "id": "mineralogy:gneiss_relief_axe", - "count": 8 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:gneiss_relief_blank", + "mineralogy:gneiss_relief_blank", + "mineralogy:gneiss_relief_blank", + "mineralogy:gneiss_relief_blank", + "mineralogy:gneiss_relief_blank", + "mineralogy:gneiss_relief_blank", + "mineralogy:gneiss_relief_blank", + "mineralogy:gneiss_relief_blank", + "minecraft:stone_axe" + ], + "result": { + "id": "mineralogy:gneiss_relief_axe", + "count": 8 + } } diff --git a/src/main/resources/data/mineralogy/recipe/gneiss_relief_blank.json b/src/main/resources/data/mineralogy/recipe/gneiss_relief_blank.json index 4f2a3847b..5ce476944 100644 --- a/src/main/resources/data/mineralogy/recipe/gneiss_relief_blank.json +++ b/src/main/resources/data/mineralogy/recipe/gneiss_relief_blank.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx", - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:gneiss_smooth" - } - }, - "result": { - "id": "mineralogy:gneiss_relief_blank", - "count": 16 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx", + "xxx" + ], + "key": { + "x": "mineralogy:gneiss_smooth" + }, + "result": { + "id": "mineralogy:gneiss_relief_blank", + "count": 16 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/gneiss_relief_cross.json b/src/main/resources/data/mineralogy/recipe/gneiss_relief_cross.json index 285b11cd6..b505207b0 100644 --- a/src/main/resources/data/mineralogy/recipe/gneiss_relief_cross.json +++ b/src/main/resources/data/mineralogy/recipe/gneiss_relief_cross.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x x", - " ", - "x x" - ], - "key": { - "x": { - "item": "mineralogy:gneiss_relief_blank" - } - }, - "result": { - "id": "mineralogy:gneiss_relief_cross", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x x", + " ", + "x x" + ], + "key": { + "x": "mineralogy:gneiss_relief_blank" + }, + "result": { + "id": "mineralogy:gneiss_relief_cross", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/gneiss_relief_hammer.json b/src/main/resources/data/mineralogy/recipe/gneiss_relief_hammer.json index 186c22006..3a510bdb1 100644 --- a/src/main/resources/data/mineralogy/recipe/gneiss_relief_hammer.json +++ b/src/main/resources/data/mineralogy/recipe/gneiss_relief_hammer.json @@ -1,25 +1,19 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "zxz", - "zyz", - "zzz" - ], - "key": { - "x": { - "item": "mineralogy:gneiss_smooth" - }, - "y": { - "item": "minecraft:stick" - }, - "z": { - "item": "mineralogy:gneiss_relief_blank" - } - }, - "result": { - "id": "mineralogy:gneiss_relief_hammer", - "count": 7 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "zxz", + "zyz", + "zzz" + ], + "key": { + "x": "mineralogy:gneiss_smooth", + "y": "minecraft:stick", + "z": "mineralogy:gneiss_relief_blank" + }, + "result": { + "id": "mineralogy:gneiss_relief_hammer", + "count": 7 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/gneiss_relief_hoe.json b/src/main/resources/data/mineralogy/recipe/gneiss_relief_hoe.json index eed168785..da3413f31 100644 --- a/src/main/resources/data/mineralogy/recipe/gneiss_relief_hoe.json +++ b/src/main/resources/data/mineralogy/recipe/gneiss_relief_hoe.json @@ -1,37 +1,19 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:gneiss_relief_blank" - }, - { - "item": "mineralogy:gneiss_relief_blank" - }, - { - "item": "mineralogy:gneiss_relief_blank" - }, - { - "item": "mineralogy:gneiss_relief_blank" - }, - { - "item": "mineralogy:gneiss_relief_blank" - }, - { - "item": "mineralogy:gneiss_relief_blank" - }, - { - "item": "mineralogy:gneiss_relief_blank" - }, - { - "item": "mineralogy:gneiss_relief_blank" - }, - { - "item": "minecraft:stone_hoe" - } - ], - "result": { - "id": "mineralogy:gneiss_relief_hoe", - "count": 8 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:gneiss_relief_blank", + "mineralogy:gneiss_relief_blank", + "mineralogy:gneiss_relief_blank", + "mineralogy:gneiss_relief_blank", + "mineralogy:gneiss_relief_blank", + "mineralogy:gneiss_relief_blank", + "mineralogy:gneiss_relief_blank", + "mineralogy:gneiss_relief_blank", + "minecraft:stone_hoe" + ], + "result": { + "id": "mineralogy:gneiss_relief_hoe", + "count": 8 + } } diff --git a/src/main/resources/data/mineralogy/recipe/gneiss_relief_horizontal.json b/src/main/resources/data/mineralogy/recipe/gneiss_relief_horizontal.json index ff4ef8532..a2f8f192a 100644 --- a/src/main/resources/data/mineralogy/recipe/gneiss_relief_horizontal.json +++ b/src/main/resources/data/mineralogy/recipe/gneiss_relief_horizontal.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:gneiss_relief_blank" - } - }, - "result": { - "id": "mineralogy:gneiss_relief_horizontal", - "count": 3 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:gneiss_relief_blank" + }, + "result": { + "id": "mineralogy:gneiss_relief_horizontal", + "count": 3 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/gneiss_relief_i.json b/src/main/resources/data/mineralogy/recipe/gneiss_relief_i.json index 4dc125543..38c009673 100644 --- a/src/main/resources/data/mineralogy/recipe/gneiss_relief_i.json +++ b/src/main/resources/data/mineralogy/recipe/gneiss_relief_i.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - " x ", - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:gneiss_relief_blank" - } - }, - "result": { - "id": "mineralogy:gneiss_relief_i", - "count": 7 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + " x ", + "xxx" + ], + "key": { + "x": "mineralogy:gneiss_relief_blank" + }, + "result": { + "id": "mineralogy:gneiss_relief_i", + "count": 7 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/gneiss_relief_left.json b/src/main/resources/data/mineralogy/recipe/gneiss_relief_left.json index e84f143c7..79a718144 100644 --- a/src/main/resources/data/mineralogy/recipe/gneiss_relief_left.json +++ b/src/main/resources/data/mineralogy/recipe/gneiss_relief_left.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - " x ", - " x" - ], - "key": { - "x": { - "item": "mineralogy:gneiss_relief_blank" - } - }, - "result": { - "id": "mineralogy:gneiss_relief_left", - "count": 3 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + " x ", + " x" + ], + "key": { + "x": "mineralogy:gneiss_relief_blank" + }, + "result": { + "id": "mineralogy:gneiss_relief_left", + "count": 3 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/gneiss_relief_pickaxe.json b/src/main/resources/data/mineralogy/recipe/gneiss_relief_pickaxe.json index cba501e44..736780d18 100644 --- a/src/main/resources/data/mineralogy/recipe/gneiss_relief_pickaxe.json +++ b/src/main/resources/data/mineralogy/recipe/gneiss_relief_pickaxe.json @@ -1,37 +1,19 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:gneiss_relief_blank" - }, - { - "item": "mineralogy:gneiss_relief_blank" - }, - { - "item": "mineralogy:gneiss_relief_blank" - }, - { - "item": "mineralogy:gneiss_relief_blank" - }, - { - "item": "mineralogy:gneiss_relief_blank" - }, - { - "item": "mineralogy:gneiss_relief_blank" - }, - { - "item": "mineralogy:gneiss_relief_blank" - }, - { - "item": "mineralogy:gneiss_relief_blank" - }, - { - "item": "minecraft:stone_pickaxe" - } - ], - "result": { - "id": "mineralogy:gneiss_relief_pickaxe", - "count": 8 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:gneiss_relief_blank", + "mineralogy:gneiss_relief_blank", + "mineralogy:gneiss_relief_blank", + "mineralogy:gneiss_relief_blank", + "mineralogy:gneiss_relief_blank", + "mineralogy:gneiss_relief_blank", + "mineralogy:gneiss_relief_blank", + "mineralogy:gneiss_relief_blank", + "minecraft:stone_pickaxe" + ], + "result": { + "id": "mineralogy:gneiss_relief_pickaxe", + "count": 8 + } } diff --git a/src/main/resources/data/mineralogy/recipe/gneiss_relief_plus.json b/src/main/resources/data/mineralogy/recipe/gneiss_relief_plus.json index 05ac9a2cd..9798111c4 100644 --- a/src/main/resources/data/mineralogy/recipe/gneiss_relief_plus.json +++ b/src/main/resources/data/mineralogy/recipe/gneiss_relief_plus.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - " x ", - "xxx", - " x " - ], - "key": { - "x": { - "item": "mineralogy:gneiss_relief_blank" - } - }, - "result": { - "id": "mineralogy:gneiss_relief_plus", - "count": 5 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + " x ", + "xxx", + " x " + ], + "key": { + "x": "mineralogy:gneiss_relief_blank" + }, + "result": { + "id": "mineralogy:gneiss_relief_plus", + "count": 5 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/gneiss_relief_right.json b/src/main/resources/data/mineralogy/recipe/gneiss_relief_right.json index 5d92532b9..3d9704350 100644 --- a/src/main/resources/data/mineralogy/recipe/gneiss_relief_right.json +++ b/src/main/resources/data/mineralogy/recipe/gneiss_relief_right.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:gneiss_relief_left" - }, - { - "item": "mineralogy:gneiss_relief_left" - } - ], - "result": { - "id": "mineralogy:gneiss_relief_right", - "count": 2 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:gneiss_relief_left", + "mineralogy:gneiss_relief_left" + ], + "result": { + "id": "mineralogy:gneiss_relief_right", + "count": 2 + } } diff --git a/src/main/resources/data/mineralogy/recipe/gneiss_relief_sword.json b/src/main/resources/data/mineralogy/recipe/gneiss_relief_sword.json index 81b221b51..35143df37 100644 --- a/src/main/resources/data/mineralogy/recipe/gneiss_relief_sword.json +++ b/src/main/resources/data/mineralogy/recipe/gneiss_relief_sword.json @@ -1,37 +1,19 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:gneiss_relief_blank" - }, - { - "item": "mineralogy:gneiss_relief_blank" - }, - { - "item": "mineralogy:gneiss_relief_blank" - }, - { - "item": "mineralogy:gneiss_relief_blank" - }, - { - "item": "mineralogy:gneiss_relief_blank" - }, - { - "item": "mineralogy:gneiss_relief_blank" - }, - { - "item": "mineralogy:gneiss_relief_blank" - }, - { - "item": "mineralogy:gneiss_relief_blank" - }, - { - "item": "minecraft:stone_sword" - } - ], - "result": { - "id": "mineralogy:gneiss_relief_sword", - "count": 8 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:gneiss_relief_blank", + "mineralogy:gneiss_relief_blank", + "mineralogy:gneiss_relief_blank", + "mineralogy:gneiss_relief_blank", + "mineralogy:gneiss_relief_blank", + "mineralogy:gneiss_relief_blank", + "mineralogy:gneiss_relief_blank", + "mineralogy:gneiss_relief_blank", + "minecraft:stone_sword" + ], + "result": { + "id": "mineralogy:gneiss_relief_sword", + "count": 8 + } } diff --git a/src/main/resources/data/mineralogy/recipe/gneiss_relief_vertical.json b/src/main/resources/data/mineralogy/recipe/gneiss_relief_vertical.json index e7b191213..f24b3e4d1 100644 --- a/src/main/resources/data/mineralogy/recipe/gneiss_relief_vertical.json +++ b/src/main/resources/data/mineralogy/recipe/gneiss_relief_vertical.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x", - "x", - "x" - ], - "key": { - "x": { - "item": "mineralogy:gneiss_relief_blank" - } - }, - "result": { - "id": "mineralogy:gneiss_relief_vertical", - "count": 3 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x", + "x", + "x" + ], + "key": { + "x": "mineralogy:gneiss_relief_blank" + }, + "result": { + "id": "mineralogy:gneiss_relief_vertical", + "count": 3 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/gneiss_slab.json b/src/main/resources/data/mineralogy/recipe/gneiss_slab.json index 5869957bd..62f58bc5f 100644 --- a/src/main/resources/data/mineralogy/recipe/gneiss_slab.json +++ b/src/main/resources/data/mineralogy/recipe/gneiss_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:gneiss" - } - }, - "result": { - "id": "mineralogy:gneiss_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:gneiss" + }, + "result": { + "id": "mineralogy:gneiss_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/gneiss_smooth.json b/src/main/resources/data/mineralogy/recipe/gneiss_smooth.json index 173ec7874..cc44a17f4 100644 --- a/src/main/resources/data/mineralogy/recipe/gneiss_smooth.json +++ b/src/main/resources/data/mineralogy/recipe/gneiss_smooth.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "tag": "mineralogy:stones/gneiss" - }, - { - "item": "minecraft:sand" - } - ], - "result": { - "id": "mineralogy:gneiss_smooth", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "#mineralogy:stones/gneiss", + "minecraft:sand" + ], + "result": { + "id": "mineralogy:gneiss_smooth", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/gneiss_smooth_brick.json b/src/main/resources/data/mineralogy/recipe/gneiss_smooth_brick.json index 100784c7d..e47692d60 100644 --- a/src/main/resources/data/mineralogy/recipe/gneiss_smooth_brick.json +++ b/src/main/resources/data/mineralogy/recipe/gneiss_smooth_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/gneiss/smooth" - } - }, - "result": { - "id": "mineralogy:gneiss_smooth_brick", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "#mineralogy:stones/gneiss/smooth" + }, + "result": { + "id": "mineralogy:gneiss_smooth_brick", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/gneiss_smooth_brick_furnace.json b/src/main/resources/data/mineralogy/recipe/gneiss_smooth_brick_furnace.json index cc07412a5..9421c4ed7 100644 --- a/src/main/resources/data/mineralogy/recipe/gneiss_smooth_brick_furnace.json +++ b/src/main/resources/data/mineralogy/recipe/gneiss_smooth_brick_furnace.json @@ -1,22 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "xxx", - "xyx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:slabs/gneiss/smooth_brick" - }, - "y": { - "item": "minecraft:furnace" - } - }, - "result": { - "id": "mineralogy:gneiss_smooth_brick_furnace", - "count": 1 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "xxx", + "xyx", + "xxx" + ], + "key": { + "x": "#mineralogy:slabs/gneiss/smooth_brick", + "y": "minecraft:furnace" + }, + "result": { + "id": "mineralogy:gneiss_smooth_brick_furnace", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/gneiss_smooth_brick_slab.json b/src/main/resources/data/mineralogy/recipe/gneiss_smooth_brick_slab.json index 6eace493a..44c425be5 100644 --- a/src/main/resources/data/mineralogy/recipe/gneiss_smooth_brick_slab.json +++ b/src/main/resources/data/mineralogy/recipe/gneiss_smooth_brick_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:gneiss_smooth_brick" - } - }, - "result": { - "id": "mineralogy:gneiss_smooth_brick_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:gneiss_smooth_brick" + }, + "result": { + "id": "mineralogy:gneiss_smooth_brick_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/gneiss_smooth_brick_stairs.json b/src/main/resources/data/mineralogy/recipe/gneiss_smooth_brick_stairs.json index 5e838832d..c778be9ba 100644 --- a/src/main/resources/data/mineralogy/recipe/gneiss_smooth_brick_stairs.json +++ b/src/main/resources/data/mineralogy/recipe/gneiss_smooth_brick_stairs.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - "xx ", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/gneiss/smooth_brick" - } - }, - "result": { - "id": "mineralogy:gneiss_smooth_brick_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + "xx ", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/gneiss/smooth_brick" + }, + "result": { + "id": "mineralogy:gneiss_smooth_brick_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/gneiss_smooth_brick_wall.json b/src/main/resources/data/mineralogy/recipe/gneiss_smooth_brick_wall.json index ccda14cf4..b73334ad3 100644 --- a/src/main/resources/data/mineralogy/recipe/gneiss_smooth_brick_wall.json +++ b/src/main/resources/data/mineralogy/recipe/gneiss_smooth_brick_wall.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/gneiss/smooth_brick" - } - }, - "result": { - "id": "mineralogy:gneiss_smooth_brick_wall", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/gneiss/smooth_brick" + }, + "result": { + "id": "mineralogy:gneiss_smooth_brick_wall", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/gneiss_smooth_furnace.json b/src/main/resources/data/mineralogy/recipe/gneiss_smooth_furnace.json index e904c41dd..220cb10fa 100644 --- a/src/main/resources/data/mineralogy/recipe/gneiss_smooth_furnace.json +++ b/src/main/resources/data/mineralogy/recipe/gneiss_smooth_furnace.json @@ -1,22 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "xxx", - "xyx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:slabs/gneiss/smooth" - }, - "y": { - "item": "minecraft:furnace" - } - }, - "result": { - "id": "mineralogy:gneiss_smooth_furnace", - "count": 1 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "xxx", + "xyx", + "xxx" + ], + "key": { + "x": "#mineralogy:slabs/gneiss/smooth", + "y": "minecraft:furnace" + }, + "result": { + "id": "mineralogy:gneiss_smooth_furnace", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/gneiss_smooth_slab.json b/src/main/resources/data/mineralogy/recipe/gneiss_smooth_slab.json index 10d76531f..9cb2fcfed 100644 --- a/src/main/resources/data/mineralogy/recipe/gneiss_smooth_slab.json +++ b/src/main/resources/data/mineralogy/recipe/gneiss_smooth_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:gneiss_smooth" - } - }, - "result": { - "id": "mineralogy:gneiss_smooth_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:gneiss_smooth" + }, + "result": { + "id": "mineralogy:gneiss_smooth_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/gneiss_smooth_stairs.json b/src/main/resources/data/mineralogy/recipe/gneiss_smooth_stairs.json index b093f1ec2..9a43f034e 100644 --- a/src/main/resources/data/mineralogy/recipe/gneiss_smooth_stairs.json +++ b/src/main/resources/data/mineralogy/recipe/gneiss_smooth_stairs.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - "xx ", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/gneiss/smooth" - } - }, - "result": { - "id": "mineralogy:gneiss_smooth_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + "xx ", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/gneiss/smooth" + }, + "result": { + "id": "mineralogy:gneiss_smooth_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/gneiss_smooth_wall.json b/src/main/resources/data/mineralogy/recipe/gneiss_smooth_wall.json index f8851abed..190b12db8 100644 --- a/src/main/resources/data/mineralogy/recipe/gneiss_smooth_wall.json +++ b/src/main/resources/data/mineralogy/recipe/gneiss_smooth_wall.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/gneiss/smooth" - } - }, - "result": { - "id": "mineralogy:gneiss_smooth_wall", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/gneiss/smooth" + }, + "result": { + "id": "mineralogy:gneiss_smooth_wall", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/gneiss_stairs.json b/src/main/resources/data/mineralogy/recipe/gneiss_stairs.json index 7c7f64fb6..3df32113d 100644 --- a/src/main/resources/data/mineralogy/recipe/gneiss_stairs.json +++ b/src/main/resources/data/mineralogy/recipe/gneiss_stairs.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - "xx ", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/gneiss" - } - }, - "result": { - "id": "mineralogy:gneiss_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + "xx ", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/gneiss" + }, + "result": { + "id": "mineralogy:gneiss_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/gneiss_to_stone.json b/src/main/resources/data/mineralogy/recipe/gneiss_to_stone.json index 016278bf8..99693a80f 100644 --- a/src/main/resources/data/mineralogy/recipe/gneiss_to_stone.json +++ b/src/main/resources/data/mineralogy/recipe/gneiss_to_stone.json @@ -1,12 +1,10 @@ { - "type": "minecraft:smelting", - "category": "blocks", - "ingredient": { - "item": "mineralogy:gneiss" - }, - "result": { - "id": "minecraft:stone" - }, - "experience": 0.1, - "cookingtime": 200 + "type": "minecraft:smelting", + "category": "blocks", + "ingredient": "mineralogy:gneiss", + "result": { + "id": "minecraft:stone" + }, + "experience": 0.1, + "cookingtime": 200 } diff --git a/src/main/resources/data/mineralogy/recipe/gneiss_wall.json b/src/main/resources/data/mineralogy/recipe/gneiss_wall.json index d2883451c..08b2cfb16 100644 --- a/src/main/resources/data/mineralogy/recipe/gneiss_wall.json +++ b/src/main/resources/data/mineralogy/recipe/gneiss_wall.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/gneiss" - } - }, - "result": { - "id": "mineralogy:gneiss_wall", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/gneiss" + }, + "result": { + "id": "mineralogy:gneiss_wall", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/granite_brick.json b/src/main/resources/data/mineralogy/recipe/granite_brick.json index 27093ec87..7ac7941b0 100644 --- a/src/main/resources/data/mineralogy/recipe/granite_brick.json +++ b/src/main/resources/data/mineralogy/recipe/granite_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/granite" - } - }, - "result": { - "id": "mineralogy:granite_brick", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "#mineralogy:stones/granite" + }, + "result": { + "id": "mineralogy:granite_brick", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/granite_brick_block_polishing.json b/src/main/resources/data/mineralogy/recipe/granite_brick_block_polishing.json index 391b524a8..fd19a02e2 100644 --- a/src/main/resources/data/mineralogy/recipe/granite_brick_block_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/granite_brick_block_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:granite_brick" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:granite_smooth_brick", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:granite_brick", + "#c:sands" + ], + "result": { + "id": "mineralogy:granite_smooth_brick", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/granite_brick_furnace.json b/src/main/resources/data/mineralogy/recipe/granite_brick_furnace.json index d4d563d56..ff6984581 100644 --- a/src/main/resources/data/mineralogy/recipe/granite_brick_furnace.json +++ b/src/main/resources/data/mineralogy/recipe/granite_brick_furnace.json @@ -1,22 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "xxx", - "xyx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:slabs/granite/brick" - }, - "y": { - "item": "minecraft:furnace" - } - }, - "result": { - "id": "mineralogy:granite_brick_furnace", - "count": 1 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "xxx", + "xyx", + "xxx" + ], + "key": { + "x": "#mineralogy:slabs/granite/brick", + "y": "minecraft:furnace" + }, + "result": { + "id": "mineralogy:granite_brick_furnace", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/granite_brick_slab.json b/src/main/resources/data/mineralogy/recipe/granite_brick_slab.json index cdd243da6..6370a3737 100644 --- a/src/main/resources/data/mineralogy/recipe/granite_brick_slab.json +++ b/src/main/resources/data/mineralogy/recipe/granite_brick_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:granite_brick" - } - }, - "result": { - "id": "mineralogy:granite_brick_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:granite_brick" + }, + "result": { + "id": "mineralogy:granite_brick_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/granite_brick_slab_polishing.json b/src/main/resources/data/mineralogy/recipe/granite_brick_slab_polishing.json index 546809d27..cb618b4dd 100644 --- a/src/main/resources/data/mineralogy/recipe/granite_brick_slab_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/granite_brick_slab_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:granite_brick_slab" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:granite_smooth_brick_slab", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:granite_brick_slab", + "#c:sands" + ], + "result": { + "id": "mineralogy:granite_smooth_brick_slab", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/granite_brick_slab_recombination.json b/src/main/resources/data/mineralogy/recipe/granite_brick_slab_recombination.json index bc876e961..eb1f02cec 100644 --- a/src/main/resources/data/mineralogy/recipe/granite_brick_slab_recombination.json +++ b/src/main/resources/data/mineralogy/recipe/granite_brick_slab_recombination.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:granite_brick_slab" - }, - { - "item": "mineralogy:granite_brick_slab" - } - ], - "result": { - "id": "mineralogy:granite_brick", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:granite_brick_slab", + "mineralogy:granite_brick_slab" + ], + "result": { + "id": "mineralogy:granite_brick", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/granite_brick_stairs.json b/src/main/resources/data/mineralogy/recipe/granite_brick_stairs.json index b23360bba..53db877b7 100644 --- a/src/main/resources/data/mineralogy/recipe/granite_brick_stairs.json +++ b/src/main/resources/data/mineralogy/recipe/granite_brick_stairs.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - "xx ", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/granite/brick" - } - }, - "result": { - "id": "mineralogy:granite_brick_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + "xx ", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/granite/brick" + }, + "result": { + "id": "mineralogy:granite_brick_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/granite_brick_stairs_polishing.json b/src/main/resources/data/mineralogy/recipe/granite_brick_stairs_polishing.json index 40e711d46..1ddd654fa 100644 --- a/src/main/resources/data/mineralogy/recipe/granite_brick_stairs_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/granite_brick_stairs_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:granite_brick_stairs" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:granite_smooth_brick_stairs", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:granite_brick_stairs", + "#c:sands" + ], + "result": { + "id": "mineralogy:granite_smooth_brick_stairs", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/granite_brick_wall.json b/src/main/resources/data/mineralogy/recipe/granite_brick_wall.json index 4d543c5b7..aad95d785 100644 --- a/src/main/resources/data/mineralogy/recipe/granite_brick_wall.json +++ b/src/main/resources/data/mineralogy/recipe/granite_brick_wall.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/granite/brick" - } - }, - "result": { - "id": "mineralogy:granite_brick_wall", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/granite/brick" + }, + "result": { + "id": "mineralogy:granite_brick_wall", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/granite_brick_wall_polishing.json b/src/main/resources/data/mineralogy/recipe/granite_brick_wall_polishing.json index 2e1c18bb9..a66d581de 100644 --- a/src/main/resources/data/mineralogy/recipe/granite_brick_wall_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/granite_brick_wall_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:granite_brick_wall" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:granite_smooth_brick_wall", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:granite_brick_wall", + "#c:sands" + ], + "result": { + "id": "mineralogy:granite_smooth_brick_wall", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/granite_cobblestone.json b/src/main/resources/data/mineralogy/recipe/granite_cobblestone.json index 547dea8f1..59c3fd27c 100644 --- a/src/main/resources/data/mineralogy/recipe/granite_cobblestone.json +++ b/src/main/resources/data/mineralogy/recipe/granite_cobblestone.json @@ -1,22 +1,14 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "tag": "mineralogy:stones/granite" - }, - { - "tag": "mineralogy:stones/granite" - }, - { - "item": "minecraft:gravel" - }, - { - "item": "minecraft:gravel" - } - ], - "result": { - "id": "minecraft:cobblestone", - "count": 4 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "#mineralogy:stones/granite", + "#mineralogy:stones/granite", + "minecraft:gravel", + "minecraft:gravel" + ], + "result": { + "id": "minecraft:cobblestone", + "count": 4 + } } diff --git a/src/main/resources/data/mineralogy/recipe/granite_furnace.json b/src/main/resources/data/mineralogy/recipe/granite_furnace.json index ee967aee4..b55deb9db 100644 --- a/src/main/resources/data/mineralogy/recipe/granite_furnace.json +++ b/src/main/resources/data/mineralogy/recipe/granite_furnace.json @@ -1,22 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "xxx", - "xyx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:slabs/granite" - }, - "y": { - "item": "minecraft:furnace" - } - }, - "result": { - "id": "mineralogy:granite_furnace", - "count": 1 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "xxx", + "xyx", + "xxx" + ], + "key": { + "x": "#mineralogy:slabs/granite", + "y": "minecraft:furnace" + }, + "result": { + "id": "mineralogy:granite_furnace", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/granite_polished_brick_slab_recombination.json b/src/main/resources/data/mineralogy/recipe/granite_polished_brick_slab_recombination.json index dcf66d418..618ac2adf 100644 --- a/src/main/resources/data/mineralogy/recipe/granite_polished_brick_slab_recombination.json +++ b/src/main/resources/data/mineralogy/recipe/granite_polished_brick_slab_recombination.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:granite_smooth_brick_slab" - }, - { - "item": "mineralogy:granite_smooth_brick_slab" - } - ], - "result": { - "id": "mineralogy:granite_smooth_brick", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:granite_smooth_brick_slab", + "mineralogy:granite_smooth_brick_slab" + ], + "result": { + "id": "mineralogy:granite_smooth_brick", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/granite_polished_slab_recombination.json b/src/main/resources/data/mineralogy/recipe/granite_polished_slab_recombination.json index 259371f6f..b68d49a28 100644 --- a/src/main/resources/data/mineralogy/recipe/granite_polished_slab_recombination.json +++ b/src/main/resources/data/mineralogy/recipe/granite_polished_slab_recombination.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:granite_smooth_slab" - }, - { - "item": "mineralogy:granite_smooth_slab" - } - ], - "result": { - "id": "mineralogy:granite_smooth", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:granite_smooth_slab", + "mineralogy:granite_smooth_slab" + ], + "result": { + "id": "mineralogy:granite_smooth", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/granite_polished_slabs_to_brick.json b/src/main/resources/data/mineralogy/recipe/granite_polished_slabs_to_brick.json index 29fbc3b6e..60c8f78ed 100644 --- a/src/main/resources/data/mineralogy/recipe/granite_polished_slabs_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/granite_polished_slabs_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:granite_smooth_slab" - } - }, - "result": { - "id": "mineralogy:granite_smooth_brick_slab", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:granite_smooth_slab" + }, + "result": { + "id": "mineralogy:granite_smooth_brick_slab", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/granite_polished_stairs_to_brick.json b/src/main/resources/data/mineralogy/recipe/granite_polished_stairs_to_brick.json index f214e5a39..a7b312e11 100644 --- a/src/main/resources/data/mineralogy/recipe/granite_polished_stairs_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/granite_polished_stairs_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:granite_smooth_stairs" - } - }, - "result": { - "id": "mineralogy:granite_smooth_brick_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:granite_smooth_stairs" + }, + "result": { + "id": "mineralogy:granite_smooth_brick_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/granite_polished_walls_to_brick.json b/src/main/resources/data/mineralogy/recipe/granite_polished_walls_to_brick.json index 1b3b6003d..3639a3453 100644 --- a/src/main/resources/data/mineralogy/recipe/granite_polished_walls_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/granite_polished_walls_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:granite_smooth_wall" - } - }, - "result": { - "id": "mineralogy:granite_smooth_brick_wall", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:granite_smooth_wall" + }, + "result": { + "id": "mineralogy:granite_smooth_brick_wall", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/granite_raw_slab_polishing.json b/src/main/resources/data/mineralogy/recipe/granite_raw_slab_polishing.json index 0a5c5ae09..a90978029 100644 --- a/src/main/resources/data/mineralogy/recipe/granite_raw_slab_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/granite_raw_slab_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:granite_slab" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:granite_smooth_slab", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:granite_slab", + "#c:sands" + ], + "result": { + "id": "mineralogy:granite_smooth_slab", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/granite_raw_slab_recombination.json b/src/main/resources/data/mineralogy/recipe/granite_raw_slab_recombination.json index af57e46cd..ba8ff855f 100644 --- a/src/main/resources/data/mineralogy/recipe/granite_raw_slab_recombination.json +++ b/src/main/resources/data/mineralogy/recipe/granite_raw_slab_recombination.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:granite_slab" - }, - { - "item": "mineralogy:granite_slab" - } - ], - "result": { - "id": "mineralogy:granite", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:granite_slab", + "mineralogy:granite_slab" + ], + "result": { + "id": "mineralogy:granite", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/granite_raw_slabs_to_brick.json b/src/main/resources/data/mineralogy/recipe/granite_raw_slabs_to_brick.json index eb9b9ef27..9d8ae58d7 100644 --- a/src/main/resources/data/mineralogy/recipe/granite_raw_slabs_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/granite_raw_slabs_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:granite_slab" - } - }, - "result": { - "id": "mineralogy:granite_brick_slab", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:granite_slab" + }, + "result": { + "id": "mineralogy:granite_brick_slab", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/granite_raw_stairs_polishing.json b/src/main/resources/data/mineralogy/recipe/granite_raw_stairs_polishing.json index 50322dd6d..b8b450dd3 100644 --- a/src/main/resources/data/mineralogy/recipe/granite_raw_stairs_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/granite_raw_stairs_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:granite_stairs" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:granite_smooth_stairs", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:granite_stairs", + "#c:sands" + ], + "result": { + "id": "mineralogy:granite_smooth_stairs", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/granite_raw_stairs_to_brick.json b/src/main/resources/data/mineralogy/recipe/granite_raw_stairs_to_brick.json index 2bc47ef5c..5e163e9cc 100644 --- a/src/main/resources/data/mineralogy/recipe/granite_raw_stairs_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/granite_raw_stairs_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:granite_stairs" - } - }, - "result": { - "id": "mineralogy:granite_brick_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:granite_stairs" + }, + "result": { + "id": "mineralogy:granite_brick_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/granite_raw_wall_polishing.json b/src/main/resources/data/mineralogy/recipe/granite_raw_wall_polishing.json index 6a599d973..ef109dd02 100644 --- a/src/main/resources/data/mineralogy/recipe/granite_raw_wall_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/granite_raw_wall_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:granite_wall" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:granite_smooth_wall", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:granite_wall", + "#c:sands" + ], + "result": { + "id": "mineralogy:granite_smooth_wall", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/granite_raw_walls_to_brick.json b/src/main/resources/data/mineralogy/recipe/granite_raw_walls_to_brick.json index 5de125b39..250c7b1cd 100644 --- a/src/main/resources/data/mineralogy/recipe/granite_raw_walls_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/granite_raw_walls_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:granite_wall" - } - }, - "result": { - "id": "mineralogy:granite_brick_wall", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:granite_wall" + }, + "result": { + "id": "mineralogy:granite_brick_wall", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/granite_relief_axe.json b/src/main/resources/data/mineralogy/recipe/granite_relief_axe.json index 9a616c28d..752a2c2d0 100644 --- a/src/main/resources/data/mineralogy/recipe/granite_relief_axe.json +++ b/src/main/resources/data/mineralogy/recipe/granite_relief_axe.json @@ -1,37 +1,19 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:granite_relief_blank" - }, - { - "item": "mineralogy:granite_relief_blank" - }, - { - "item": "mineralogy:granite_relief_blank" - }, - { - "item": "mineralogy:granite_relief_blank" - }, - { - "item": "mineralogy:granite_relief_blank" - }, - { - "item": "mineralogy:granite_relief_blank" - }, - { - "item": "mineralogy:granite_relief_blank" - }, - { - "item": "mineralogy:granite_relief_blank" - }, - { - "item": "minecraft:stone_axe" - } - ], - "result": { - "id": "mineralogy:granite_relief_axe", - "count": 8 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:granite_relief_blank", + "mineralogy:granite_relief_blank", + "mineralogy:granite_relief_blank", + "mineralogy:granite_relief_blank", + "mineralogy:granite_relief_blank", + "mineralogy:granite_relief_blank", + "mineralogy:granite_relief_blank", + "mineralogy:granite_relief_blank", + "minecraft:stone_axe" + ], + "result": { + "id": "mineralogy:granite_relief_axe", + "count": 8 + } } diff --git a/src/main/resources/data/mineralogy/recipe/granite_relief_blank.json b/src/main/resources/data/mineralogy/recipe/granite_relief_blank.json index 5aacb507f..51817e891 100644 --- a/src/main/resources/data/mineralogy/recipe/granite_relief_blank.json +++ b/src/main/resources/data/mineralogy/recipe/granite_relief_blank.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/granite/smooth" - } - }, - "result": { - "id": "mineralogy:granite_relief_blank", - "count": 16 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/granite/smooth" + }, + "result": { + "id": "mineralogy:granite_relief_blank", + "count": 16 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/granite_relief_cross.json b/src/main/resources/data/mineralogy/recipe/granite_relief_cross.json index e1d4cdfa4..9411e187a 100644 --- a/src/main/resources/data/mineralogy/recipe/granite_relief_cross.json +++ b/src/main/resources/data/mineralogy/recipe/granite_relief_cross.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x x", - " ", - "x x" - ], - "key": { - "x": { - "item": "mineralogy:granite_relief_blank" - } - }, - "result": { - "id": "mineralogy:granite_relief_cross", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x x", + " ", + "x x" + ], + "key": { + "x": "mineralogy:granite_relief_blank" + }, + "result": { + "id": "mineralogy:granite_relief_cross", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/granite_relief_hammer.json b/src/main/resources/data/mineralogy/recipe/granite_relief_hammer.json index 8873d9f29..fae3435e2 100644 --- a/src/main/resources/data/mineralogy/recipe/granite_relief_hammer.json +++ b/src/main/resources/data/mineralogy/recipe/granite_relief_hammer.json @@ -1,25 +1,19 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "zxz", - "zyz", - "zzz" - ], - "key": { - "x": { - "item": "mineralogy:granite_smooth" - }, - "y": { - "item": "minecraft:stick" - }, - "z": { - "item": "mineralogy:granite_relief_blank" - } - }, - "result": { - "id": "mineralogy:granite_relief_hammer", - "count": 7 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "zxz", + "zyz", + "zzz" + ], + "key": { + "x": "mineralogy:granite_smooth", + "y": "minecraft:stick", + "z": "mineralogy:granite_relief_blank" + }, + "result": { + "id": "mineralogy:granite_relief_hammer", + "count": 7 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/granite_relief_hoe.json b/src/main/resources/data/mineralogy/recipe/granite_relief_hoe.json index 6103a73de..3892abed0 100644 --- a/src/main/resources/data/mineralogy/recipe/granite_relief_hoe.json +++ b/src/main/resources/data/mineralogy/recipe/granite_relief_hoe.json @@ -1,37 +1,19 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:granite_relief_blank" - }, - { - "item": "mineralogy:granite_relief_blank" - }, - { - "item": "mineralogy:granite_relief_blank" - }, - { - "item": "mineralogy:granite_relief_blank" - }, - { - "item": "mineralogy:granite_relief_blank" - }, - { - "item": "mineralogy:granite_relief_blank" - }, - { - "item": "mineralogy:granite_relief_blank" - }, - { - "item": "mineralogy:granite_relief_blank" - }, - { - "item": "minecraft:stone_hoe" - } - ], - "result": { - "id": "mineralogy:granite_relief_hoe", - "count": 8 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:granite_relief_blank", + "mineralogy:granite_relief_blank", + "mineralogy:granite_relief_blank", + "mineralogy:granite_relief_blank", + "mineralogy:granite_relief_blank", + "mineralogy:granite_relief_blank", + "mineralogy:granite_relief_blank", + "mineralogy:granite_relief_blank", + "minecraft:stone_hoe" + ], + "result": { + "id": "mineralogy:granite_relief_hoe", + "count": 8 + } } diff --git a/src/main/resources/data/mineralogy/recipe/granite_relief_horizontal.json b/src/main/resources/data/mineralogy/recipe/granite_relief_horizontal.json index d766797d0..c6ba3d31e 100644 --- a/src/main/resources/data/mineralogy/recipe/granite_relief_horizontal.json +++ b/src/main/resources/data/mineralogy/recipe/granite_relief_horizontal.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:granite_relief_blank" - } - }, - "result": { - "id": "mineralogy:granite_relief_horizontal", - "count": 3 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:granite_relief_blank" + }, + "result": { + "id": "mineralogy:granite_relief_horizontal", + "count": 3 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/granite_relief_i.json b/src/main/resources/data/mineralogy/recipe/granite_relief_i.json index d9c7ab551..9e8d518ff 100644 --- a/src/main/resources/data/mineralogy/recipe/granite_relief_i.json +++ b/src/main/resources/data/mineralogy/recipe/granite_relief_i.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - " x ", - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:granite_relief_blank" - } - }, - "result": { - "id": "mineralogy:granite_relief_i", - "count": 7 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + " x ", + "xxx" + ], + "key": { + "x": "mineralogy:granite_relief_blank" + }, + "result": { + "id": "mineralogy:granite_relief_i", + "count": 7 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/granite_relief_left.json b/src/main/resources/data/mineralogy/recipe/granite_relief_left.json index a68b5ab44..187bf2092 100644 --- a/src/main/resources/data/mineralogy/recipe/granite_relief_left.json +++ b/src/main/resources/data/mineralogy/recipe/granite_relief_left.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - " x ", - " x" - ], - "key": { - "x": { - "item": "mineralogy:granite_relief_blank" - } - }, - "result": { - "id": "mineralogy:granite_relief_left", - "count": 3 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + " x ", + " x" + ], + "key": { + "x": "mineralogy:granite_relief_blank" + }, + "result": { + "id": "mineralogy:granite_relief_left", + "count": 3 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/granite_relief_pickaxe.json b/src/main/resources/data/mineralogy/recipe/granite_relief_pickaxe.json index ec0750f3b..bd280773e 100644 --- a/src/main/resources/data/mineralogy/recipe/granite_relief_pickaxe.json +++ b/src/main/resources/data/mineralogy/recipe/granite_relief_pickaxe.json @@ -1,37 +1,19 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:granite_relief_blank" - }, - { - "item": "mineralogy:granite_relief_blank" - }, - { - "item": "mineralogy:granite_relief_blank" - }, - { - "item": "mineralogy:granite_relief_blank" - }, - { - "item": "mineralogy:granite_relief_blank" - }, - { - "item": "mineralogy:granite_relief_blank" - }, - { - "item": "mineralogy:granite_relief_blank" - }, - { - "item": "mineralogy:granite_relief_blank" - }, - { - "item": "minecraft:stone_pickaxe" - } - ], - "result": { - "id": "mineralogy:granite_relief_pickaxe", - "count": 8 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:granite_relief_blank", + "mineralogy:granite_relief_blank", + "mineralogy:granite_relief_blank", + "mineralogy:granite_relief_blank", + "mineralogy:granite_relief_blank", + "mineralogy:granite_relief_blank", + "mineralogy:granite_relief_blank", + "mineralogy:granite_relief_blank", + "minecraft:stone_pickaxe" + ], + "result": { + "id": "mineralogy:granite_relief_pickaxe", + "count": 8 + } } diff --git a/src/main/resources/data/mineralogy/recipe/granite_relief_plus.json b/src/main/resources/data/mineralogy/recipe/granite_relief_plus.json index 7029381d6..f809659ee 100644 --- a/src/main/resources/data/mineralogy/recipe/granite_relief_plus.json +++ b/src/main/resources/data/mineralogy/recipe/granite_relief_plus.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - " x ", - "xxx", - " x " - ], - "key": { - "x": { - "item": "mineralogy:granite_relief_blank" - } - }, - "result": { - "id": "mineralogy:granite_relief_plus", - "count": 5 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + " x ", + "xxx", + " x " + ], + "key": { + "x": "mineralogy:granite_relief_blank" + }, + "result": { + "id": "mineralogy:granite_relief_plus", + "count": 5 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/granite_relief_right.json b/src/main/resources/data/mineralogy/recipe/granite_relief_right.json index 9985d9de3..5fb0a3f40 100644 --- a/src/main/resources/data/mineralogy/recipe/granite_relief_right.json +++ b/src/main/resources/data/mineralogy/recipe/granite_relief_right.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:granite_relief_left" - }, - { - "item": "mineralogy:granite_relief_left" - } - ], - "result": { - "id": "mineralogy:granite_relief_right", - "count": 2 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:granite_relief_left", + "mineralogy:granite_relief_left" + ], + "result": { + "id": "mineralogy:granite_relief_right", + "count": 2 + } } diff --git a/src/main/resources/data/mineralogy/recipe/granite_relief_sword.json b/src/main/resources/data/mineralogy/recipe/granite_relief_sword.json index 480b68c0e..3584590a8 100644 --- a/src/main/resources/data/mineralogy/recipe/granite_relief_sword.json +++ b/src/main/resources/data/mineralogy/recipe/granite_relief_sword.json @@ -1,37 +1,19 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:granite_relief_blank" - }, - { - "item": "mineralogy:granite_relief_blank" - }, - { - "item": "mineralogy:granite_relief_blank" - }, - { - "item": "mineralogy:granite_relief_blank" - }, - { - "item": "mineralogy:granite_relief_blank" - }, - { - "item": "mineralogy:granite_relief_blank" - }, - { - "item": "mineralogy:granite_relief_blank" - }, - { - "item": "mineralogy:granite_relief_blank" - }, - { - "item": "minecraft:stone_sword" - } - ], - "result": { - "id": "mineralogy:granite_relief_sword", - "count": 8 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:granite_relief_blank", + "mineralogy:granite_relief_blank", + "mineralogy:granite_relief_blank", + "mineralogy:granite_relief_blank", + "mineralogy:granite_relief_blank", + "mineralogy:granite_relief_blank", + "mineralogy:granite_relief_blank", + "mineralogy:granite_relief_blank", + "minecraft:stone_sword" + ], + "result": { + "id": "mineralogy:granite_relief_sword", + "count": 8 + } } diff --git a/src/main/resources/data/mineralogy/recipe/granite_relief_vertical.json b/src/main/resources/data/mineralogy/recipe/granite_relief_vertical.json index b5bca930d..4dcff74a2 100644 --- a/src/main/resources/data/mineralogy/recipe/granite_relief_vertical.json +++ b/src/main/resources/data/mineralogy/recipe/granite_relief_vertical.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x", - "x", - "x" - ], - "key": { - "x": { - "item": "mineralogy:granite_relief_blank" - } - }, - "result": { - "id": "mineralogy:granite_relief_vertical", - "count": 3 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x", + "x", + "x" + ], + "key": { + "x": "mineralogy:granite_relief_blank" + }, + "result": { + "id": "mineralogy:granite_relief_vertical", + "count": 3 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/granite_slab.json b/src/main/resources/data/mineralogy/recipe/granite_slab.json index 4652e63fa..34c6e7a18 100644 --- a/src/main/resources/data/mineralogy/recipe/granite_slab.json +++ b/src/main/resources/data/mineralogy/recipe/granite_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:granite" - } - }, - "result": { - "id": "mineralogy:granite_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:granite" + }, + "result": { + "id": "mineralogy:granite_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/granite_slab_from_vanilla.json b/src/main/resources/data/mineralogy/recipe/granite_slab_from_vanilla.json index 500c6465f..313ff57ec 100644 --- a/src/main/resources/data/mineralogy/recipe/granite_slab_from_vanilla.json +++ b/src/main/resources/data/mineralogy/recipe/granite_slab_from_vanilla.json @@ -1,13 +1,11 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "minecraft:granite_slab" - } - ], - "result": { - "id": "mineralogy:granite_slab", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "minecraft:granite_slab" + ], + "result": { + "id": "mineralogy:granite_slab", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/granite_slab_to_vanilla.json b/src/main/resources/data/mineralogy/recipe/granite_slab_to_vanilla.json index 40f42d26b..dbef98a7b 100644 --- a/src/main/resources/data/mineralogy/recipe/granite_slab_to_vanilla.json +++ b/src/main/resources/data/mineralogy/recipe/granite_slab_to_vanilla.json @@ -1,13 +1,11 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:granite_slab" - } - ], - "result": { - "id": "minecraft:granite_slab", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:granite_slab" + ], + "result": { + "id": "minecraft:granite_slab", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/granite_smooth.json b/src/main/resources/data/mineralogy/recipe/granite_smooth.json index 3f3d4bb4e..7a7d1aaf8 100644 --- a/src/main/resources/data/mineralogy/recipe/granite_smooth.json +++ b/src/main/resources/data/mineralogy/recipe/granite_smooth.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:granite" - }, - { - "item": "minecraft:sand" - } - ], - "result": { - "id": "mineralogy:granite_smooth", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:granite", + "minecraft:sand" + ], + "result": { + "id": "mineralogy:granite_smooth", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/granite_smooth_brick.json b/src/main/resources/data/mineralogy/recipe/granite_smooth_brick.json index 58f3e6199..9908f0c04 100644 --- a/src/main/resources/data/mineralogy/recipe/granite_smooth_brick.json +++ b/src/main/resources/data/mineralogy/recipe/granite_smooth_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/granite/smooth" - } - }, - "result": { - "id": "mineralogy:granite_smooth_brick", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "#mineralogy:stones/granite/smooth" + }, + "result": { + "id": "mineralogy:granite_smooth_brick", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/granite_smooth_brick_furnace.json b/src/main/resources/data/mineralogy/recipe/granite_smooth_brick_furnace.json index 5e55c2862..0ca9fb20e 100644 --- a/src/main/resources/data/mineralogy/recipe/granite_smooth_brick_furnace.json +++ b/src/main/resources/data/mineralogy/recipe/granite_smooth_brick_furnace.json @@ -1,22 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "xxx", - "xyx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:slabs/granite/smooth_brick" - }, - "y": { - "item": "minecraft:furnace" - } - }, - "result": { - "id": "mineralogy:granite_smooth_brick_furnace", - "count": 1 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "xxx", + "xyx", + "xxx" + ], + "key": { + "x": "#mineralogy:slabs/granite/smooth_brick", + "y": "minecraft:furnace" + }, + "result": { + "id": "mineralogy:granite_smooth_brick_furnace", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/granite_smooth_brick_slab.json b/src/main/resources/data/mineralogy/recipe/granite_smooth_brick_slab.json index 51205dc9b..e6bea2bc3 100644 --- a/src/main/resources/data/mineralogy/recipe/granite_smooth_brick_slab.json +++ b/src/main/resources/data/mineralogy/recipe/granite_smooth_brick_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:granite_smooth_brick" - } - }, - "result": { - "id": "mineralogy:granite_smooth_brick_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:granite_smooth_brick" + }, + "result": { + "id": "mineralogy:granite_smooth_brick_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/granite_smooth_brick_stairs.json b/src/main/resources/data/mineralogy/recipe/granite_smooth_brick_stairs.json index fee3ba73d..f49bc58bb 100644 --- a/src/main/resources/data/mineralogy/recipe/granite_smooth_brick_stairs.json +++ b/src/main/resources/data/mineralogy/recipe/granite_smooth_brick_stairs.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - "xx ", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/granite/smooth_brick" - } - }, - "result": { - "id": "mineralogy:granite_smooth_brick_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + "xx ", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/granite/smooth_brick" + }, + "result": { + "id": "mineralogy:granite_smooth_brick_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/granite_smooth_brick_wall.json b/src/main/resources/data/mineralogy/recipe/granite_smooth_brick_wall.json index ee0c2635f..d2c13b128 100644 --- a/src/main/resources/data/mineralogy/recipe/granite_smooth_brick_wall.json +++ b/src/main/resources/data/mineralogy/recipe/granite_smooth_brick_wall.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/granite/smooth_brick" - } - }, - "result": { - "id": "mineralogy:granite_smooth_brick_wall", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/granite/smooth_brick" + }, + "result": { + "id": "mineralogy:granite_smooth_brick_wall", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/granite_smooth_furnace.json b/src/main/resources/data/mineralogy/recipe/granite_smooth_furnace.json index f3d5ef55b..5c07a5ba0 100644 --- a/src/main/resources/data/mineralogy/recipe/granite_smooth_furnace.json +++ b/src/main/resources/data/mineralogy/recipe/granite_smooth_furnace.json @@ -1,22 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "xxx", - "xyx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:slabs/granite/smooth" - }, - "y": { - "item": "minecraft:furnace" - } - }, - "result": { - "id": "mineralogy:granite_smooth_furnace", - "count": 1 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "xxx", + "xyx", + "xxx" + ], + "key": { + "x": "#mineralogy:slabs/granite/smooth", + "y": "minecraft:furnace" + }, + "result": { + "id": "mineralogy:granite_smooth_furnace", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/granite_smooth_slab.json b/src/main/resources/data/mineralogy/recipe/granite_smooth_slab.json index 667669a4d..a4049e8cf 100644 --- a/src/main/resources/data/mineralogy/recipe/granite_smooth_slab.json +++ b/src/main/resources/data/mineralogy/recipe/granite_smooth_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:granite_smooth" - } - }, - "result": { - "id": "mineralogy:granite_smooth_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:granite_smooth" + }, + "result": { + "id": "mineralogy:granite_smooth_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/granite_smooth_slab_from_vanilla.json b/src/main/resources/data/mineralogy/recipe/granite_smooth_slab_from_vanilla.json index b0a6907b9..e6d81b2af 100644 --- a/src/main/resources/data/mineralogy/recipe/granite_smooth_slab_from_vanilla.json +++ b/src/main/resources/data/mineralogy/recipe/granite_smooth_slab_from_vanilla.json @@ -1,13 +1,11 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "minecraft:polished_granite_slab" - } - ], - "result": { - "id": "mineralogy:granite_smooth_slab", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "minecraft:polished_granite_slab" + ], + "result": { + "id": "mineralogy:granite_smooth_slab", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/granite_smooth_slab_to_vanilla.json b/src/main/resources/data/mineralogy/recipe/granite_smooth_slab_to_vanilla.json index 1dd04c51a..47f70085a 100644 --- a/src/main/resources/data/mineralogy/recipe/granite_smooth_slab_to_vanilla.json +++ b/src/main/resources/data/mineralogy/recipe/granite_smooth_slab_to_vanilla.json @@ -1,13 +1,11 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:granite_smooth_slab" - } - ], - "result": { - "id": "minecraft:polished_granite_slab", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:granite_smooth_slab" + ], + "result": { + "id": "minecraft:polished_granite_slab", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/granite_smooth_stairs.json b/src/main/resources/data/mineralogy/recipe/granite_smooth_stairs.json index c62d479d8..3d227439a 100644 --- a/src/main/resources/data/mineralogy/recipe/granite_smooth_stairs.json +++ b/src/main/resources/data/mineralogy/recipe/granite_smooth_stairs.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - "xx ", - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:granite_smooth" - } - }, - "result": { - "id": "mineralogy:granite_smooth_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + "xx ", + "xxx" + ], + "key": { + "x": "mineralogy:granite_smooth" + }, + "result": { + "id": "mineralogy:granite_smooth_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/granite_smooth_wall.json b/src/main/resources/data/mineralogy/recipe/granite_smooth_wall.json index f454548d1..261d183d7 100644 --- a/src/main/resources/data/mineralogy/recipe/granite_smooth_wall.json +++ b/src/main/resources/data/mineralogy/recipe/granite_smooth_wall.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/granite/smooth" - } - }, - "result": { - "id": "mineralogy:granite_smooth_wall", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/granite/smooth" + }, + "result": { + "id": "mineralogy:granite_smooth_wall", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/granite_stairs.json b/src/main/resources/data/mineralogy/recipe/granite_stairs.json index 932836e58..b2d27f781 100644 --- a/src/main/resources/data/mineralogy/recipe/granite_stairs.json +++ b/src/main/resources/data/mineralogy/recipe/granite_stairs.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - "xx ", - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:granite" - } - }, - "result": { - "id": "mineralogy:granite_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + "xx ", + "xxx" + ], + "key": { + "x": "mineralogy:granite" + }, + "result": { + "id": "mineralogy:granite_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/granite_to_stone.json b/src/main/resources/data/mineralogy/recipe/granite_to_stone.json index 87d9e2b33..ba02e975c 100644 --- a/src/main/resources/data/mineralogy/recipe/granite_to_stone.json +++ b/src/main/resources/data/mineralogy/recipe/granite_to_stone.json @@ -1,12 +1,10 @@ { - "type": "minecraft:smelting", - "category": "blocks", - "ingredient": { - "item": "mineralogy:granite" - }, - "result": { - "id": "minecraft:stone" - }, - "experience": 0.1, - "cookingtime": 200 + "type": "minecraft:smelting", + "category": "blocks", + "ingredient": "mineralogy:granite", + "result": { + "id": "minecraft:stone" + }, + "experience": 0.1, + "cookingtime": 200 } diff --git a/src/main/resources/data/mineralogy/recipe/granite_wall.json b/src/main/resources/data/mineralogy/recipe/granite_wall.json index d2bd8521b..b01f7f251 100644 --- a/src/main/resources/data/mineralogy/recipe/granite_wall.json +++ b/src/main/resources/data/mineralogy/recipe/granite_wall.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:granite" - } - }, - "result": { - "id": "mineralogy:granite_wall", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx" + ], + "key": { + "x": "mineralogy:granite" + }, + "result": { + "id": "mineralogy:granite_wall", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/gravel_to_stone.json b/src/main/resources/data/mineralogy/recipe/gravel_to_stone.json index 35a80d0f7..c7879f4ee 100644 --- a/src/main/resources/data/mineralogy/recipe/gravel_to_stone.json +++ b/src/main/resources/data/mineralogy/recipe/gravel_to_stone.json @@ -1,18 +1,16 @@ { - "type": "minecraft:smelting", - "category": "blocks", - "ingredient": { - "item": "minecraft:gravel" - }, - "result": { - "id": "minecraft:stone" - }, - "experience": 0.1, - "cookingtime": 200, - "conditions": [ - { - "type": "mineralogy:config", - "flag": "SMELTABLE_GRAVEL" - } - ] + "type": "minecraft:smelting", + "category": "blocks", + "ingredient": "minecraft:gravel", + "result": { + "id": "minecraft:stone" + }, + "experience": 0.1, + "cookingtime": 200, + "conditions": [ + { + "type": "mineralogy:config", + "flag": "SMELTABLE_GRAVEL" + } + ] } diff --git a/src/main/resources/data/mineralogy/recipe/gunpowder_from_carbon_dust.json b/src/main/resources/data/mineralogy/recipe/gunpowder_from_carbon_dust.json index 0a884c273..7c6cd41e3 100644 --- a/src/main/resources/data/mineralogy/recipe/gunpowder_from_carbon_dust.json +++ b/src/main/resources/data/mineralogy/recipe/gunpowder_from_carbon_dust.json @@ -1,37 +1,31 @@ { - "neoforge:conditions": [ - { - "type": "neoforge:and", - "values": [ - { - "type": "mineralogy:config", - "flag": "ENABLE_MINERAL_DUSTS" - }, - { - "type": "neoforge:not", - "value": { - "type": "neoforge:tag_empty", - "tag": "c:dusts/carbon" - } - } - ] - } - ], - "type": "minecraft:crafting_shapeless", - "category": "misc", - "ingredients": [ - { - "tag": "c:dusts/carbon" - }, - { - "tag": "c:dusts/nitrate" - }, - { - "tag": "c:dusts/sulfur" - } - ], - "result": { - "id": "minecraft:gunpowder", - "count": 4 - } + "neoforge:conditions": [ + { + "type": "neoforge:and", + "values": [ + { + "type": "mineralogy:config", + "flag": "ENABLE_MINERAL_DUSTS" + }, + { + "type": "neoforge:not", + "value": { + "type": "neoforge:tag_empty", + "tag": "c:dusts/carbon" + } + } + ] + } + ], + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + "#c:dusts/carbon", + "#c:dusts/nitrate", + "#c:dusts/sulfur" + ], + "result": { + "id": "minecraft:gunpowder", + "count": 4 + } } diff --git a/src/main/resources/data/mineralogy/recipe/gunpowder_from_charcoal.json b/src/main/resources/data/mineralogy/recipe/gunpowder_from_charcoal.json index 874c1843f..a870c5f66 100644 --- a/src/main/resources/data/mineralogy/recipe/gunpowder_from_charcoal.json +++ b/src/main/resources/data/mineralogy/recipe/gunpowder_from_charcoal.json @@ -1,25 +1,19 @@ { - "neoforge:conditions": [ - { - "type": "mineralogy:config", - "flag": "ENABLE_MINERAL_DUSTS" - } - ], - "type": "minecraft:crafting_shapeless", - "category": "misc", - "ingredients": [ - { - "item": "minecraft:charcoal" - }, - { - "tag": "c:dusts/nitrate" - }, - { - "tag": "c:dusts/sulfur" - } - ], - "result": { - "id": "minecraft:gunpowder", - "count": 4 - } + "neoforge:conditions": [ + { + "type": "mineralogy:config", + "flag": "ENABLE_MINERAL_DUSTS" + } + ], + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + "minecraft:charcoal", + "#c:dusts/nitrate", + "#c:dusts/sulfur" + ], + "result": { + "id": "minecraft:gunpowder", + "count": 4 + } } diff --git a/src/main/resources/data/mineralogy/recipe/gunpowder_from_coal_dust.json b/src/main/resources/data/mineralogy/recipe/gunpowder_from_coal_dust.json index 2391abed3..f98a850da 100644 --- a/src/main/resources/data/mineralogy/recipe/gunpowder_from_coal_dust.json +++ b/src/main/resources/data/mineralogy/recipe/gunpowder_from_coal_dust.json @@ -1,37 +1,31 @@ { - "neoforge:conditions": [ - { - "type": "neoforge:and", - "values": [ - { - "type": "mineralogy:config", - "flag": "ENABLE_MINERAL_DUSTS" - }, - { - "type": "neoforge:not", - "value": { - "type": "neoforge:tag_empty", - "tag": "c:dusts/coal" - } - } - ] - } - ], - "type": "minecraft:crafting_shapeless", - "category": "misc", - "ingredients": [ - { - "tag": "c:dusts/coal" - }, - { - "tag": "c:dusts/nitrate" - }, - { - "tag": "c:dusts/sulfur" - } - ], - "result": { - "id": "minecraft:gunpowder", - "count": 4 - } + "neoforge:conditions": [ + { + "type": "neoforge:and", + "values": [ + { + "type": "mineralogy:config", + "flag": "ENABLE_MINERAL_DUSTS" + }, + { + "type": "neoforge:not", + "value": { + "type": "neoforge:tag_empty", + "tag": "c:dusts/coal" + } + } + ] + } + ], + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + "#c:dusts/coal", + "#c:dusts/nitrate", + "#c:dusts/sulfur" + ], + "result": { + "id": "minecraft:gunpowder", + "count": 4 + } } diff --git a/src/main/resources/data/mineralogy/recipe/gunpowder_from_sugar.json b/src/main/resources/data/mineralogy/recipe/gunpowder_from_sugar.json index 81058ca3e..61429713b 100644 --- a/src/main/resources/data/mineralogy/recipe/gunpowder_from_sugar.json +++ b/src/main/resources/data/mineralogy/recipe/gunpowder_from_sugar.json @@ -1,25 +1,19 @@ { - "neoforge:conditions": [ - { - "type": "mineralogy:config", - "flag": "ENABLE_MINERAL_DUSTS" - } - ], - "type": "minecraft:crafting_shapeless", - "category": "misc", - "ingredients": [ - { - "item": "minecraft:sugar" - }, - { - "tag": "c:dusts/nitrate" - }, - { - "tag": "c:dusts/sulfur" - } - ], - "result": { - "id": "minecraft:gunpowder", - "count": 4 - } + "neoforge:conditions": [ + { + "type": "mineralogy:config", + "flag": "ENABLE_MINERAL_DUSTS" + } + ], + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + "minecraft:sugar", + "#c:dusts/nitrate", + "#c:dusts/sulfur" + ], + "result": { + "id": "minecraft:gunpowder", + "count": 4 + } } diff --git a/src/main/resources/data/mineralogy/recipe/gypsum.json b/src/main/resources/data/mineralogy/recipe/gypsum.json index a16fbb307..5d63db0c4 100644 --- a/src/main/resources/data/mineralogy/recipe/gypsum.json +++ b/src/main/resources/data/mineralogy/recipe/gypsum.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "tag": "c:dusts/gypsum" - } - }, - "result": { - "id": "mineralogy:gypsum", - "count": 1 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "#c:dusts/gypsum" + }, + "result": { + "id": "mineralogy:gypsum", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/gypsum_dust.json b/src/main/resources/data/mineralogy/recipe/gypsum_dust.json index 41d630ff9..df5c09be0 100644 --- a/src/main/resources/data/mineralogy/recipe/gypsum_dust.json +++ b/src/main/resources/data/mineralogy/recipe/gypsum_dust.json @@ -1,13 +1,11 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "tag": "c:storage_blocks/gypsum" - } - ], - "result": { - "id": "mineralogy:gypsum_dust", - "count": 4 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "#c:storage_blocks/gypsum" + ], + "result": { + "id": "mineralogy:gypsum_dust", + "count": 4 + } } diff --git a/src/main/resources/data/mineralogy/recipe/hornfels_brick.json b/src/main/resources/data/mineralogy/recipe/hornfels_brick.json index 00b5d8215..18f8579cf 100644 --- a/src/main/resources/data/mineralogy/recipe/hornfels_brick.json +++ b/src/main/resources/data/mineralogy/recipe/hornfels_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/hornfels" - } - }, - "result": { - "id": "mineralogy:hornfels_brick", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "#mineralogy:stones/hornfels" + }, + "result": { + "id": "mineralogy:hornfels_brick", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/hornfels_brick_block_polishing.json b/src/main/resources/data/mineralogy/recipe/hornfels_brick_block_polishing.json index 95c519e2a..11cc07b2b 100644 --- a/src/main/resources/data/mineralogy/recipe/hornfels_brick_block_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/hornfels_brick_block_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:hornfels_brick" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:hornfels_smooth_brick", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:hornfels_brick", + "#c:sands" + ], + "result": { + "id": "mineralogy:hornfels_smooth_brick", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/hornfels_brick_furnace.json b/src/main/resources/data/mineralogy/recipe/hornfels_brick_furnace.json index 94921ba49..163343991 100644 --- a/src/main/resources/data/mineralogy/recipe/hornfels_brick_furnace.json +++ b/src/main/resources/data/mineralogy/recipe/hornfels_brick_furnace.json @@ -1,22 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "xxx", - "xyx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:slabs/hornfels/brick" - }, - "y": { - "item": "minecraft:furnace" - } - }, - "result": { - "id": "mineralogy:hornfels_brick_furnace", - "count": 1 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "xxx", + "xyx", + "xxx" + ], + "key": { + "x": "#mineralogy:slabs/hornfels/brick", + "y": "minecraft:furnace" + }, + "result": { + "id": "mineralogy:hornfels_brick_furnace", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/hornfels_brick_slab.json b/src/main/resources/data/mineralogy/recipe/hornfels_brick_slab.json index 6bcb3521e..65927168f 100644 --- a/src/main/resources/data/mineralogy/recipe/hornfels_brick_slab.json +++ b/src/main/resources/data/mineralogy/recipe/hornfels_brick_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:hornfels_brick" - } - }, - "result": { - "id": "mineralogy:hornfels_brick_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:hornfels_brick" + }, + "result": { + "id": "mineralogy:hornfels_brick_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/hornfels_brick_slab_polishing.json b/src/main/resources/data/mineralogy/recipe/hornfels_brick_slab_polishing.json index 4c51c3490..acc68f5f2 100644 --- a/src/main/resources/data/mineralogy/recipe/hornfels_brick_slab_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/hornfels_brick_slab_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:hornfels_brick_slab" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:hornfels_smooth_brick_slab", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:hornfels_brick_slab", + "#c:sands" + ], + "result": { + "id": "mineralogy:hornfels_smooth_brick_slab", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/hornfels_brick_slab_recombination.json b/src/main/resources/data/mineralogy/recipe/hornfels_brick_slab_recombination.json index c1391abfc..08d0df45a 100644 --- a/src/main/resources/data/mineralogy/recipe/hornfels_brick_slab_recombination.json +++ b/src/main/resources/data/mineralogy/recipe/hornfels_brick_slab_recombination.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:hornfels_brick_slab" - }, - { - "item": "mineralogy:hornfels_brick_slab" - } - ], - "result": { - "id": "mineralogy:hornfels_brick", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:hornfels_brick_slab", + "mineralogy:hornfels_brick_slab" + ], + "result": { + "id": "mineralogy:hornfels_brick", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/hornfels_brick_stairs.json b/src/main/resources/data/mineralogy/recipe/hornfels_brick_stairs.json index 2783b914a..8338f5beb 100644 --- a/src/main/resources/data/mineralogy/recipe/hornfels_brick_stairs.json +++ b/src/main/resources/data/mineralogy/recipe/hornfels_brick_stairs.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - "xx ", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/hornfels/brick" - } - }, - "result": { - "id": "mineralogy:hornfels_brick_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + "xx ", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/hornfels/brick" + }, + "result": { + "id": "mineralogy:hornfels_brick_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/hornfels_brick_stairs_polishing.json b/src/main/resources/data/mineralogy/recipe/hornfels_brick_stairs_polishing.json index db9c0fe69..0a5e998aa 100644 --- a/src/main/resources/data/mineralogy/recipe/hornfels_brick_stairs_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/hornfels_brick_stairs_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:hornfels_brick_stairs" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:hornfels_smooth_brick_stairs", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:hornfels_brick_stairs", + "#c:sands" + ], + "result": { + "id": "mineralogy:hornfels_smooth_brick_stairs", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/hornfels_brick_wall.json b/src/main/resources/data/mineralogy/recipe/hornfels_brick_wall.json index 5482ca108..5d90733de 100644 --- a/src/main/resources/data/mineralogy/recipe/hornfels_brick_wall.json +++ b/src/main/resources/data/mineralogy/recipe/hornfels_brick_wall.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/hornfels/brick" - } - }, - "result": { - "id": "mineralogy:hornfels_brick_wall", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/hornfels/brick" + }, + "result": { + "id": "mineralogy:hornfels_brick_wall", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/hornfels_brick_wall_polishing.json b/src/main/resources/data/mineralogy/recipe/hornfels_brick_wall_polishing.json index 1468ec09c..9e8dbc30d 100644 --- a/src/main/resources/data/mineralogy/recipe/hornfels_brick_wall_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/hornfels_brick_wall_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:hornfels_brick_wall" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:hornfels_smooth_brick_wall", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:hornfels_brick_wall", + "#c:sands" + ], + "result": { + "id": "mineralogy:hornfels_smooth_brick_wall", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/hornfels_cobblestone.json b/src/main/resources/data/mineralogy/recipe/hornfels_cobblestone.json index 34c5214e7..01245de1c 100644 --- a/src/main/resources/data/mineralogy/recipe/hornfels_cobblestone.json +++ b/src/main/resources/data/mineralogy/recipe/hornfels_cobblestone.json @@ -1,22 +1,14 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "tag": "mineralogy:stones/hornfels" - }, - { - "tag": "mineralogy:stones/hornfels" - }, - { - "item": "minecraft:gravel" - }, - { - "item": "minecraft:gravel" - } - ], - "result": { - "id": "minecraft:cobblestone", - "count": 4 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "#mineralogy:stones/hornfels", + "#mineralogy:stones/hornfels", + "minecraft:gravel", + "minecraft:gravel" + ], + "result": { + "id": "minecraft:cobblestone", + "count": 4 + } } diff --git a/src/main/resources/data/mineralogy/recipe/hornfels_furnace.json b/src/main/resources/data/mineralogy/recipe/hornfels_furnace.json index f90cf5174..ba4ac663c 100644 --- a/src/main/resources/data/mineralogy/recipe/hornfels_furnace.json +++ b/src/main/resources/data/mineralogy/recipe/hornfels_furnace.json @@ -1,22 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "xxx", - "xyx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:slabs/hornfels" - }, - "y": { - "item": "minecraft:furnace" - } - }, - "result": { - "id": "mineralogy:hornfels_furnace", - "count": 1 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "xxx", + "xyx", + "xxx" + ], + "key": { + "x": "#mineralogy:slabs/hornfels", + "y": "minecraft:furnace" + }, + "result": { + "id": "mineralogy:hornfels_furnace", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/hornfels_polished_brick_slab_recombination.json b/src/main/resources/data/mineralogy/recipe/hornfels_polished_brick_slab_recombination.json index 678fa4d15..899266cb2 100644 --- a/src/main/resources/data/mineralogy/recipe/hornfels_polished_brick_slab_recombination.json +++ b/src/main/resources/data/mineralogy/recipe/hornfels_polished_brick_slab_recombination.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:hornfels_smooth_brick_slab" - }, - { - "item": "mineralogy:hornfels_smooth_brick_slab" - } - ], - "result": { - "id": "mineralogy:hornfels_smooth_brick", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:hornfels_smooth_brick_slab", + "mineralogy:hornfels_smooth_brick_slab" + ], + "result": { + "id": "mineralogy:hornfels_smooth_brick", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/hornfels_polished_slab_recombination.json b/src/main/resources/data/mineralogy/recipe/hornfels_polished_slab_recombination.json index 8cb0d1f5a..c065da4fa 100644 --- a/src/main/resources/data/mineralogy/recipe/hornfels_polished_slab_recombination.json +++ b/src/main/resources/data/mineralogy/recipe/hornfels_polished_slab_recombination.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:hornfels_smooth_slab" - }, - { - "item": "mineralogy:hornfels_smooth_slab" - } - ], - "result": { - "id": "mineralogy:hornfels_smooth", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:hornfels_smooth_slab", + "mineralogy:hornfels_smooth_slab" + ], + "result": { + "id": "mineralogy:hornfels_smooth", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/hornfels_polished_slabs_to_brick.json b/src/main/resources/data/mineralogy/recipe/hornfels_polished_slabs_to_brick.json index 638443078..b1995ddaf 100644 --- a/src/main/resources/data/mineralogy/recipe/hornfels_polished_slabs_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/hornfels_polished_slabs_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:hornfels_smooth_slab" - } - }, - "result": { - "id": "mineralogy:hornfels_smooth_brick_slab", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:hornfels_smooth_slab" + }, + "result": { + "id": "mineralogy:hornfels_smooth_brick_slab", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/hornfels_polished_stairs_to_brick.json b/src/main/resources/data/mineralogy/recipe/hornfels_polished_stairs_to_brick.json index 794b9bdd0..5558609b5 100644 --- a/src/main/resources/data/mineralogy/recipe/hornfels_polished_stairs_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/hornfels_polished_stairs_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:hornfels_smooth_stairs" - } - }, - "result": { - "id": "mineralogy:hornfels_smooth_brick_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:hornfels_smooth_stairs" + }, + "result": { + "id": "mineralogy:hornfels_smooth_brick_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/hornfels_polished_walls_to_brick.json b/src/main/resources/data/mineralogy/recipe/hornfels_polished_walls_to_brick.json index 8c0c21131..d8264f1d3 100644 --- a/src/main/resources/data/mineralogy/recipe/hornfels_polished_walls_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/hornfels_polished_walls_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:hornfels_smooth_wall" - } - }, - "result": { - "id": "mineralogy:hornfels_smooth_brick_wall", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:hornfels_smooth_wall" + }, + "result": { + "id": "mineralogy:hornfels_smooth_brick_wall", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/hornfels_raw_slab_polishing.json b/src/main/resources/data/mineralogy/recipe/hornfels_raw_slab_polishing.json index 78eaead37..d695029f0 100644 --- a/src/main/resources/data/mineralogy/recipe/hornfels_raw_slab_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/hornfels_raw_slab_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:hornfels_slab" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:hornfels_smooth_slab", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:hornfels_slab", + "#c:sands" + ], + "result": { + "id": "mineralogy:hornfels_smooth_slab", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/hornfels_raw_slab_recombination.json b/src/main/resources/data/mineralogy/recipe/hornfels_raw_slab_recombination.json index 4a9785c80..d55b5240c 100644 --- a/src/main/resources/data/mineralogy/recipe/hornfels_raw_slab_recombination.json +++ b/src/main/resources/data/mineralogy/recipe/hornfels_raw_slab_recombination.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:hornfels_slab" - }, - { - "item": "mineralogy:hornfels_slab" - } - ], - "result": { - "id": "mineralogy:hornfels", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:hornfels_slab", + "mineralogy:hornfels_slab" + ], + "result": { + "id": "mineralogy:hornfels", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/hornfels_raw_slabs_to_brick.json b/src/main/resources/data/mineralogy/recipe/hornfels_raw_slabs_to_brick.json index 682f2feba..786463a17 100644 --- a/src/main/resources/data/mineralogy/recipe/hornfels_raw_slabs_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/hornfels_raw_slabs_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:hornfels_slab" - } - }, - "result": { - "id": "mineralogy:hornfels_brick_slab", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:hornfels_slab" + }, + "result": { + "id": "mineralogy:hornfels_brick_slab", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/hornfels_raw_stairs_polishing.json b/src/main/resources/data/mineralogy/recipe/hornfels_raw_stairs_polishing.json index afa72ac8e..81144ec79 100644 --- a/src/main/resources/data/mineralogy/recipe/hornfels_raw_stairs_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/hornfels_raw_stairs_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:hornfels_stairs" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:hornfels_smooth_stairs", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:hornfels_stairs", + "#c:sands" + ], + "result": { + "id": "mineralogy:hornfels_smooth_stairs", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/hornfels_raw_stairs_to_brick.json b/src/main/resources/data/mineralogy/recipe/hornfels_raw_stairs_to_brick.json index cccb735b2..f1702e478 100644 --- a/src/main/resources/data/mineralogy/recipe/hornfels_raw_stairs_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/hornfels_raw_stairs_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:hornfels_stairs" - } - }, - "result": { - "id": "mineralogy:hornfels_brick_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:hornfels_stairs" + }, + "result": { + "id": "mineralogy:hornfels_brick_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/hornfels_raw_wall_polishing.json b/src/main/resources/data/mineralogy/recipe/hornfels_raw_wall_polishing.json index 9e51d665b..0d738481e 100644 --- a/src/main/resources/data/mineralogy/recipe/hornfels_raw_wall_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/hornfels_raw_wall_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:hornfels_wall" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:hornfels_smooth_wall", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:hornfels_wall", + "#c:sands" + ], + "result": { + "id": "mineralogy:hornfels_smooth_wall", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/hornfels_raw_walls_to_brick.json b/src/main/resources/data/mineralogy/recipe/hornfels_raw_walls_to_brick.json index 1a08b1954..c0ff89d4f 100644 --- a/src/main/resources/data/mineralogy/recipe/hornfels_raw_walls_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/hornfels_raw_walls_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:hornfels_wall" - } - }, - "result": { - "id": "mineralogy:hornfels_brick_wall", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:hornfels_wall" + }, + "result": { + "id": "mineralogy:hornfels_brick_wall", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/hornfels_relief_axe.json b/src/main/resources/data/mineralogy/recipe/hornfels_relief_axe.json index b6822cca7..73f554fd1 100644 --- a/src/main/resources/data/mineralogy/recipe/hornfels_relief_axe.json +++ b/src/main/resources/data/mineralogy/recipe/hornfels_relief_axe.json @@ -1,37 +1,19 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:hornfels_relief_blank" - }, - { - "item": "mineralogy:hornfels_relief_blank" - }, - { - "item": "mineralogy:hornfels_relief_blank" - }, - { - "item": "mineralogy:hornfels_relief_blank" - }, - { - "item": "mineralogy:hornfels_relief_blank" - }, - { - "item": "mineralogy:hornfels_relief_blank" - }, - { - "item": "mineralogy:hornfels_relief_blank" - }, - { - "item": "mineralogy:hornfels_relief_blank" - }, - { - "item": "minecraft:stone_axe" - } - ], - "result": { - "id": "mineralogy:hornfels_relief_axe", - "count": 8 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:hornfels_relief_blank", + "mineralogy:hornfels_relief_blank", + "mineralogy:hornfels_relief_blank", + "mineralogy:hornfels_relief_blank", + "mineralogy:hornfels_relief_blank", + "mineralogy:hornfels_relief_blank", + "mineralogy:hornfels_relief_blank", + "mineralogy:hornfels_relief_blank", + "minecraft:stone_axe" + ], + "result": { + "id": "mineralogy:hornfels_relief_axe", + "count": 8 + } } diff --git a/src/main/resources/data/mineralogy/recipe/hornfels_relief_blank.json b/src/main/resources/data/mineralogy/recipe/hornfels_relief_blank.json index 49ea6d06a..c4978ab22 100644 --- a/src/main/resources/data/mineralogy/recipe/hornfels_relief_blank.json +++ b/src/main/resources/data/mineralogy/recipe/hornfels_relief_blank.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx", - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:hornfels_smooth" - } - }, - "result": { - "id": "mineralogy:hornfels_relief_blank", - "count": 16 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx", + "xxx" + ], + "key": { + "x": "mineralogy:hornfels_smooth" + }, + "result": { + "id": "mineralogy:hornfels_relief_blank", + "count": 16 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/hornfels_relief_cross.json b/src/main/resources/data/mineralogy/recipe/hornfels_relief_cross.json index d38a9f7b8..39ae08c04 100644 --- a/src/main/resources/data/mineralogy/recipe/hornfels_relief_cross.json +++ b/src/main/resources/data/mineralogy/recipe/hornfels_relief_cross.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x x", - " ", - "x x" - ], - "key": { - "x": { - "item": "mineralogy:hornfels_relief_blank" - } - }, - "result": { - "id": "mineralogy:hornfels_relief_cross", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x x", + " ", + "x x" + ], + "key": { + "x": "mineralogy:hornfels_relief_blank" + }, + "result": { + "id": "mineralogy:hornfels_relief_cross", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/hornfels_relief_hammer.json b/src/main/resources/data/mineralogy/recipe/hornfels_relief_hammer.json index 81cb0710b..b2f160c3b 100644 --- a/src/main/resources/data/mineralogy/recipe/hornfels_relief_hammer.json +++ b/src/main/resources/data/mineralogy/recipe/hornfels_relief_hammer.json @@ -1,25 +1,19 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "zxz", - "zyz", - "zzz" - ], - "key": { - "x": { - "item": "mineralogy:hornfels_smooth" - }, - "y": { - "item": "minecraft:stick" - }, - "z": { - "item": "mineralogy:hornfels_relief_blank" - } - }, - "result": { - "id": "mineralogy:hornfels_relief_hammer", - "count": 7 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "zxz", + "zyz", + "zzz" + ], + "key": { + "x": "mineralogy:hornfels_smooth", + "y": "minecraft:stick", + "z": "mineralogy:hornfels_relief_blank" + }, + "result": { + "id": "mineralogy:hornfels_relief_hammer", + "count": 7 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/hornfels_relief_hoe.json b/src/main/resources/data/mineralogy/recipe/hornfels_relief_hoe.json index cdbd4679e..2f2b2a05e 100644 --- a/src/main/resources/data/mineralogy/recipe/hornfels_relief_hoe.json +++ b/src/main/resources/data/mineralogy/recipe/hornfels_relief_hoe.json @@ -1,37 +1,19 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:hornfels_relief_blank" - }, - { - "item": "mineralogy:hornfels_relief_blank" - }, - { - "item": "mineralogy:hornfels_relief_blank" - }, - { - "item": "mineralogy:hornfels_relief_blank" - }, - { - "item": "mineralogy:hornfels_relief_blank" - }, - { - "item": "mineralogy:hornfels_relief_blank" - }, - { - "item": "mineralogy:hornfels_relief_blank" - }, - { - "item": "mineralogy:hornfels_relief_blank" - }, - { - "item": "minecraft:stone_hoe" - } - ], - "result": { - "id": "mineralogy:hornfels_relief_hoe", - "count": 8 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:hornfels_relief_blank", + "mineralogy:hornfels_relief_blank", + "mineralogy:hornfels_relief_blank", + "mineralogy:hornfels_relief_blank", + "mineralogy:hornfels_relief_blank", + "mineralogy:hornfels_relief_blank", + "mineralogy:hornfels_relief_blank", + "mineralogy:hornfels_relief_blank", + "minecraft:stone_hoe" + ], + "result": { + "id": "mineralogy:hornfels_relief_hoe", + "count": 8 + } } diff --git a/src/main/resources/data/mineralogy/recipe/hornfels_relief_horizontal.json b/src/main/resources/data/mineralogy/recipe/hornfels_relief_horizontal.json index 3ec7f88d8..f4e23abe7 100644 --- a/src/main/resources/data/mineralogy/recipe/hornfels_relief_horizontal.json +++ b/src/main/resources/data/mineralogy/recipe/hornfels_relief_horizontal.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:hornfels_relief_blank" - } - }, - "result": { - "id": "mineralogy:hornfels_relief_horizontal", - "count": 3 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:hornfels_relief_blank" + }, + "result": { + "id": "mineralogy:hornfels_relief_horizontal", + "count": 3 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/hornfels_relief_i.json b/src/main/resources/data/mineralogy/recipe/hornfels_relief_i.json index 1549ca27e..2e471f0ea 100644 --- a/src/main/resources/data/mineralogy/recipe/hornfels_relief_i.json +++ b/src/main/resources/data/mineralogy/recipe/hornfels_relief_i.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - " x ", - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:hornfels_relief_blank" - } - }, - "result": { - "id": "mineralogy:hornfels_relief_i", - "count": 7 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + " x ", + "xxx" + ], + "key": { + "x": "mineralogy:hornfels_relief_blank" + }, + "result": { + "id": "mineralogy:hornfels_relief_i", + "count": 7 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/hornfels_relief_left.json b/src/main/resources/data/mineralogy/recipe/hornfels_relief_left.json index ec38ad5ea..09002221e 100644 --- a/src/main/resources/data/mineralogy/recipe/hornfels_relief_left.json +++ b/src/main/resources/data/mineralogy/recipe/hornfels_relief_left.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - " x ", - " x" - ], - "key": { - "x": { - "item": "mineralogy:hornfels_relief_blank" - } - }, - "result": { - "id": "mineralogy:hornfels_relief_left", - "count": 3 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + " x ", + " x" + ], + "key": { + "x": "mineralogy:hornfels_relief_blank" + }, + "result": { + "id": "mineralogy:hornfels_relief_left", + "count": 3 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/hornfels_relief_pickaxe.json b/src/main/resources/data/mineralogy/recipe/hornfels_relief_pickaxe.json index b525edaf4..73aa22387 100644 --- a/src/main/resources/data/mineralogy/recipe/hornfels_relief_pickaxe.json +++ b/src/main/resources/data/mineralogy/recipe/hornfels_relief_pickaxe.json @@ -1,37 +1,19 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:hornfels_relief_blank" - }, - { - "item": "mineralogy:hornfels_relief_blank" - }, - { - "item": "mineralogy:hornfels_relief_blank" - }, - { - "item": "mineralogy:hornfels_relief_blank" - }, - { - "item": "mineralogy:hornfels_relief_blank" - }, - { - "item": "mineralogy:hornfels_relief_blank" - }, - { - "item": "mineralogy:hornfels_relief_blank" - }, - { - "item": "mineralogy:hornfels_relief_blank" - }, - { - "item": "minecraft:stone_pickaxe" - } - ], - "result": { - "id": "mineralogy:hornfels_relief_pickaxe", - "count": 8 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:hornfels_relief_blank", + "mineralogy:hornfels_relief_blank", + "mineralogy:hornfels_relief_blank", + "mineralogy:hornfels_relief_blank", + "mineralogy:hornfels_relief_blank", + "mineralogy:hornfels_relief_blank", + "mineralogy:hornfels_relief_blank", + "mineralogy:hornfels_relief_blank", + "minecraft:stone_pickaxe" + ], + "result": { + "id": "mineralogy:hornfels_relief_pickaxe", + "count": 8 + } } diff --git a/src/main/resources/data/mineralogy/recipe/hornfels_relief_plus.json b/src/main/resources/data/mineralogy/recipe/hornfels_relief_plus.json index 741d767d1..78239bf5a 100644 --- a/src/main/resources/data/mineralogy/recipe/hornfels_relief_plus.json +++ b/src/main/resources/data/mineralogy/recipe/hornfels_relief_plus.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - " x ", - "xxx", - " x " - ], - "key": { - "x": { - "item": "mineralogy:hornfels_relief_blank" - } - }, - "result": { - "id": "mineralogy:hornfels_relief_plus", - "count": 5 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + " x ", + "xxx", + " x " + ], + "key": { + "x": "mineralogy:hornfels_relief_blank" + }, + "result": { + "id": "mineralogy:hornfels_relief_plus", + "count": 5 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/hornfels_relief_right.json b/src/main/resources/data/mineralogy/recipe/hornfels_relief_right.json index d3bb5681a..c5dcf290f 100644 --- a/src/main/resources/data/mineralogy/recipe/hornfels_relief_right.json +++ b/src/main/resources/data/mineralogy/recipe/hornfels_relief_right.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:hornfels_relief_left" - }, - { - "item": "mineralogy:hornfels_relief_left" - } - ], - "result": { - "id": "mineralogy:hornfels_relief_right", - "count": 2 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:hornfels_relief_left", + "mineralogy:hornfels_relief_left" + ], + "result": { + "id": "mineralogy:hornfels_relief_right", + "count": 2 + } } diff --git a/src/main/resources/data/mineralogy/recipe/hornfels_relief_sword.json b/src/main/resources/data/mineralogy/recipe/hornfels_relief_sword.json index 7153df1cb..fe0126ea3 100644 --- a/src/main/resources/data/mineralogy/recipe/hornfels_relief_sword.json +++ b/src/main/resources/data/mineralogy/recipe/hornfels_relief_sword.json @@ -1,37 +1,19 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:hornfels_relief_blank" - }, - { - "item": "mineralogy:hornfels_relief_blank" - }, - { - "item": "mineralogy:hornfels_relief_blank" - }, - { - "item": "mineralogy:hornfels_relief_blank" - }, - { - "item": "mineralogy:hornfels_relief_blank" - }, - { - "item": "mineralogy:hornfels_relief_blank" - }, - { - "item": "mineralogy:hornfels_relief_blank" - }, - { - "item": "mineralogy:hornfels_relief_blank" - }, - { - "item": "minecraft:stone_sword" - } - ], - "result": { - "id": "mineralogy:hornfels_relief_sword", - "count": 8 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:hornfels_relief_blank", + "mineralogy:hornfels_relief_blank", + "mineralogy:hornfels_relief_blank", + "mineralogy:hornfels_relief_blank", + "mineralogy:hornfels_relief_blank", + "mineralogy:hornfels_relief_blank", + "mineralogy:hornfels_relief_blank", + "mineralogy:hornfels_relief_blank", + "minecraft:stone_sword" + ], + "result": { + "id": "mineralogy:hornfels_relief_sword", + "count": 8 + } } diff --git a/src/main/resources/data/mineralogy/recipe/hornfels_relief_vertical.json b/src/main/resources/data/mineralogy/recipe/hornfels_relief_vertical.json index 9397ae847..23f206a45 100644 --- a/src/main/resources/data/mineralogy/recipe/hornfels_relief_vertical.json +++ b/src/main/resources/data/mineralogy/recipe/hornfels_relief_vertical.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x", - "x", - "x" - ], - "key": { - "x": { - "item": "mineralogy:hornfels_relief_blank" - } - }, - "result": { - "id": "mineralogy:hornfels_relief_vertical", - "count": 3 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x", + "x", + "x" + ], + "key": { + "x": "mineralogy:hornfels_relief_blank" + }, + "result": { + "id": "mineralogy:hornfels_relief_vertical", + "count": 3 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/hornfels_slab.json b/src/main/resources/data/mineralogy/recipe/hornfels_slab.json index ab1e7af15..19a8d2833 100644 --- a/src/main/resources/data/mineralogy/recipe/hornfels_slab.json +++ b/src/main/resources/data/mineralogy/recipe/hornfels_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:hornfels" - } - }, - "result": { - "id": "mineralogy:hornfels_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:hornfels" + }, + "result": { + "id": "mineralogy:hornfels_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/hornfels_smooth.json b/src/main/resources/data/mineralogy/recipe/hornfels_smooth.json index e7c9ad8c6..7fca94739 100644 --- a/src/main/resources/data/mineralogy/recipe/hornfels_smooth.json +++ b/src/main/resources/data/mineralogy/recipe/hornfels_smooth.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "tag": "mineralogy:stones/hornfels" - }, - { - "item": "minecraft:sand" - } - ], - "result": { - "id": "mineralogy:hornfels_smooth", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "#mineralogy:stones/hornfels", + "minecraft:sand" + ], + "result": { + "id": "mineralogy:hornfels_smooth", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/hornfels_smooth_brick.json b/src/main/resources/data/mineralogy/recipe/hornfels_smooth_brick.json index 0ee668297..19bf45a8e 100644 --- a/src/main/resources/data/mineralogy/recipe/hornfels_smooth_brick.json +++ b/src/main/resources/data/mineralogy/recipe/hornfels_smooth_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/hornfels/smooth" - } - }, - "result": { - "id": "mineralogy:hornfels_smooth_brick", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "#mineralogy:stones/hornfels/smooth" + }, + "result": { + "id": "mineralogy:hornfels_smooth_brick", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/hornfels_smooth_brick_furnace.json b/src/main/resources/data/mineralogy/recipe/hornfels_smooth_brick_furnace.json index 6634f193f..a4ddfff28 100644 --- a/src/main/resources/data/mineralogy/recipe/hornfels_smooth_brick_furnace.json +++ b/src/main/resources/data/mineralogy/recipe/hornfels_smooth_brick_furnace.json @@ -1,22 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "xxx", - "xyx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:slabs/hornfels/smooth_brick" - }, - "y": { - "item": "minecraft:furnace" - } - }, - "result": { - "id": "mineralogy:hornfels_smooth_brick_furnace", - "count": 1 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "xxx", + "xyx", + "xxx" + ], + "key": { + "x": "#mineralogy:slabs/hornfels/smooth_brick", + "y": "minecraft:furnace" + }, + "result": { + "id": "mineralogy:hornfels_smooth_brick_furnace", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/hornfels_smooth_brick_slab.json b/src/main/resources/data/mineralogy/recipe/hornfels_smooth_brick_slab.json index b317bf530..a0bb217a5 100644 --- a/src/main/resources/data/mineralogy/recipe/hornfels_smooth_brick_slab.json +++ b/src/main/resources/data/mineralogy/recipe/hornfels_smooth_brick_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:hornfels_smooth_brick" - } - }, - "result": { - "id": "mineralogy:hornfels_smooth_brick_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:hornfels_smooth_brick" + }, + "result": { + "id": "mineralogy:hornfels_smooth_brick_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/hornfels_smooth_brick_stairs.json b/src/main/resources/data/mineralogy/recipe/hornfels_smooth_brick_stairs.json index 7784edc32..90fb67f11 100644 --- a/src/main/resources/data/mineralogy/recipe/hornfels_smooth_brick_stairs.json +++ b/src/main/resources/data/mineralogy/recipe/hornfels_smooth_brick_stairs.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - "xx ", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/hornfels/smooth_brick" - } - }, - "result": { - "id": "mineralogy:hornfels_smooth_brick_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + "xx ", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/hornfels/smooth_brick" + }, + "result": { + "id": "mineralogy:hornfels_smooth_brick_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/hornfels_smooth_brick_wall.json b/src/main/resources/data/mineralogy/recipe/hornfels_smooth_brick_wall.json index bf5f46cbe..8cd7f3ebc 100644 --- a/src/main/resources/data/mineralogy/recipe/hornfels_smooth_brick_wall.json +++ b/src/main/resources/data/mineralogy/recipe/hornfels_smooth_brick_wall.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/hornfels/smooth_brick" - } - }, - "result": { - "id": "mineralogy:hornfels_smooth_brick_wall", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/hornfels/smooth_brick" + }, + "result": { + "id": "mineralogy:hornfels_smooth_brick_wall", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/hornfels_smooth_furnace.json b/src/main/resources/data/mineralogy/recipe/hornfels_smooth_furnace.json index 500726956..77c52869b 100644 --- a/src/main/resources/data/mineralogy/recipe/hornfels_smooth_furnace.json +++ b/src/main/resources/data/mineralogy/recipe/hornfels_smooth_furnace.json @@ -1,22 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "xxx", - "xyx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:slabs/hornfels/smooth" - }, - "y": { - "item": "minecraft:furnace" - } - }, - "result": { - "id": "mineralogy:hornfels_smooth_furnace", - "count": 1 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "xxx", + "xyx", + "xxx" + ], + "key": { + "x": "#mineralogy:slabs/hornfels/smooth", + "y": "minecraft:furnace" + }, + "result": { + "id": "mineralogy:hornfels_smooth_furnace", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/hornfels_smooth_slab.json b/src/main/resources/data/mineralogy/recipe/hornfels_smooth_slab.json index 2b6d731c6..410c8cce2 100644 --- a/src/main/resources/data/mineralogy/recipe/hornfels_smooth_slab.json +++ b/src/main/resources/data/mineralogy/recipe/hornfels_smooth_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:hornfels_smooth" - } - }, - "result": { - "id": "mineralogy:hornfels_smooth_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:hornfels_smooth" + }, + "result": { + "id": "mineralogy:hornfels_smooth_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/hornfels_smooth_stairs.json b/src/main/resources/data/mineralogy/recipe/hornfels_smooth_stairs.json index ce516d608..7e8b8a419 100644 --- a/src/main/resources/data/mineralogy/recipe/hornfels_smooth_stairs.json +++ b/src/main/resources/data/mineralogy/recipe/hornfels_smooth_stairs.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - "xx ", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/hornfels/smooth" - } - }, - "result": { - "id": "mineralogy:hornfels_smooth_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + "xx ", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/hornfels/smooth" + }, + "result": { + "id": "mineralogy:hornfels_smooth_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/hornfels_smooth_wall.json b/src/main/resources/data/mineralogy/recipe/hornfels_smooth_wall.json index b0fde45cd..6af86dbd6 100644 --- a/src/main/resources/data/mineralogy/recipe/hornfels_smooth_wall.json +++ b/src/main/resources/data/mineralogy/recipe/hornfels_smooth_wall.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/hornfels/smooth" - } - }, - "result": { - "id": "mineralogy:hornfels_smooth_wall", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/hornfels/smooth" + }, + "result": { + "id": "mineralogy:hornfels_smooth_wall", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/hornfels_stairs.json b/src/main/resources/data/mineralogy/recipe/hornfels_stairs.json index a8477374f..67a274aa8 100644 --- a/src/main/resources/data/mineralogy/recipe/hornfels_stairs.json +++ b/src/main/resources/data/mineralogy/recipe/hornfels_stairs.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - "xx ", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/hornfels" - } - }, - "result": { - "id": "mineralogy:hornfels_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + "xx ", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/hornfels" + }, + "result": { + "id": "mineralogy:hornfels_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/hornfels_to_stone.json b/src/main/resources/data/mineralogy/recipe/hornfels_to_stone.json index a8e3f107b..3ec0e63e8 100644 --- a/src/main/resources/data/mineralogy/recipe/hornfels_to_stone.json +++ b/src/main/resources/data/mineralogy/recipe/hornfels_to_stone.json @@ -1,12 +1,10 @@ { - "type": "minecraft:smelting", - "category": "blocks", - "ingredient": { - "item": "mineralogy:hornfels" - }, - "result": { - "id": "minecraft:stone" - }, - "experience": 0.1, - "cookingtime": 200 + "type": "minecraft:smelting", + "category": "blocks", + "ingredient": "mineralogy:hornfels", + "result": { + "id": "minecraft:stone" + }, + "experience": 0.1, + "cookingtime": 200 } diff --git a/src/main/resources/data/mineralogy/recipe/hornfels_wall.json b/src/main/resources/data/mineralogy/recipe/hornfels_wall.json index b9451ca76..6dd560dfb 100644 --- a/src/main/resources/data/mineralogy/recipe/hornfels_wall.json +++ b/src/main/resources/data/mineralogy/recipe/hornfels_wall.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/hornfels" - } - }, - "result": { - "id": "mineralogy:hornfels_wall", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/hornfels" + }, + "result": { + "id": "mineralogy:hornfels_wall", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/limestone_brick.json b/src/main/resources/data/mineralogy/recipe/limestone_brick.json index 01fd7e4d5..72f28b55b 100644 --- a/src/main/resources/data/mineralogy/recipe/limestone_brick.json +++ b/src/main/resources/data/mineralogy/recipe/limestone_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/limestone" - } - }, - "result": { - "id": "mineralogy:limestone_brick", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "#mineralogy:stones/limestone" + }, + "result": { + "id": "mineralogy:limestone_brick", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/limestone_brick_block_polishing.json b/src/main/resources/data/mineralogy/recipe/limestone_brick_block_polishing.json index 0dc114788..cd820653c 100644 --- a/src/main/resources/data/mineralogy/recipe/limestone_brick_block_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/limestone_brick_block_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:limestone_brick" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:limestone_smooth_brick", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:limestone_brick", + "#c:sands" + ], + "result": { + "id": "mineralogy:limestone_smooth_brick", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/limestone_brick_furnace.json b/src/main/resources/data/mineralogy/recipe/limestone_brick_furnace.json index 7dcd2da7c..3e091ff5a 100644 --- a/src/main/resources/data/mineralogy/recipe/limestone_brick_furnace.json +++ b/src/main/resources/data/mineralogy/recipe/limestone_brick_furnace.json @@ -1,22 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "xxx", - "xyx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:slabs/limestone/brick" - }, - "y": { - "item": "minecraft:furnace" - } - }, - "result": { - "id": "mineralogy:limestone_brick_furnace", - "count": 1 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "xxx", + "xyx", + "xxx" + ], + "key": { + "x": "#mineralogy:slabs/limestone/brick", + "y": "minecraft:furnace" + }, + "result": { + "id": "mineralogy:limestone_brick_furnace", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/limestone_brick_slab.json b/src/main/resources/data/mineralogy/recipe/limestone_brick_slab.json index 4d1bc7960..c6a3a15ae 100644 --- a/src/main/resources/data/mineralogy/recipe/limestone_brick_slab.json +++ b/src/main/resources/data/mineralogy/recipe/limestone_brick_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:limestone_brick" - } - }, - "result": { - "id": "mineralogy:limestone_brick_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:limestone_brick" + }, + "result": { + "id": "mineralogy:limestone_brick_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/limestone_brick_slab_polishing.json b/src/main/resources/data/mineralogy/recipe/limestone_brick_slab_polishing.json index 6bf3848b4..08abdf85f 100644 --- a/src/main/resources/data/mineralogy/recipe/limestone_brick_slab_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/limestone_brick_slab_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:limestone_brick_slab" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:limestone_smooth_brick_slab", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:limestone_brick_slab", + "#c:sands" + ], + "result": { + "id": "mineralogy:limestone_smooth_brick_slab", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/limestone_brick_slab_recombination.json b/src/main/resources/data/mineralogy/recipe/limestone_brick_slab_recombination.json index 0315d3260..f576236b6 100644 --- a/src/main/resources/data/mineralogy/recipe/limestone_brick_slab_recombination.json +++ b/src/main/resources/data/mineralogy/recipe/limestone_brick_slab_recombination.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:limestone_brick_slab" - }, - { - "item": "mineralogy:limestone_brick_slab" - } - ], - "result": { - "id": "mineralogy:limestone_brick", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:limestone_brick_slab", + "mineralogy:limestone_brick_slab" + ], + "result": { + "id": "mineralogy:limestone_brick", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/limestone_brick_stairs.json b/src/main/resources/data/mineralogy/recipe/limestone_brick_stairs.json index 96b9215c9..d99173440 100644 --- a/src/main/resources/data/mineralogy/recipe/limestone_brick_stairs.json +++ b/src/main/resources/data/mineralogy/recipe/limestone_brick_stairs.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - "xx ", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/limestone/brick" - } - }, - "result": { - "id": "mineralogy:limestone_brick_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + "xx ", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/limestone/brick" + }, + "result": { + "id": "mineralogy:limestone_brick_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/limestone_brick_stairs_polishing.json b/src/main/resources/data/mineralogy/recipe/limestone_brick_stairs_polishing.json index af374ed97..a188a533a 100644 --- a/src/main/resources/data/mineralogy/recipe/limestone_brick_stairs_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/limestone_brick_stairs_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:limestone_brick_stairs" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:limestone_smooth_brick_stairs", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:limestone_brick_stairs", + "#c:sands" + ], + "result": { + "id": "mineralogy:limestone_smooth_brick_stairs", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/limestone_brick_wall.json b/src/main/resources/data/mineralogy/recipe/limestone_brick_wall.json index 96465b6b6..09f0d5415 100644 --- a/src/main/resources/data/mineralogy/recipe/limestone_brick_wall.json +++ b/src/main/resources/data/mineralogy/recipe/limestone_brick_wall.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/limestone/brick" - } - }, - "result": { - "id": "mineralogy:limestone_brick_wall", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/limestone/brick" + }, + "result": { + "id": "mineralogy:limestone_brick_wall", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/limestone_brick_wall_polishing.json b/src/main/resources/data/mineralogy/recipe/limestone_brick_wall_polishing.json index 6de3403dd..0b7ffc999 100644 --- a/src/main/resources/data/mineralogy/recipe/limestone_brick_wall_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/limestone_brick_wall_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:limestone_brick_wall" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:limestone_smooth_brick_wall", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:limestone_brick_wall", + "#c:sands" + ], + "result": { + "id": "mineralogy:limestone_smooth_brick_wall", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/limestone_cobblestone.json b/src/main/resources/data/mineralogy/recipe/limestone_cobblestone.json index 0f5516d47..30f3b6e1c 100644 --- a/src/main/resources/data/mineralogy/recipe/limestone_cobblestone.json +++ b/src/main/resources/data/mineralogy/recipe/limestone_cobblestone.json @@ -1,22 +1,14 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "tag": "mineralogy:stones/limestone" - }, - { - "tag": "mineralogy:stones/limestone" - }, - { - "item": "minecraft:gravel" - }, - { - "item": "minecraft:gravel" - } - ], - "result": { - "id": "minecraft:cobblestone", - "count": 4 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "#mineralogy:stones/limestone", + "#mineralogy:stones/limestone", + "minecraft:gravel", + "minecraft:gravel" + ], + "result": { + "id": "minecraft:cobblestone", + "count": 4 + } } diff --git a/src/main/resources/data/mineralogy/recipe/limestone_furnace.json b/src/main/resources/data/mineralogy/recipe/limestone_furnace.json index 9873c9ddf..2f3bb9ac0 100644 --- a/src/main/resources/data/mineralogy/recipe/limestone_furnace.json +++ b/src/main/resources/data/mineralogy/recipe/limestone_furnace.json @@ -1,22 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "xxx", - "xyx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:slabs/limestone" - }, - "y": { - "item": "minecraft:furnace" - } - }, - "result": { - "id": "mineralogy:limestone_furnace", - "count": 1 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "xxx", + "xyx", + "xxx" + ], + "key": { + "x": "#mineralogy:slabs/limestone", + "y": "minecraft:furnace" + }, + "result": { + "id": "mineralogy:limestone_furnace", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/limestone_polished_brick_slab_recombination.json b/src/main/resources/data/mineralogy/recipe/limestone_polished_brick_slab_recombination.json index 10838a759..de4052ca2 100644 --- a/src/main/resources/data/mineralogy/recipe/limestone_polished_brick_slab_recombination.json +++ b/src/main/resources/data/mineralogy/recipe/limestone_polished_brick_slab_recombination.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:limestone_smooth_brick_slab" - }, - { - "item": "mineralogy:limestone_smooth_brick_slab" - } - ], - "result": { - "id": "mineralogy:limestone_smooth_brick", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:limestone_smooth_brick_slab", + "mineralogy:limestone_smooth_brick_slab" + ], + "result": { + "id": "mineralogy:limestone_smooth_brick", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/limestone_polished_slab_recombination.json b/src/main/resources/data/mineralogy/recipe/limestone_polished_slab_recombination.json index 93aa84800..46bcd7c3b 100644 --- a/src/main/resources/data/mineralogy/recipe/limestone_polished_slab_recombination.json +++ b/src/main/resources/data/mineralogy/recipe/limestone_polished_slab_recombination.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:limestone_smooth_slab" - }, - { - "item": "mineralogy:limestone_smooth_slab" - } - ], - "result": { - "id": "mineralogy:limestone_smooth", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:limestone_smooth_slab", + "mineralogy:limestone_smooth_slab" + ], + "result": { + "id": "mineralogy:limestone_smooth", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/limestone_polished_slabs_to_brick.json b/src/main/resources/data/mineralogy/recipe/limestone_polished_slabs_to_brick.json index 12b7b41ab..2e778004f 100644 --- a/src/main/resources/data/mineralogy/recipe/limestone_polished_slabs_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/limestone_polished_slabs_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:limestone_smooth_slab" - } - }, - "result": { - "id": "mineralogy:limestone_smooth_brick_slab", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:limestone_smooth_slab" + }, + "result": { + "id": "mineralogy:limestone_smooth_brick_slab", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/limestone_polished_stairs_to_brick.json b/src/main/resources/data/mineralogy/recipe/limestone_polished_stairs_to_brick.json index 4a285db2b..e820b35d5 100644 --- a/src/main/resources/data/mineralogy/recipe/limestone_polished_stairs_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/limestone_polished_stairs_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:limestone_smooth_stairs" - } - }, - "result": { - "id": "mineralogy:limestone_smooth_brick_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:limestone_smooth_stairs" + }, + "result": { + "id": "mineralogy:limestone_smooth_brick_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/limestone_polished_walls_to_brick.json b/src/main/resources/data/mineralogy/recipe/limestone_polished_walls_to_brick.json index 493344830..359f039a0 100644 --- a/src/main/resources/data/mineralogy/recipe/limestone_polished_walls_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/limestone_polished_walls_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:limestone_smooth_wall" - } - }, - "result": { - "id": "mineralogy:limestone_smooth_brick_wall", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:limestone_smooth_wall" + }, + "result": { + "id": "mineralogy:limestone_smooth_brick_wall", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/limestone_raw_slab_polishing.json b/src/main/resources/data/mineralogy/recipe/limestone_raw_slab_polishing.json index 380916ff3..ae40bae00 100644 --- a/src/main/resources/data/mineralogy/recipe/limestone_raw_slab_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/limestone_raw_slab_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:limestone_slab" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:limestone_smooth_slab", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:limestone_slab", + "#c:sands" + ], + "result": { + "id": "mineralogy:limestone_smooth_slab", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/limestone_raw_slab_recombination.json b/src/main/resources/data/mineralogy/recipe/limestone_raw_slab_recombination.json index 4aaa91a23..0bae50e3d 100644 --- a/src/main/resources/data/mineralogy/recipe/limestone_raw_slab_recombination.json +++ b/src/main/resources/data/mineralogy/recipe/limestone_raw_slab_recombination.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:limestone_slab" - }, - { - "item": "mineralogy:limestone_slab" - } - ], - "result": { - "id": "mineralogy:limestone", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:limestone_slab", + "mineralogy:limestone_slab" + ], + "result": { + "id": "mineralogy:limestone", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/limestone_raw_slabs_to_brick.json b/src/main/resources/data/mineralogy/recipe/limestone_raw_slabs_to_brick.json index 370c72af9..6cfc531bb 100644 --- a/src/main/resources/data/mineralogy/recipe/limestone_raw_slabs_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/limestone_raw_slabs_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:limestone_slab" - } - }, - "result": { - "id": "mineralogy:limestone_brick_slab", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:limestone_slab" + }, + "result": { + "id": "mineralogy:limestone_brick_slab", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/limestone_raw_stairs_polishing.json b/src/main/resources/data/mineralogy/recipe/limestone_raw_stairs_polishing.json index 666094b86..5543549a7 100644 --- a/src/main/resources/data/mineralogy/recipe/limestone_raw_stairs_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/limestone_raw_stairs_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:limestone_stairs" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:limestone_smooth_stairs", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:limestone_stairs", + "#c:sands" + ], + "result": { + "id": "mineralogy:limestone_smooth_stairs", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/limestone_raw_stairs_to_brick.json b/src/main/resources/data/mineralogy/recipe/limestone_raw_stairs_to_brick.json index c9d8788f7..16b1b6011 100644 --- a/src/main/resources/data/mineralogy/recipe/limestone_raw_stairs_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/limestone_raw_stairs_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:limestone_stairs" - } - }, - "result": { - "id": "mineralogy:limestone_brick_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:limestone_stairs" + }, + "result": { + "id": "mineralogy:limestone_brick_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/limestone_raw_wall_polishing.json b/src/main/resources/data/mineralogy/recipe/limestone_raw_wall_polishing.json index cbd643d73..2d10dab97 100644 --- a/src/main/resources/data/mineralogy/recipe/limestone_raw_wall_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/limestone_raw_wall_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:limestone_wall" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:limestone_smooth_wall", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:limestone_wall", + "#c:sands" + ], + "result": { + "id": "mineralogy:limestone_smooth_wall", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/limestone_raw_walls_to_brick.json b/src/main/resources/data/mineralogy/recipe/limestone_raw_walls_to_brick.json index 2880aaa36..d5aad15f8 100644 --- a/src/main/resources/data/mineralogy/recipe/limestone_raw_walls_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/limestone_raw_walls_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:limestone_wall" - } - }, - "result": { - "id": "mineralogy:limestone_brick_wall", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:limestone_wall" + }, + "result": { + "id": "mineralogy:limestone_brick_wall", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/limestone_relief_axe.json b/src/main/resources/data/mineralogy/recipe/limestone_relief_axe.json index a86795314..85c7c4793 100644 --- a/src/main/resources/data/mineralogy/recipe/limestone_relief_axe.json +++ b/src/main/resources/data/mineralogy/recipe/limestone_relief_axe.json @@ -1,37 +1,19 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:limestone_relief_blank" - }, - { - "item": "mineralogy:limestone_relief_blank" - }, - { - "item": "mineralogy:limestone_relief_blank" - }, - { - "item": "mineralogy:limestone_relief_blank" - }, - { - "item": "mineralogy:limestone_relief_blank" - }, - { - "item": "mineralogy:limestone_relief_blank" - }, - { - "item": "mineralogy:limestone_relief_blank" - }, - { - "item": "mineralogy:limestone_relief_blank" - }, - { - "item": "minecraft:stone_axe" - } - ], - "result": { - "id": "mineralogy:limestone_relief_axe", - "count": 8 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:limestone_relief_blank", + "mineralogy:limestone_relief_blank", + "mineralogy:limestone_relief_blank", + "mineralogy:limestone_relief_blank", + "mineralogy:limestone_relief_blank", + "mineralogy:limestone_relief_blank", + "mineralogy:limestone_relief_blank", + "mineralogy:limestone_relief_blank", + "minecraft:stone_axe" + ], + "result": { + "id": "mineralogy:limestone_relief_axe", + "count": 8 + } } diff --git a/src/main/resources/data/mineralogy/recipe/limestone_relief_blank.json b/src/main/resources/data/mineralogy/recipe/limestone_relief_blank.json index e0457df19..33dc1c497 100644 --- a/src/main/resources/data/mineralogy/recipe/limestone_relief_blank.json +++ b/src/main/resources/data/mineralogy/recipe/limestone_relief_blank.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx", - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:limestone_smooth" - } - }, - "result": { - "id": "mineralogy:limestone_relief_blank", - "count": 16 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx", + "xxx" + ], + "key": { + "x": "mineralogy:limestone_smooth" + }, + "result": { + "id": "mineralogy:limestone_relief_blank", + "count": 16 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/limestone_relief_cross.json b/src/main/resources/data/mineralogy/recipe/limestone_relief_cross.json index fa5c0b82f..632c89ba3 100644 --- a/src/main/resources/data/mineralogy/recipe/limestone_relief_cross.json +++ b/src/main/resources/data/mineralogy/recipe/limestone_relief_cross.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x x", - " ", - "x x" - ], - "key": { - "x": { - "item": "mineralogy:limestone_relief_blank" - } - }, - "result": { - "id": "mineralogy:limestone_relief_cross", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x x", + " ", + "x x" + ], + "key": { + "x": "mineralogy:limestone_relief_blank" + }, + "result": { + "id": "mineralogy:limestone_relief_cross", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/limestone_relief_hammer.json b/src/main/resources/data/mineralogy/recipe/limestone_relief_hammer.json index 5f8129d93..6c2331e99 100644 --- a/src/main/resources/data/mineralogy/recipe/limestone_relief_hammer.json +++ b/src/main/resources/data/mineralogy/recipe/limestone_relief_hammer.json @@ -1,25 +1,19 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "zxz", - "zyz", - "zzz" - ], - "key": { - "x": { - "item": "mineralogy:limestone_smooth" - }, - "y": { - "item": "minecraft:stick" - }, - "z": { - "item": "mineralogy:limestone_relief_blank" - } - }, - "result": { - "id": "mineralogy:limestone_relief_hammer", - "count": 7 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "zxz", + "zyz", + "zzz" + ], + "key": { + "x": "mineralogy:limestone_smooth", + "y": "minecraft:stick", + "z": "mineralogy:limestone_relief_blank" + }, + "result": { + "id": "mineralogy:limestone_relief_hammer", + "count": 7 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/limestone_relief_hoe.json b/src/main/resources/data/mineralogy/recipe/limestone_relief_hoe.json index 6d2a2ea6a..83c5540c0 100644 --- a/src/main/resources/data/mineralogy/recipe/limestone_relief_hoe.json +++ b/src/main/resources/data/mineralogy/recipe/limestone_relief_hoe.json @@ -1,37 +1,19 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:limestone_relief_blank" - }, - { - "item": "mineralogy:limestone_relief_blank" - }, - { - "item": "mineralogy:limestone_relief_blank" - }, - { - "item": "mineralogy:limestone_relief_blank" - }, - { - "item": "mineralogy:limestone_relief_blank" - }, - { - "item": "mineralogy:limestone_relief_blank" - }, - { - "item": "mineralogy:limestone_relief_blank" - }, - { - "item": "mineralogy:limestone_relief_blank" - }, - { - "item": "minecraft:stone_hoe" - } - ], - "result": { - "id": "mineralogy:limestone_relief_hoe", - "count": 8 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:limestone_relief_blank", + "mineralogy:limestone_relief_blank", + "mineralogy:limestone_relief_blank", + "mineralogy:limestone_relief_blank", + "mineralogy:limestone_relief_blank", + "mineralogy:limestone_relief_blank", + "mineralogy:limestone_relief_blank", + "mineralogy:limestone_relief_blank", + "minecraft:stone_hoe" + ], + "result": { + "id": "mineralogy:limestone_relief_hoe", + "count": 8 + } } diff --git a/src/main/resources/data/mineralogy/recipe/limestone_relief_horizontal.json b/src/main/resources/data/mineralogy/recipe/limestone_relief_horizontal.json index 778bf1bb0..22f2f0505 100644 --- a/src/main/resources/data/mineralogy/recipe/limestone_relief_horizontal.json +++ b/src/main/resources/data/mineralogy/recipe/limestone_relief_horizontal.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:limestone_relief_blank" - } - }, - "result": { - "id": "mineralogy:limestone_relief_horizontal", - "count": 3 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:limestone_relief_blank" + }, + "result": { + "id": "mineralogy:limestone_relief_horizontal", + "count": 3 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/limestone_relief_i.json b/src/main/resources/data/mineralogy/recipe/limestone_relief_i.json index c2de90e16..bc39caef1 100644 --- a/src/main/resources/data/mineralogy/recipe/limestone_relief_i.json +++ b/src/main/resources/data/mineralogy/recipe/limestone_relief_i.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - " x ", - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:limestone_relief_blank" - } - }, - "result": { - "id": "mineralogy:limestone_relief_i", - "count": 7 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + " x ", + "xxx" + ], + "key": { + "x": "mineralogy:limestone_relief_blank" + }, + "result": { + "id": "mineralogy:limestone_relief_i", + "count": 7 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/limestone_relief_left.json b/src/main/resources/data/mineralogy/recipe/limestone_relief_left.json index f3a0a7f9e..32e0568b5 100644 --- a/src/main/resources/data/mineralogy/recipe/limestone_relief_left.json +++ b/src/main/resources/data/mineralogy/recipe/limestone_relief_left.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - " x ", - " x" - ], - "key": { - "x": { - "item": "mineralogy:limestone_relief_blank" - } - }, - "result": { - "id": "mineralogy:limestone_relief_left", - "count": 3 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + " x ", + " x" + ], + "key": { + "x": "mineralogy:limestone_relief_blank" + }, + "result": { + "id": "mineralogy:limestone_relief_left", + "count": 3 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/limestone_relief_pickaxe.json b/src/main/resources/data/mineralogy/recipe/limestone_relief_pickaxe.json index b4cb2fd33..2c896dce3 100644 --- a/src/main/resources/data/mineralogy/recipe/limestone_relief_pickaxe.json +++ b/src/main/resources/data/mineralogy/recipe/limestone_relief_pickaxe.json @@ -1,37 +1,19 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:limestone_relief_blank" - }, - { - "item": "mineralogy:limestone_relief_blank" - }, - { - "item": "mineralogy:limestone_relief_blank" - }, - { - "item": "mineralogy:limestone_relief_blank" - }, - { - "item": "mineralogy:limestone_relief_blank" - }, - { - "item": "mineralogy:limestone_relief_blank" - }, - { - "item": "mineralogy:limestone_relief_blank" - }, - { - "item": "mineralogy:limestone_relief_blank" - }, - { - "item": "minecraft:stone_pickaxe" - } - ], - "result": { - "id": "mineralogy:limestone_relief_pickaxe", - "count": 8 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:limestone_relief_blank", + "mineralogy:limestone_relief_blank", + "mineralogy:limestone_relief_blank", + "mineralogy:limestone_relief_blank", + "mineralogy:limestone_relief_blank", + "mineralogy:limestone_relief_blank", + "mineralogy:limestone_relief_blank", + "mineralogy:limestone_relief_blank", + "minecraft:stone_pickaxe" + ], + "result": { + "id": "mineralogy:limestone_relief_pickaxe", + "count": 8 + } } diff --git a/src/main/resources/data/mineralogy/recipe/limestone_relief_plus.json b/src/main/resources/data/mineralogy/recipe/limestone_relief_plus.json index bd0220940..869543770 100644 --- a/src/main/resources/data/mineralogy/recipe/limestone_relief_plus.json +++ b/src/main/resources/data/mineralogy/recipe/limestone_relief_plus.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - " x ", - "xxx", - " x " - ], - "key": { - "x": { - "item": "mineralogy:limestone_relief_blank" - } - }, - "result": { - "id": "mineralogy:limestone_relief_plus", - "count": 5 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + " x ", + "xxx", + " x " + ], + "key": { + "x": "mineralogy:limestone_relief_blank" + }, + "result": { + "id": "mineralogy:limestone_relief_plus", + "count": 5 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/limestone_relief_right.json b/src/main/resources/data/mineralogy/recipe/limestone_relief_right.json index 63e475596..bcf44d1d1 100644 --- a/src/main/resources/data/mineralogy/recipe/limestone_relief_right.json +++ b/src/main/resources/data/mineralogy/recipe/limestone_relief_right.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:limestone_relief_left" - }, - { - "item": "mineralogy:limestone_relief_left" - } - ], - "result": { - "id": "mineralogy:limestone_relief_right", - "count": 2 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:limestone_relief_left", + "mineralogy:limestone_relief_left" + ], + "result": { + "id": "mineralogy:limestone_relief_right", + "count": 2 + } } diff --git a/src/main/resources/data/mineralogy/recipe/limestone_relief_sword.json b/src/main/resources/data/mineralogy/recipe/limestone_relief_sword.json index 66af54e74..4cb65bb8c 100644 --- a/src/main/resources/data/mineralogy/recipe/limestone_relief_sword.json +++ b/src/main/resources/data/mineralogy/recipe/limestone_relief_sword.json @@ -1,37 +1,19 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:limestone_relief_blank" - }, - { - "item": "mineralogy:limestone_relief_blank" - }, - { - "item": "mineralogy:limestone_relief_blank" - }, - { - "item": "mineralogy:limestone_relief_blank" - }, - { - "item": "mineralogy:limestone_relief_blank" - }, - { - "item": "mineralogy:limestone_relief_blank" - }, - { - "item": "mineralogy:limestone_relief_blank" - }, - { - "item": "mineralogy:limestone_relief_blank" - }, - { - "item": "minecraft:stone_sword" - } - ], - "result": { - "id": "mineralogy:limestone_relief_sword", - "count": 8 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:limestone_relief_blank", + "mineralogy:limestone_relief_blank", + "mineralogy:limestone_relief_blank", + "mineralogy:limestone_relief_blank", + "mineralogy:limestone_relief_blank", + "mineralogy:limestone_relief_blank", + "mineralogy:limestone_relief_blank", + "mineralogy:limestone_relief_blank", + "minecraft:stone_sword" + ], + "result": { + "id": "mineralogy:limestone_relief_sword", + "count": 8 + } } diff --git a/src/main/resources/data/mineralogy/recipe/limestone_relief_vertical.json b/src/main/resources/data/mineralogy/recipe/limestone_relief_vertical.json index 7eab6025d..d9c620147 100644 --- a/src/main/resources/data/mineralogy/recipe/limestone_relief_vertical.json +++ b/src/main/resources/data/mineralogy/recipe/limestone_relief_vertical.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x", - "x", - "x" - ], - "key": { - "x": { - "item": "mineralogy:limestone_relief_blank" - } - }, - "result": { - "id": "mineralogy:limestone_relief_vertical", - "count": 3 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x", + "x", + "x" + ], + "key": { + "x": "mineralogy:limestone_relief_blank" + }, + "result": { + "id": "mineralogy:limestone_relief_vertical", + "count": 3 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/limestone_slab.json b/src/main/resources/data/mineralogy/recipe/limestone_slab.json index 4335fe603..98a020c07 100644 --- a/src/main/resources/data/mineralogy/recipe/limestone_slab.json +++ b/src/main/resources/data/mineralogy/recipe/limestone_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:limestone" - } - }, - "result": { - "id": "mineralogy:limestone_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:limestone" + }, + "result": { + "id": "mineralogy:limestone_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/limestone_smooth.json b/src/main/resources/data/mineralogy/recipe/limestone_smooth.json index ec14db222..cf015d91b 100644 --- a/src/main/resources/data/mineralogy/recipe/limestone_smooth.json +++ b/src/main/resources/data/mineralogy/recipe/limestone_smooth.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "tag": "mineralogy:stones/limestone" - }, - { - "item": "minecraft:sand" - } - ], - "result": { - "id": "mineralogy:limestone_smooth", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "#mineralogy:stones/limestone", + "minecraft:sand" + ], + "result": { + "id": "mineralogy:limestone_smooth", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/limestone_smooth_brick.json b/src/main/resources/data/mineralogy/recipe/limestone_smooth_brick.json index 6409b6f23..3308852e2 100644 --- a/src/main/resources/data/mineralogy/recipe/limestone_smooth_brick.json +++ b/src/main/resources/data/mineralogy/recipe/limestone_smooth_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/limestone/smooth" - } - }, - "result": { - "id": "mineralogy:limestone_smooth_brick", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "#mineralogy:stones/limestone/smooth" + }, + "result": { + "id": "mineralogy:limestone_smooth_brick", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/limestone_smooth_brick_furnace.json b/src/main/resources/data/mineralogy/recipe/limestone_smooth_brick_furnace.json index b1cc645e2..31fe83b2f 100644 --- a/src/main/resources/data/mineralogy/recipe/limestone_smooth_brick_furnace.json +++ b/src/main/resources/data/mineralogy/recipe/limestone_smooth_brick_furnace.json @@ -1,22 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "xxx", - "xyx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:slabs/limestone/smooth_brick" - }, - "y": { - "item": "minecraft:furnace" - } - }, - "result": { - "id": "mineralogy:limestone_smooth_brick_furnace", - "count": 1 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "xxx", + "xyx", + "xxx" + ], + "key": { + "x": "#mineralogy:slabs/limestone/smooth_brick", + "y": "minecraft:furnace" + }, + "result": { + "id": "mineralogy:limestone_smooth_brick_furnace", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/limestone_smooth_brick_slab.json b/src/main/resources/data/mineralogy/recipe/limestone_smooth_brick_slab.json index 80d4e6339..d2b3dac2f 100644 --- a/src/main/resources/data/mineralogy/recipe/limestone_smooth_brick_slab.json +++ b/src/main/resources/data/mineralogy/recipe/limestone_smooth_brick_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:limestone_smooth_brick" - } - }, - "result": { - "id": "mineralogy:limestone_smooth_brick_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:limestone_smooth_brick" + }, + "result": { + "id": "mineralogy:limestone_smooth_brick_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/limestone_smooth_brick_stairs.json b/src/main/resources/data/mineralogy/recipe/limestone_smooth_brick_stairs.json index b78f19ae2..abca870d5 100644 --- a/src/main/resources/data/mineralogy/recipe/limestone_smooth_brick_stairs.json +++ b/src/main/resources/data/mineralogy/recipe/limestone_smooth_brick_stairs.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - "xx ", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/limestone/smooth_brick" - } - }, - "result": { - "id": "mineralogy:limestone_smooth_brick_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + "xx ", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/limestone/smooth_brick" + }, + "result": { + "id": "mineralogy:limestone_smooth_brick_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/limestone_smooth_brick_wall.json b/src/main/resources/data/mineralogy/recipe/limestone_smooth_brick_wall.json index 218adc24b..b9e3bc0fa 100644 --- a/src/main/resources/data/mineralogy/recipe/limestone_smooth_brick_wall.json +++ b/src/main/resources/data/mineralogy/recipe/limestone_smooth_brick_wall.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/limestone/smooth_brick" - } - }, - "result": { - "id": "mineralogy:limestone_smooth_brick_wall", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/limestone/smooth_brick" + }, + "result": { + "id": "mineralogy:limestone_smooth_brick_wall", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/limestone_smooth_furnace.json b/src/main/resources/data/mineralogy/recipe/limestone_smooth_furnace.json index 2d9bf48df..b2cd9e33b 100644 --- a/src/main/resources/data/mineralogy/recipe/limestone_smooth_furnace.json +++ b/src/main/resources/data/mineralogy/recipe/limestone_smooth_furnace.json @@ -1,22 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "xxx", - "xyx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:slabs/limestone/smooth" - }, - "y": { - "item": "minecraft:furnace" - } - }, - "result": { - "id": "mineralogy:limestone_smooth_furnace", - "count": 1 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "xxx", + "xyx", + "xxx" + ], + "key": { + "x": "#mineralogy:slabs/limestone/smooth", + "y": "minecraft:furnace" + }, + "result": { + "id": "mineralogy:limestone_smooth_furnace", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/limestone_smooth_slab.json b/src/main/resources/data/mineralogy/recipe/limestone_smooth_slab.json index 2be920ddd..05b03c621 100644 --- a/src/main/resources/data/mineralogy/recipe/limestone_smooth_slab.json +++ b/src/main/resources/data/mineralogy/recipe/limestone_smooth_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:limestone_smooth" - } - }, - "result": { - "id": "mineralogy:limestone_smooth_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:limestone_smooth" + }, + "result": { + "id": "mineralogy:limestone_smooth_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/limestone_smooth_stairs.json b/src/main/resources/data/mineralogy/recipe/limestone_smooth_stairs.json index 9614712d6..3489a0bcb 100644 --- a/src/main/resources/data/mineralogy/recipe/limestone_smooth_stairs.json +++ b/src/main/resources/data/mineralogy/recipe/limestone_smooth_stairs.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - "xx ", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/limestone/smooth" - } - }, - "result": { - "id": "mineralogy:limestone_smooth_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + "xx ", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/limestone/smooth" + }, + "result": { + "id": "mineralogy:limestone_smooth_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/limestone_smooth_wall.json b/src/main/resources/data/mineralogy/recipe/limestone_smooth_wall.json index 5322d2020..86a2c5ebe 100644 --- a/src/main/resources/data/mineralogy/recipe/limestone_smooth_wall.json +++ b/src/main/resources/data/mineralogy/recipe/limestone_smooth_wall.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/limestone/smooth" - } - }, - "result": { - "id": "mineralogy:limestone_smooth_wall", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/limestone/smooth" + }, + "result": { + "id": "mineralogy:limestone_smooth_wall", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/limestone_stairs.json b/src/main/resources/data/mineralogy/recipe/limestone_stairs.json index 3e59e5ae4..4c3653b0b 100644 --- a/src/main/resources/data/mineralogy/recipe/limestone_stairs.json +++ b/src/main/resources/data/mineralogy/recipe/limestone_stairs.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - "xx ", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/limestone" - } - }, - "result": { - "id": "mineralogy:limestone_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + "xx ", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/limestone" + }, + "result": { + "id": "mineralogy:limestone_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/limestone_to_stone.json b/src/main/resources/data/mineralogy/recipe/limestone_to_stone.json index 8d90c8671..166e5fe2d 100644 --- a/src/main/resources/data/mineralogy/recipe/limestone_to_stone.json +++ b/src/main/resources/data/mineralogy/recipe/limestone_to_stone.json @@ -1,12 +1,10 @@ { - "type": "minecraft:smelting", - "category": "blocks", - "ingredient": { - "item": "mineralogy:limestone" - }, - "result": { - "id": "minecraft:stone" - }, - "experience": 0.1, - "cookingtime": 200 + "type": "minecraft:smelting", + "category": "blocks", + "ingredient": "mineralogy:limestone", + "result": { + "id": "minecraft:stone" + }, + "experience": 0.1, + "cookingtime": 200 } diff --git a/src/main/resources/data/mineralogy/recipe/limestone_wall.json b/src/main/resources/data/mineralogy/recipe/limestone_wall.json index bb12f4d6b..ea7d62f98 100644 --- a/src/main/resources/data/mineralogy/recipe/limestone_wall.json +++ b/src/main/resources/data/mineralogy/recipe/limestone_wall.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/limestone" - } - }, - "result": { - "id": "mineralogy:limestone_wall", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/limestone" + }, + "result": { + "id": "mineralogy:limestone_wall", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/marble_brick.json b/src/main/resources/data/mineralogy/recipe/marble_brick.json index 71296faa7..48c2d0e75 100644 --- a/src/main/resources/data/mineralogy/recipe/marble_brick.json +++ b/src/main/resources/data/mineralogy/recipe/marble_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/marble" - } - }, - "result": { - "id": "mineralogy:marble_brick", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "#mineralogy:stones/marble" + }, + "result": { + "id": "mineralogy:marble_brick", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/marble_brick_block_polishing.json b/src/main/resources/data/mineralogy/recipe/marble_brick_block_polishing.json index 4a3149b2e..3bf7b77b6 100644 --- a/src/main/resources/data/mineralogy/recipe/marble_brick_block_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/marble_brick_block_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:marble_brick" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:marble_smooth_brick", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:marble_brick", + "#c:sands" + ], + "result": { + "id": "mineralogy:marble_smooth_brick", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/marble_brick_furnace.json b/src/main/resources/data/mineralogy/recipe/marble_brick_furnace.json index b91ace26f..0b8dd286e 100644 --- a/src/main/resources/data/mineralogy/recipe/marble_brick_furnace.json +++ b/src/main/resources/data/mineralogy/recipe/marble_brick_furnace.json @@ -1,22 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "xxx", - "xyx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:slabs/marble/brick" - }, - "y": { - "item": "minecraft:furnace" - } - }, - "result": { - "id": "mineralogy:marble_brick_furnace", - "count": 1 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "xxx", + "xyx", + "xxx" + ], + "key": { + "x": "#mineralogy:slabs/marble/brick", + "y": "minecraft:furnace" + }, + "result": { + "id": "mineralogy:marble_brick_furnace", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/marble_brick_slab.json b/src/main/resources/data/mineralogy/recipe/marble_brick_slab.json index 6af5c2772..a66f97dbd 100644 --- a/src/main/resources/data/mineralogy/recipe/marble_brick_slab.json +++ b/src/main/resources/data/mineralogy/recipe/marble_brick_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:marble_brick" - } - }, - "result": { - "id": "mineralogy:marble_brick_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:marble_brick" + }, + "result": { + "id": "mineralogy:marble_brick_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/marble_brick_slab_polishing.json b/src/main/resources/data/mineralogy/recipe/marble_brick_slab_polishing.json index 19e1ea205..550d905d1 100644 --- a/src/main/resources/data/mineralogy/recipe/marble_brick_slab_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/marble_brick_slab_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:marble_brick_slab" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:marble_smooth_brick_slab", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:marble_brick_slab", + "#c:sands" + ], + "result": { + "id": "mineralogy:marble_smooth_brick_slab", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/marble_brick_slab_recombination.json b/src/main/resources/data/mineralogy/recipe/marble_brick_slab_recombination.json index a0ad60459..6f0402a08 100644 --- a/src/main/resources/data/mineralogy/recipe/marble_brick_slab_recombination.json +++ b/src/main/resources/data/mineralogy/recipe/marble_brick_slab_recombination.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:marble_brick_slab" - }, - { - "item": "mineralogy:marble_brick_slab" - } - ], - "result": { - "id": "mineralogy:marble_brick", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:marble_brick_slab", + "mineralogy:marble_brick_slab" + ], + "result": { + "id": "mineralogy:marble_brick", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/marble_brick_stairs.json b/src/main/resources/data/mineralogy/recipe/marble_brick_stairs.json index 1d3885b18..7f8c3fd52 100644 --- a/src/main/resources/data/mineralogy/recipe/marble_brick_stairs.json +++ b/src/main/resources/data/mineralogy/recipe/marble_brick_stairs.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - "xx ", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/marble/brick" - } - }, - "result": { - "id": "mineralogy:marble_brick_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + "xx ", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/marble/brick" + }, + "result": { + "id": "mineralogy:marble_brick_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/marble_brick_stairs_polishing.json b/src/main/resources/data/mineralogy/recipe/marble_brick_stairs_polishing.json index f6d1a9b3f..c27a6455d 100644 --- a/src/main/resources/data/mineralogy/recipe/marble_brick_stairs_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/marble_brick_stairs_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:marble_brick_stairs" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:marble_smooth_brick_stairs", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:marble_brick_stairs", + "#c:sands" + ], + "result": { + "id": "mineralogy:marble_smooth_brick_stairs", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/marble_brick_wall.json b/src/main/resources/data/mineralogy/recipe/marble_brick_wall.json index b25659d90..5d53d737d 100644 --- a/src/main/resources/data/mineralogy/recipe/marble_brick_wall.json +++ b/src/main/resources/data/mineralogy/recipe/marble_brick_wall.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/marble/brick" - } - }, - "result": { - "id": "mineralogy:marble_brick_wall", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/marble/brick" + }, + "result": { + "id": "mineralogy:marble_brick_wall", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/marble_brick_wall_polishing.json b/src/main/resources/data/mineralogy/recipe/marble_brick_wall_polishing.json index f76b8e55b..7aec5f3dc 100644 --- a/src/main/resources/data/mineralogy/recipe/marble_brick_wall_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/marble_brick_wall_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:marble_brick_wall" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:marble_smooth_brick_wall", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:marble_brick_wall", + "#c:sands" + ], + "result": { + "id": "mineralogy:marble_smooth_brick_wall", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/marble_cobblestone.json b/src/main/resources/data/mineralogy/recipe/marble_cobblestone.json index ca278e01f..b3ca42475 100644 --- a/src/main/resources/data/mineralogy/recipe/marble_cobblestone.json +++ b/src/main/resources/data/mineralogy/recipe/marble_cobblestone.json @@ -1,22 +1,14 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "tag": "mineralogy:stones/marble" - }, - { - "tag": "mineralogy:stones/marble" - }, - { - "item": "minecraft:gravel" - }, - { - "item": "minecraft:gravel" - } - ], - "result": { - "id": "minecraft:cobblestone", - "count": 4 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "#mineralogy:stones/marble", + "#mineralogy:stones/marble", + "minecraft:gravel", + "minecraft:gravel" + ], + "result": { + "id": "minecraft:cobblestone", + "count": 4 + } } diff --git a/src/main/resources/data/mineralogy/recipe/marble_furnace.json b/src/main/resources/data/mineralogy/recipe/marble_furnace.json index bb1f263e5..109888e13 100644 --- a/src/main/resources/data/mineralogy/recipe/marble_furnace.json +++ b/src/main/resources/data/mineralogy/recipe/marble_furnace.json @@ -1,22 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "xxx", - "xyx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:slabs/marble" - }, - "y": { - "item": "minecraft:furnace" - } - }, - "result": { - "id": "mineralogy:marble_furnace", - "count": 1 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "xxx", + "xyx", + "xxx" + ], + "key": { + "x": "#mineralogy:slabs/marble", + "y": "minecraft:furnace" + }, + "result": { + "id": "mineralogy:marble_furnace", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/marble_polished_brick_slab_recombination.json b/src/main/resources/data/mineralogy/recipe/marble_polished_brick_slab_recombination.json index 29b0ffda6..e5fbf61e5 100644 --- a/src/main/resources/data/mineralogy/recipe/marble_polished_brick_slab_recombination.json +++ b/src/main/resources/data/mineralogy/recipe/marble_polished_brick_slab_recombination.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:marble_smooth_brick_slab" - }, - { - "item": "mineralogy:marble_smooth_brick_slab" - } - ], - "result": { - "id": "mineralogy:marble_smooth_brick", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:marble_smooth_brick_slab", + "mineralogy:marble_smooth_brick_slab" + ], + "result": { + "id": "mineralogy:marble_smooth_brick", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/marble_polished_slab_recombination.json b/src/main/resources/data/mineralogy/recipe/marble_polished_slab_recombination.json index 65a563d64..b25f3d692 100644 --- a/src/main/resources/data/mineralogy/recipe/marble_polished_slab_recombination.json +++ b/src/main/resources/data/mineralogy/recipe/marble_polished_slab_recombination.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:marble_smooth_slab" - }, - { - "item": "mineralogy:marble_smooth_slab" - } - ], - "result": { - "id": "mineralogy:marble_smooth", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:marble_smooth_slab", + "mineralogy:marble_smooth_slab" + ], + "result": { + "id": "mineralogy:marble_smooth", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/marble_polished_slabs_to_brick.json b/src/main/resources/data/mineralogy/recipe/marble_polished_slabs_to_brick.json index 959843f3c..6670153e8 100644 --- a/src/main/resources/data/mineralogy/recipe/marble_polished_slabs_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/marble_polished_slabs_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:marble_smooth_slab" - } - }, - "result": { - "id": "mineralogy:marble_smooth_brick_slab", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:marble_smooth_slab" + }, + "result": { + "id": "mineralogy:marble_smooth_brick_slab", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/marble_polished_stairs_to_brick.json b/src/main/resources/data/mineralogy/recipe/marble_polished_stairs_to_brick.json index 1436f4ddd..fa6462f72 100644 --- a/src/main/resources/data/mineralogy/recipe/marble_polished_stairs_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/marble_polished_stairs_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:marble_smooth_stairs" - } - }, - "result": { - "id": "mineralogy:marble_smooth_brick_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:marble_smooth_stairs" + }, + "result": { + "id": "mineralogy:marble_smooth_brick_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/marble_polished_walls_to_brick.json b/src/main/resources/data/mineralogy/recipe/marble_polished_walls_to_brick.json index 7b9c94c36..b6d4ff9e4 100644 --- a/src/main/resources/data/mineralogy/recipe/marble_polished_walls_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/marble_polished_walls_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:marble_smooth_wall" - } - }, - "result": { - "id": "mineralogy:marble_smooth_brick_wall", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:marble_smooth_wall" + }, + "result": { + "id": "mineralogy:marble_smooth_brick_wall", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/marble_raw_slab_polishing.json b/src/main/resources/data/mineralogy/recipe/marble_raw_slab_polishing.json index 30208fe39..e83c26138 100644 --- a/src/main/resources/data/mineralogy/recipe/marble_raw_slab_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/marble_raw_slab_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:marble_slab" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:marble_smooth_slab", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:marble_slab", + "#c:sands" + ], + "result": { + "id": "mineralogy:marble_smooth_slab", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/marble_raw_slab_recombination.json b/src/main/resources/data/mineralogy/recipe/marble_raw_slab_recombination.json index 92f93ff47..bd8023c84 100644 --- a/src/main/resources/data/mineralogy/recipe/marble_raw_slab_recombination.json +++ b/src/main/resources/data/mineralogy/recipe/marble_raw_slab_recombination.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:marble_slab" - }, - { - "item": "mineralogy:marble_slab" - } - ], - "result": { - "id": "mineralogy:marble", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:marble_slab", + "mineralogy:marble_slab" + ], + "result": { + "id": "mineralogy:marble", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/marble_raw_slabs_to_brick.json b/src/main/resources/data/mineralogy/recipe/marble_raw_slabs_to_brick.json index f26f6bd59..eee31f217 100644 --- a/src/main/resources/data/mineralogy/recipe/marble_raw_slabs_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/marble_raw_slabs_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:marble_slab" - } - }, - "result": { - "id": "mineralogy:marble_brick_slab", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:marble_slab" + }, + "result": { + "id": "mineralogy:marble_brick_slab", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/marble_raw_stairs_polishing.json b/src/main/resources/data/mineralogy/recipe/marble_raw_stairs_polishing.json index 79ad06ab0..c642b5323 100644 --- a/src/main/resources/data/mineralogy/recipe/marble_raw_stairs_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/marble_raw_stairs_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:marble_stairs" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:marble_smooth_stairs", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:marble_stairs", + "#c:sands" + ], + "result": { + "id": "mineralogy:marble_smooth_stairs", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/marble_raw_stairs_to_brick.json b/src/main/resources/data/mineralogy/recipe/marble_raw_stairs_to_brick.json index f883b42b0..1a83ce85a 100644 --- a/src/main/resources/data/mineralogy/recipe/marble_raw_stairs_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/marble_raw_stairs_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:marble_stairs" - } - }, - "result": { - "id": "mineralogy:marble_brick_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:marble_stairs" + }, + "result": { + "id": "mineralogy:marble_brick_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/marble_raw_wall_polishing.json b/src/main/resources/data/mineralogy/recipe/marble_raw_wall_polishing.json index d0b514b44..8c6b9830a 100644 --- a/src/main/resources/data/mineralogy/recipe/marble_raw_wall_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/marble_raw_wall_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:marble_wall" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:marble_smooth_wall", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:marble_wall", + "#c:sands" + ], + "result": { + "id": "mineralogy:marble_smooth_wall", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/marble_raw_walls_to_brick.json b/src/main/resources/data/mineralogy/recipe/marble_raw_walls_to_brick.json index b7f6a0881..5a312a889 100644 --- a/src/main/resources/data/mineralogy/recipe/marble_raw_walls_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/marble_raw_walls_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:marble_wall" - } - }, - "result": { - "id": "mineralogy:marble_brick_wall", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:marble_wall" + }, + "result": { + "id": "mineralogy:marble_brick_wall", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/marble_relief_axe.json b/src/main/resources/data/mineralogy/recipe/marble_relief_axe.json index ecdf55333..d3d20a5d3 100644 --- a/src/main/resources/data/mineralogy/recipe/marble_relief_axe.json +++ b/src/main/resources/data/mineralogy/recipe/marble_relief_axe.json @@ -1,37 +1,19 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:marble_relief_blank" - }, - { - "item": "mineralogy:marble_relief_blank" - }, - { - "item": "mineralogy:marble_relief_blank" - }, - { - "item": "mineralogy:marble_relief_blank" - }, - { - "item": "mineralogy:marble_relief_blank" - }, - { - "item": "mineralogy:marble_relief_blank" - }, - { - "item": "mineralogy:marble_relief_blank" - }, - { - "item": "mineralogy:marble_relief_blank" - }, - { - "item": "minecraft:stone_axe" - } - ], - "result": { - "id": "mineralogy:marble_relief_axe", - "count": 8 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:marble_relief_blank", + "mineralogy:marble_relief_blank", + "mineralogy:marble_relief_blank", + "mineralogy:marble_relief_blank", + "mineralogy:marble_relief_blank", + "mineralogy:marble_relief_blank", + "mineralogy:marble_relief_blank", + "mineralogy:marble_relief_blank", + "minecraft:stone_axe" + ], + "result": { + "id": "mineralogy:marble_relief_axe", + "count": 8 + } } diff --git a/src/main/resources/data/mineralogy/recipe/marble_relief_blank.json b/src/main/resources/data/mineralogy/recipe/marble_relief_blank.json index e134c036c..306999a65 100644 --- a/src/main/resources/data/mineralogy/recipe/marble_relief_blank.json +++ b/src/main/resources/data/mineralogy/recipe/marble_relief_blank.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx", - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:marble_smooth" - } - }, - "result": { - "id": "mineralogy:marble_relief_blank", - "count": 16 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx", + "xxx" + ], + "key": { + "x": "mineralogy:marble_smooth" + }, + "result": { + "id": "mineralogy:marble_relief_blank", + "count": 16 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/marble_relief_cross.json b/src/main/resources/data/mineralogy/recipe/marble_relief_cross.json index 67d988786..07dcbde4b 100644 --- a/src/main/resources/data/mineralogy/recipe/marble_relief_cross.json +++ b/src/main/resources/data/mineralogy/recipe/marble_relief_cross.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x x", - " ", - "x x" - ], - "key": { - "x": { - "item": "mineralogy:marble_relief_blank" - } - }, - "result": { - "id": "mineralogy:marble_relief_cross", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x x", + " ", + "x x" + ], + "key": { + "x": "mineralogy:marble_relief_blank" + }, + "result": { + "id": "mineralogy:marble_relief_cross", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/marble_relief_hammer.json b/src/main/resources/data/mineralogy/recipe/marble_relief_hammer.json index eeed17e86..7ad41883e 100644 --- a/src/main/resources/data/mineralogy/recipe/marble_relief_hammer.json +++ b/src/main/resources/data/mineralogy/recipe/marble_relief_hammer.json @@ -1,25 +1,19 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "zxz", - "zyz", - "zzz" - ], - "key": { - "x": { - "item": "mineralogy:marble_smooth" - }, - "y": { - "item": "minecraft:stick" - }, - "z": { - "item": "mineralogy:marble_relief_blank" - } - }, - "result": { - "id": "mineralogy:marble_relief_hammer", - "count": 7 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "zxz", + "zyz", + "zzz" + ], + "key": { + "x": "mineralogy:marble_smooth", + "y": "minecraft:stick", + "z": "mineralogy:marble_relief_blank" + }, + "result": { + "id": "mineralogy:marble_relief_hammer", + "count": 7 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/marble_relief_hoe.json b/src/main/resources/data/mineralogy/recipe/marble_relief_hoe.json index 1a17e3900..533040a21 100644 --- a/src/main/resources/data/mineralogy/recipe/marble_relief_hoe.json +++ b/src/main/resources/data/mineralogy/recipe/marble_relief_hoe.json @@ -1,37 +1,19 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:marble_relief_blank" - }, - { - "item": "mineralogy:marble_relief_blank" - }, - { - "item": "mineralogy:marble_relief_blank" - }, - { - "item": "mineralogy:marble_relief_blank" - }, - { - "item": "mineralogy:marble_relief_blank" - }, - { - "item": "mineralogy:marble_relief_blank" - }, - { - "item": "mineralogy:marble_relief_blank" - }, - { - "item": "mineralogy:marble_relief_blank" - }, - { - "item": "minecraft:stone_hoe" - } - ], - "result": { - "id": "mineralogy:marble_relief_hoe", - "count": 8 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:marble_relief_blank", + "mineralogy:marble_relief_blank", + "mineralogy:marble_relief_blank", + "mineralogy:marble_relief_blank", + "mineralogy:marble_relief_blank", + "mineralogy:marble_relief_blank", + "mineralogy:marble_relief_blank", + "mineralogy:marble_relief_blank", + "minecraft:stone_hoe" + ], + "result": { + "id": "mineralogy:marble_relief_hoe", + "count": 8 + } } diff --git a/src/main/resources/data/mineralogy/recipe/marble_relief_horizontal.json b/src/main/resources/data/mineralogy/recipe/marble_relief_horizontal.json index 2fd1d229f..8ad8b9555 100644 --- a/src/main/resources/data/mineralogy/recipe/marble_relief_horizontal.json +++ b/src/main/resources/data/mineralogy/recipe/marble_relief_horizontal.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:marble_relief_blank" - } - }, - "result": { - "id": "mineralogy:marble_relief_horizontal", - "count": 3 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:marble_relief_blank" + }, + "result": { + "id": "mineralogy:marble_relief_horizontal", + "count": 3 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/marble_relief_i.json b/src/main/resources/data/mineralogy/recipe/marble_relief_i.json index 5a8a1023a..f8fcaa85e 100644 --- a/src/main/resources/data/mineralogy/recipe/marble_relief_i.json +++ b/src/main/resources/data/mineralogy/recipe/marble_relief_i.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - " x ", - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:marble_relief_blank" - } - }, - "result": { - "id": "mineralogy:marble_relief_i", - "count": 7 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + " x ", + "xxx" + ], + "key": { + "x": "mineralogy:marble_relief_blank" + }, + "result": { + "id": "mineralogy:marble_relief_i", + "count": 7 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/marble_relief_left.json b/src/main/resources/data/mineralogy/recipe/marble_relief_left.json index d321d0747..49d51480e 100644 --- a/src/main/resources/data/mineralogy/recipe/marble_relief_left.json +++ b/src/main/resources/data/mineralogy/recipe/marble_relief_left.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - " x ", - " x" - ], - "key": { - "x": { - "item": "mineralogy:marble_relief_blank" - } - }, - "result": { - "id": "mineralogy:marble_relief_left", - "count": 3 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + " x ", + " x" + ], + "key": { + "x": "mineralogy:marble_relief_blank" + }, + "result": { + "id": "mineralogy:marble_relief_left", + "count": 3 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/marble_relief_pickaxe.json b/src/main/resources/data/mineralogy/recipe/marble_relief_pickaxe.json index 0e197a3f0..887cfd455 100644 --- a/src/main/resources/data/mineralogy/recipe/marble_relief_pickaxe.json +++ b/src/main/resources/data/mineralogy/recipe/marble_relief_pickaxe.json @@ -1,37 +1,19 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:marble_relief_blank" - }, - { - "item": "mineralogy:marble_relief_blank" - }, - { - "item": "mineralogy:marble_relief_blank" - }, - { - "item": "mineralogy:marble_relief_blank" - }, - { - "item": "mineralogy:marble_relief_blank" - }, - { - "item": "mineralogy:marble_relief_blank" - }, - { - "item": "mineralogy:marble_relief_blank" - }, - { - "item": "mineralogy:marble_relief_blank" - }, - { - "item": "minecraft:stone_pickaxe" - } - ], - "result": { - "id": "mineralogy:marble_relief_pickaxe", - "count": 8 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:marble_relief_blank", + "mineralogy:marble_relief_blank", + "mineralogy:marble_relief_blank", + "mineralogy:marble_relief_blank", + "mineralogy:marble_relief_blank", + "mineralogy:marble_relief_blank", + "mineralogy:marble_relief_blank", + "mineralogy:marble_relief_blank", + "minecraft:stone_pickaxe" + ], + "result": { + "id": "mineralogy:marble_relief_pickaxe", + "count": 8 + } } diff --git a/src/main/resources/data/mineralogy/recipe/marble_relief_plus.json b/src/main/resources/data/mineralogy/recipe/marble_relief_plus.json index bf35e93ac..fecafbee5 100644 --- a/src/main/resources/data/mineralogy/recipe/marble_relief_plus.json +++ b/src/main/resources/data/mineralogy/recipe/marble_relief_plus.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - " x ", - "xxx", - " x " - ], - "key": { - "x": { - "item": "mineralogy:marble_relief_blank" - } - }, - "result": { - "id": "mineralogy:marble_relief_plus", - "count": 5 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + " x ", + "xxx", + " x " + ], + "key": { + "x": "mineralogy:marble_relief_blank" + }, + "result": { + "id": "mineralogy:marble_relief_plus", + "count": 5 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/marble_relief_right.json b/src/main/resources/data/mineralogy/recipe/marble_relief_right.json index 876d6c332..d9d6d1166 100644 --- a/src/main/resources/data/mineralogy/recipe/marble_relief_right.json +++ b/src/main/resources/data/mineralogy/recipe/marble_relief_right.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:marble_relief_left" - }, - { - "item": "mineralogy:marble_relief_left" - } - ], - "result": { - "id": "mineralogy:marble_relief_right", - "count": 2 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:marble_relief_left", + "mineralogy:marble_relief_left" + ], + "result": { + "id": "mineralogy:marble_relief_right", + "count": 2 + } } diff --git a/src/main/resources/data/mineralogy/recipe/marble_relief_sword.json b/src/main/resources/data/mineralogy/recipe/marble_relief_sword.json index 66f9d876a..ebbee409e 100644 --- a/src/main/resources/data/mineralogy/recipe/marble_relief_sword.json +++ b/src/main/resources/data/mineralogy/recipe/marble_relief_sword.json @@ -1,37 +1,19 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:marble_relief_blank" - }, - { - "item": "mineralogy:marble_relief_blank" - }, - { - "item": "mineralogy:marble_relief_blank" - }, - { - "item": "mineralogy:marble_relief_blank" - }, - { - "item": "mineralogy:marble_relief_blank" - }, - { - "item": "mineralogy:marble_relief_blank" - }, - { - "item": "mineralogy:marble_relief_blank" - }, - { - "item": "mineralogy:marble_relief_blank" - }, - { - "item": "minecraft:stone_sword" - } - ], - "result": { - "id": "mineralogy:marble_relief_sword", - "count": 8 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:marble_relief_blank", + "mineralogy:marble_relief_blank", + "mineralogy:marble_relief_blank", + "mineralogy:marble_relief_blank", + "mineralogy:marble_relief_blank", + "mineralogy:marble_relief_blank", + "mineralogy:marble_relief_blank", + "mineralogy:marble_relief_blank", + "minecraft:stone_sword" + ], + "result": { + "id": "mineralogy:marble_relief_sword", + "count": 8 + } } diff --git a/src/main/resources/data/mineralogy/recipe/marble_relief_vertical.json b/src/main/resources/data/mineralogy/recipe/marble_relief_vertical.json index 115af53fb..29544663f 100644 --- a/src/main/resources/data/mineralogy/recipe/marble_relief_vertical.json +++ b/src/main/resources/data/mineralogy/recipe/marble_relief_vertical.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x", - "x", - "x" - ], - "key": { - "x": { - "item": "mineralogy:marble_relief_blank" - } - }, - "result": { - "id": "mineralogy:marble_relief_vertical", - "count": 3 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x", + "x", + "x" + ], + "key": { + "x": "mineralogy:marble_relief_blank" + }, + "result": { + "id": "mineralogy:marble_relief_vertical", + "count": 3 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/marble_slab.json b/src/main/resources/data/mineralogy/recipe/marble_slab.json index 12e296d28..4d1f01b1a 100644 --- a/src/main/resources/data/mineralogy/recipe/marble_slab.json +++ b/src/main/resources/data/mineralogy/recipe/marble_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:marble" - } - }, - "result": { - "id": "mineralogy:marble_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:marble" + }, + "result": { + "id": "mineralogy:marble_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/marble_smooth.json b/src/main/resources/data/mineralogy/recipe/marble_smooth.json index 2d16cbe8d..5227b8ea7 100644 --- a/src/main/resources/data/mineralogy/recipe/marble_smooth.json +++ b/src/main/resources/data/mineralogy/recipe/marble_smooth.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "tag": "mineralogy:stones/marble" - }, - { - "item": "minecraft:sand" - } - ], - "result": { - "id": "mineralogy:marble_smooth", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "#mineralogy:stones/marble", + "minecraft:sand" + ], + "result": { + "id": "mineralogy:marble_smooth", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/marble_smooth_brick.json b/src/main/resources/data/mineralogy/recipe/marble_smooth_brick.json index 01f0775c2..09555a9e7 100644 --- a/src/main/resources/data/mineralogy/recipe/marble_smooth_brick.json +++ b/src/main/resources/data/mineralogy/recipe/marble_smooth_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/marble/smooth" - } - }, - "result": { - "id": "mineralogy:marble_smooth_brick", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "#mineralogy:stones/marble/smooth" + }, + "result": { + "id": "mineralogy:marble_smooth_brick", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/marble_smooth_brick_furnace.json b/src/main/resources/data/mineralogy/recipe/marble_smooth_brick_furnace.json index e64e8f042..e0e172a47 100644 --- a/src/main/resources/data/mineralogy/recipe/marble_smooth_brick_furnace.json +++ b/src/main/resources/data/mineralogy/recipe/marble_smooth_brick_furnace.json @@ -1,22 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "xxx", - "xyx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:slabs/marble/smooth_brick" - }, - "y": { - "item": "minecraft:furnace" - } - }, - "result": { - "id": "mineralogy:marble_smooth_brick_furnace", - "count": 1 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "xxx", + "xyx", + "xxx" + ], + "key": { + "x": "#mineralogy:slabs/marble/smooth_brick", + "y": "minecraft:furnace" + }, + "result": { + "id": "mineralogy:marble_smooth_brick_furnace", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/marble_smooth_brick_slab.json b/src/main/resources/data/mineralogy/recipe/marble_smooth_brick_slab.json index 53c38920f..eb8ecba7f 100644 --- a/src/main/resources/data/mineralogy/recipe/marble_smooth_brick_slab.json +++ b/src/main/resources/data/mineralogy/recipe/marble_smooth_brick_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:marble_smooth_brick" - } - }, - "result": { - "id": "mineralogy:marble_smooth_brick_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:marble_smooth_brick" + }, + "result": { + "id": "mineralogy:marble_smooth_brick_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/marble_smooth_brick_stairs.json b/src/main/resources/data/mineralogy/recipe/marble_smooth_brick_stairs.json index e7e1397c5..e5fed47e1 100644 --- a/src/main/resources/data/mineralogy/recipe/marble_smooth_brick_stairs.json +++ b/src/main/resources/data/mineralogy/recipe/marble_smooth_brick_stairs.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - "xx ", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/marble/smooth_brick" - } - }, - "result": { - "id": "mineralogy:marble_smooth_brick_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + "xx ", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/marble/smooth_brick" + }, + "result": { + "id": "mineralogy:marble_smooth_brick_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/marble_smooth_brick_wall.json b/src/main/resources/data/mineralogy/recipe/marble_smooth_brick_wall.json index 4d42329b4..401318078 100644 --- a/src/main/resources/data/mineralogy/recipe/marble_smooth_brick_wall.json +++ b/src/main/resources/data/mineralogy/recipe/marble_smooth_brick_wall.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/marble/smooth_brick" - } - }, - "result": { - "id": "mineralogy:marble_smooth_brick_wall", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/marble/smooth_brick" + }, + "result": { + "id": "mineralogy:marble_smooth_brick_wall", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/marble_smooth_furnace.json b/src/main/resources/data/mineralogy/recipe/marble_smooth_furnace.json index 76262e1e5..e2709531b 100644 --- a/src/main/resources/data/mineralogy/recipe/marble_smooth_furnace.json +++ b/src/main/resources/data/mineralogy/recipe/marble_smooth_furnace.json @@ -1,22 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "xxx", - "xyx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:slabs/marble/smooth" - }, - "y": { - "item": "minecraft:furnace" - } - }, - "result": { - "id": "mineralogy:marble_smooth_furnace", - "count": 1 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "xxx", + "xyx", + "xxx" + ], + "key": { + "x": "#mineralogy:slabs/marble/smooth", + "y": "minecraft:furnace" + }, + "result": { + "id": "mineralogy:marble_smooth_furnace", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/marble_smooth_slab.json b/src/main/resources/data/mineralogy/recipe/marble_smooth_slab.json index 4f88c9add..2494017fb 100644 --- a/src/main/resources/data/mineralogy/recipe/marble_smooth_slab.json +++ b/src/main/resources/data/mineralogy/recipe/marble_smooth_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:marble_smooth" - } - }, - "result": { - "id": "mineralogy:marble_smooth_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:marble_smooth" + }, + "result": { + "id": "mineralogy:marble_smooth_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/marble_smooth_stairs.json b/src/main/resources/data/mineralogy/recipe/marble_smooth_stairs.json index 996951328..bc588a1fc 100644 --- a/src/main/resources/data/mineralogy/recipe/marble_smooth_stairs.json +++ b/src/main/resources/data/mineralogy/recipe/marble_smooth_stairs.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - "xx ", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/marble/smooth" - } - }, - "result": { - "id": "mineralogy:marble_smooth_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + "xx ", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/marble/smooth" + }, + "result": { + "id": "mineralogy:marble_smooth_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/marble_smooth_wall.json b/src/main/resources/data/mineralogy/recipe/marble_smooth_wall.json index d33a8871f..af7ba1fbb 100644 --- a/src/main/resources/data/mineralogy/recipe/marble_smooth_wall.json +++ b/src/main/resources/data/mineralogy/recipe/marble_smooth_wall.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/marble/smooth" - } - }, - "result": { - "id": "mineralogy:marble_smooth_wall", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/marble/smooth" + }, + "result": { + "id": "mineralogy:marble_smooth_wall", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/marble_stairs.json b/src/main/resources/data/mineralogy/recipe/marble_stairs.json index 1264db1c2..e5234014c 100644 --- a/src/main/resources/data/mineralogy/recipe/marble_stairs.json +++ b/src/main/resources/data/mineralogy/recipe/marble_stairs.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - "xx ", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/marble" - } - }, - "result": { - "id": "mineralogy:marble_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + "xx ", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/marble" + }, + "result": { + "id": "mineralogy:marble_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/marble_to_stone.json b/src/main/resources/data/mineralogy/recipe/marble_to_stone.json index bb7194c41..039fe6028 100644 --- a/src/main/resources/data/mineralogy/recipe/marble_to_stone.json +++ b/src/main/resources/data/mineralogy/recipe/marble_to_stone.json @@ -1,12 +1,10 @@ { - "type": "minecraft:smelting", - "category": "blocks", - "ingredient": { - "item": "mineralogy:marble" - }, - "result": { - "id": "minecraft:stone" - }, - "experience": 0.1, - "cookingtime": 200 + "type": "minecraft:smelting", + "category": "blocks", + "ingredient": "mineralogy:marble", + "result": { + "id": "minecraft:stone" + }, + "experience": 0.1, + "cookingtime": 200 } diff --git a/src/main/resources/data/mineralogy/recipe/marble_wall.json b/src/main/resources/data/mineralogy/recipe/marble_wall.json index f418bb04c..fd7fd1877 100644 --- a/src/main/resources/data/mineralogy/recipe/marble_wall.json +++ b/src/main/resources/data/mineralogy/recipe/marble_wall.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/marble" - } - }, - "result": { - "id": "mineralogy:marble_wall", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/marble" + }, + "result": { + "id": "mineralogy:marble_wall", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/mineralfertilizer.json b/src/main/resources/data/mineralogy/recipe/mineralfertilizer.json index ce76b34de..7547b6c10 100644 --- a/src/main/resources/data/mineralogy/recipe/mineralfertilizer.json +++ b/src/main/resources/data/mineralogy/recipe/mineralfertilizer.json @@ -1,22 +1,18 @@ { - "neoforge:conditions": [ - { - "type": "mineralogy:config", - "flag": "ENABLE_MINERAL_FERTILIZER" - } - ], - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "tag": "c:dusts/nitrate" - }, - { - "tag": "c:dusts/phosphorous" - } - ], - "result": { - "id": "mineralogy:mineral_fertilizer", - "count": 1 - } + "neoforge:conditions": [ + { + "type": "mineralogy:config", + "flag": "ENABLE_MINERAL_FERTILIZER" + } + ], + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "#c:dusts/nitrate", + "#c:dusts/phosphorous" + ], + "result": { + "id": "mineralogy:mineral_fertilizer", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/nitrate_block.json b/src/main/resources/data/mineralogy/recipe/nitrate_block.json index 424667807..91d4b21ed 100644 --- a/src/main/resources/data/mineralogy/recipe/nitrate_block.json +++ b/src/main/resources/data/mineralogy/recipe/nitrate_block.json @@ -1,25 +1,23 @@ { - "neoforge:conditions": [ - { - "type": "mineralogy:config", - "flag": "ENABLE_MINERAL_DUSTS" - } - ], - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx", - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:nitrate_dust" - } - }, - "result": { - "id": "mineralogy:nitrate_block", - "count": 1 - }, - "show_notification": true + "neoforge:conditions": [ + { + "type": "mineralogy:config", + "flag": "ENABLE_MINERAL_DUSTS" + } + ], + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx", + "xxx" + ], + "key": { + "x": "mineralogy:nitrate_dust" + }, + "result": { + "id": "mineralogy:nitrate_block", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/nitrate_dust.json b/src/main/resources/data/mineralogy/recipe/nitrate_dust.json index 2cb525b04..5577f76f6 100644 --- a/src/main/resources/data/mineralogy/recipe/nitrate_dust.json +++ b/src/main/resources/data/mineralogy/recipe/nitrate_dust.json @@ -1,19 +1,17 @@ { - "neoforge:conditions": [ - { - "type": "mineralogy:config", - "flag": "ENABLE_MINERAL_DUSTS" - } - ], - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "tag": "c:storage_blocks/nitrate" - } - ], - "result": { - "id": "mineralogy:nitrate_dust", - "count": 9 - } + "neoforge:conditions": [ + { + "type": "mineralogy:config", + "flag": "ENABLE_MINERAL_DUSTS" + } + ], + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "#c:storage_blocks/nitrate" + ], + "result": { + "id": "mineralogy:nitrate_dust", + "count": 9 + } } diff --git a/src/main/resources/data/mineralogy/recipe/novaculite_brick.json b/src/main/resources/data/mineralogy/recipe/novaculite_brick.json index 93368eaac..c2a7870ca 100644 --- a/src/main/resources/data/mineralogy/recipe/novaculite_brick.json +++ b/src/main/resources/data/mineralogy/recipe/novaculite_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/novaculite" - } - }, - "result": { - "id": "mineralogy:novaculite_brick", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "#mineralogy:stones/novaculite" + }, + "result": { + "id": "mineralogy:novaculite_brick", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/novaculite_brick_block_polishing.json b/src/main/resources/data/mineralogy/recipe/novaculite_brick_block_polishing.json index d50d6b3a3..96de109a5 100644 --- a/src/main/resources/data/mineralogy/recipe/novaculite_brick_block_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/novaculite_brick_block_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:novaculite_brick" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:novaculite_smooth_brick", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:novaculite_brick", + "#c:sands" + ], + "result": { + "id": "mineralogy:novaculite_smooth_brick", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/novaculite_brick_furnace.json b/src/main/resources/data/mineralogy/recipe/novaculite_brick_furnace.json index a7b4e6c1b..595a2a40d 100644 --- a/src/main/resources/data/mineralogy/recipe/novaculite_brick_furnace.json +++ b/src/main/resources/data/mineralogy/recipe/novaculite_brick_furnace.json @@ -1,22 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "xxx", - "xyx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:slabs/novaculite/brick" - }, - "y": { - "item": "minecraft:furnace" - } - }, - "result": { - "id": "mineralogy:novaculite_brick_furnace", - "count": 1 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "xxx", + "xyx", + "xxx" + ], + "key": { + "x": "#mineralogy:slabs/novaculite/brick", + "y": "minecraft:furnace" + }, + "result": { + "id": "mineralogy:novaculite_brick_furnace", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/novaculite_brick_slab.json b/src/main/resources/data/mineralogy/recipe/novaculite_brick_slab.json index 42e0e8bba..df409119f 100644 --- a/src/main/resources/data/mineralogy/recipe/novaculite_brick_slab.json +++ b/src/main/resources/data/mineralogy/recipe/novaculite_brick_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:novaculite_brick" - } - }, - "result": { - "id": "mineralogy:novaculite_brick_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:novaculite_brick" + }, + "result": { + "id": "mineralogy:novaculite_brick_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/novaculite_brick_slab_polishing.json b/src/main/resources/data/mineralogy/recipe/novaculite_brick_slab_polishing.json index 6d56f00ba..a7ea36104 100644 --- a/src/main/resources/data/mineralogy/recipe/novaculite_brick_slab_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/novaculite_brick_slab_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:novaculite_brick_slab" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:novaculite_smooth_brick_slab", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:novaculite_brick_slab", + "#c:sands" + ], + "result": { + "id": "mineralogy:novaculite_smooth_brick_slab", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/novaculite_brick_slab_recombination.json b/src/main/resources/data/mineralogy/recipe/novaculite_brick_slab_recombination.json index 57e947bd3..c95661931 100644 --- a/src/main/resources/data/mineralogy/recipe/novaculite_brick_slab_recombination.json +++ b/src/main/resources/data/mineralogy/recipe/novaculite_brick_slab_recombination.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:novaculite_brick_slab" - }, - { - "item": "mineralogy:novaculite_brick_slab" - } - ], - "result": { - "id": "mineralogy:novaculite_brick", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:novaculite_brick_slab", + "mineralogy:novaculite_brick_slab" + ], + "result": { + "id": "mineralogy:novaculite_brick", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/novaculite_brick_stairs.json b/src/main/resources/data/mineralogy/recipe/novaculite_brick_stairs.json index c91bcf1b7..d6f3e0b96 100644 --- a/src/main/resources/data/mineralogy/recipe/novaculite_brick_stairs.json +++ b/src/main/resources/data/mineralogy/recipe/novaculite_brick_stairs.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - "xx ", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/novaculite/brick" - } - }, - "result": { - "id": "mineralogy:novaculite_brick_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + "xx ", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/novaculite/brick" + }, + "result": { + "id": "mineralogy:novaculite_brick_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/novaculite_brick_stairs_polishing.json b/src/main/resources/data/mineralogy/recipe/novaculite_brick_stairs_polishing.json index dd5326393..a8687844c 100644 --- a/src/main/resources/data/mineralogy/recipe/novaculite_brick_stairs_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/novaculite_brick_stairs_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:novaculite_brick_stairs" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:novaculite_smooth_brick_stairs", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:novaculite_brick_stairs", + "#c:sands" + ], + "result": { + "id": "mineralogy:novaculite_smooth_brick_stairs", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/novaculite_brick_wall.json b/src/main/resources/data/mineralogy/recipe/novaculite_brick_wall.json index ceb5c0eca..34a44d8ed 100644 --- a/src/main/resources/data/mineralogy/recipe/novaculite_brick_wall.json +++ b/src/main/resources/data/mineralogy/recipe/novaculite_brick_wall.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/novaculite/brick" - } - }, - "result": { - "id": "mineralogy:novaculite_brick_wall", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/novaculite/brick" + }, + "result": { + "id": "mineralogy:novaculite_brick_wall", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/novaculite_brick_wall_polishing.json b/src/main/resources/data/mineralogy/recipe/novaculite_brick_wall_polishing.json index c48e7059d..cf5c60514 100644 --- a/src/main/resources/data/mineralogy/recipe/novaculite_brick_wall_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/novaculite_brick_wall_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:novaculite_brick_wall" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:novaculite_smooth_brick_wall", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:novaculite_brick_wall", + "#c:sands" + ], + "result": { + "id": "mineralogy:novaculite_smooth_brick_wall", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/novaculite_cobblestone.json b/src/main/resources/data/mineralogy/recipe/novaculite_cobblestone.json index c80c0f5d9..229ec699f 100644 --- a/src/main/resources/data/mineralogy/recipe/novaculite_cobblestone.json +++ b/src/main/resources/data/mineralogy/recipe/novaculite_cobblestone.json @@ -1,22 +1,14 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "tag": "mineralogy:stones/novaculite" - }, - { - "tag": "mineralogy:stones/novaculite" - }, - { - "item": "minecraft:gravel" - }, - { - "item": "minecraft:gravel" - } - ], - "result": { - "id": "minecraft:cobblestone", - "count": 4 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "#mineralogy:stones/novaculite", + "#mineralogy:stones/novaculite", + "minecraft:gravel", + "minecraft:gravel" + ], + "result": { + "id": "minecraft:cobblestone", + "count": 4 + } } diff --git a/src/main/resources/data/mineralogy/recipe/novaculite_furnace.json b/src/main/resources/data/mineralogy/recipe/novaculite_furnace.json index 578609699..160d68395 100644 --- a/src/main/resources/data/mineralogy/recipe/novaculite_furnace.json +++ b/src/main/resources/data/mineralogy/recipe/novaculite_furnace.json @@ -1,22 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "xxx", - "xyx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:slabs/novaculite" - }, - "y": { - "item": "minecraft:furnace" - } - }, - "result": { - "id": "mineralogy:novaculite_furnace", - "count": 1 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "xxx", + "xyx", + "xxx" + ], + "key": { + "x": "#mineralogy:slabs/novaculite", + "y": "minecraft:furnace" + }, + "result": { + "id": "mineralogy:novaculite_furnace", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/novaculite_polished_brick_slab_recombination.json b/src/main/resources/data/mineralogy/recipe/novaculite_polished_brick_slab_recombination.json index 0bef8ec83..cc7eff2ea 100644 --- a/src/main/resources/data/mineralogy/recipe/novaculite_polished_brick_slab_recombination.json +++ b/src/main/resources/data/mineralogy/recipe/novaculite_polished_brick_slab_recombination.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:novaculite_smooth_brick_slab" - }, - { - "item": "mineralogy:novaculite_smooth_brick_slab" - } - ], - "result": { - "id": "mineralogy:novaculite_smooth_brick", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:novaculite_smooth_brick_slab", + "mineralogy:novaculite_smooth_brick_slab" + ], + "result": { + "id": "mineralogy:novaculite_smooth_brick", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/novaculite_polished_slab_recombination.json b/src/main/resources/data/mineralogy/recipe/novaculite_polished_slab_recombination.json index 602b3bf23..c397a40a6 100644 --- a/src/main/resources/data/mineralogy/recipe/novaculite_polished_slab_recombination.json +++ b/src/main/resources/data/mineralogy/recipe/novaculite_polished_slab_recombination.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:novaculite_smooth_slab" - }, - { - "item": "mineralogy:novaculite_smooth_slab" - } - ], - "result": { - "id": "mineralogy:novaculite_smooth", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:novaculite_smooth_slab", + "mineralogy:novaculite_smooth_slab" + ], + "result": { + "id": "mineralogy:novaculite_smooth", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/novaculite_polished_slabs_to_brick.json b/src/main/resources/data/mineralogy/recipe/novaculite_polished_slabs_to_brick.json index 78862962f..3a6ab440e 100644 --- a/src/main/resources/data/mineralogy/recipe/novaculite_polished_slabs_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/novaculite_polished_slabs_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:novaculite_smooth_slab" - } - }, - "result": { - "id": "mineralogy:novaculite_smooth_brick_slab", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:novaculite_smooth_slab" + }, + "result": { + "id": "mineralogy:novaculite_smooth_brick_slab", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/novaculite_polished_stairs_to_brick.json b/src/main/resources/data/mineralogy/recipe/novaculite_polished_stairs_to_brick.json index 2b331ada9..469df5fc4 100644 --- a/src/main/resources/data/mineralogy/recipe/novaculite_polished_stairs_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/novaculite_polished_stairs_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:novaculite_smooth_stairs" - } - }, - "result": { - "id": "mineralogy:novaculite_smooth_brick_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:novaculite_smooth_stairs" + }, + "result": { + "id": "mineralogy:novaculite_smooth_brick_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/novaculite_polished_walls_to_brick.json b/src/main/resources/data/mineralogy/recipe/novaculite_polished_walls_to_brick.json index 49259f108..afa0cbfe8 100644 --- a/src/main/resources/data/mineralogy/recipe/novaculite_polished_walls_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/novaculite_polished_walls_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:novaculite_smooth_wall" - } - }, - "result": { - "id": "mineralogy:novaculite_smooth_brick_wall", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:novaculite_smooth_wall" + }, + "result": { + "id": "mineralogy:novaculite_smooth_brick_wall", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/novaculite_raw_slab_polishing.json b/src/main/resources/data/mineralogy/recipe/novaculite_raw_slab_polishing.json index aea8cf791..01a4173c2 100644 --- a/src/main/resources/data/mineralogy/recipe/novaculite_raw_slab_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/novaculite_raw_slab_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:novaculite_slab" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:novaculite_smooth_slab", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:novaculite_slab", + "#c:sands" + ], + "result": { + "id": "mineralogy:novaculite_smooth_slab", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/novaculite_raw_slab_recombination.json b/src/main/resources/data/mineralogy/recipe/novaculite_raw_slab_recombination.json index 7e56d5722..e7d535058 100644 --- a/src/main/resources/data/mineralogy/recipe/novaculite_raw_slab_recombination.json +++ b/src/main/resources/data/mineralogy/recipe/novaculite_raw_slab_recombination.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:novaculite_slab" - }, - { - "item": "mineralogy:novaculite_slab" - } - ], - "result": { - "id": "mineralogy:novaculite", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:novaculite_slab", + "mineralogy:novaculite_slab" + ], + "result": { + "id": "mineralogy:novaculite", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/novaculite_raw_slabs_to_brick.json b/src/main/resources/data/mineralogy/recipe/novaculite_raw_slabs_to_brick.json index 9aca326d8..5d5f72500 100644 --- a/src/main/resources/data/mineralogy/recipe/novaculite_raw_slabs_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/novaculite_raw_slabs_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:novaculite_slab" - } - }, - "result": { - "id": "mineralogy:novaculite_brick_slab", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:novaculite_slab" + }, + "result": { + "id": "mineralogy:novaculite_brick_slab", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/novaculite_raw_stairs_polishing.json b/src/main/resources/data/mineralogy/recipe/novaculite_raw_stairs_polishing.json index b13d7dcef..362d0fad4 100644 --- a/src/main/resources/data/mineralogy/recipe/novaculite_raw_stairs_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/novaculite_raw_stairs_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:novaculite_stairs" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:novaculite_smooth_stairs", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:novaculite_stairs", + "#c:sands" + ], + "result": { + "id": "mineralogy:novaculite_smooth_stairs", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/novaculite_raw_stairs_to_brick.json b/src/main/resources/data/mineralogy/recipe/novaculite_raw_stairs_to_brick.json index 56df021f2..d663b8e4c 100644 --- a/src/main/resources/data/mineralogy/recipe/novaculite_raw_stairs_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/novaculite_raw_stairs_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:novaculite_stairs" - } - }, - "result": { - "id": "mineralogy:novaculite_brick_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:novaculite_stairs" + }, + "result": { + "id": "mineralogy:novaculite_brick_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/novaculite_raw_wall_polishing.json b/src/main/resources/data/mineralogy/recipe/novaculite_raw_wall_polishing.json index 81253e909..2872191a2 100644 --- a/src/main/resources/data/mineralogy/recipe/novaculite_raw_wall_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/novaculite_raw_wall_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:novaculite_wall" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:novaculite_smooth_wall", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:novaculite_wall", + "#c:sands" + ], + "result": { + "id": "mineralogy:novaculite_smooth_wall", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/novaculite_raw_walls_to_brick.json b/src/main/resources/data/mineralogy/recipe/novaculite_raw_walls_to_brick.json index 4fcd8b8a3..3c17e3514 100644 --- a/src/main/resources/data/mineralogy/recipe/novaculite_raw_walls_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/novaculite_raw_walls_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:novaculite_wall" - } - }, - "result": { - "id": "mineralogy:novaculite_brick_wall", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:novaculite_wall" + }, + "result": { + "id": "mineralogy:novaculite_brick_wall", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/novaculite_relief_axe.json b/src/main/resources/data/mineralogy/recipe/novaculite_relief_axe.json index 034944ac9..6e0998abd 100644 --- a/src/main/resources/data/mineralogy/recipe/novaculite_relief_axe.json +++ b/src/main/resources/data/mineralogy/recipe/novaculite_relief_axe.json @@ -1,37 +1,19 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:novaculite_relief_blank" - }, - { - "item": "mineralogy:novaculite_relief_blank" - }, - { - "item": "mineralogy:novaculite_relief_blank" - }, - { - "item": "mineralogy:novaculite_relief_blank" - }, - { - "item": "mineralogy:novaculite_relief_blank" - }, - { - "item": "mineralogy:novaculite_relief_blank" - }, - { - "item": "mineralogy:novaculite_relief_blank" - }, - { - "item": "mineralogy:novaculite_relief_blank" - }, - { - "item": "minecraft:stone_axe" - } - ], - "result": { - "id": "mineralogy:novaculite_relief_axe", - "count": 8 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:novaculite_relief_blank", + "mineralogy:novaculite_relief_blank", + "mineralogy:novaculite_relief_blank", + "mineralogy:novaculite_relief_blank", + "mineralogy:novaculite_relief_blank", + "mineralogy:novaculite_relief_blank", + "mineralogy:novaculite_relief_blank", + "mineralogy:novaculite_relief_blank", + "minecraft:stone_axe" + ], + "result": { + "id": "mineralogy:novaculite_relief_axe", + "count": 8 + } } diff --git a/src/main/resources/data/mineralogy/recipe/novaculite_relief_blank.json b/src/main/resources/data/mineralogy/recipe/novaculite_relief_blank.json index 4414c19a2..9a4e2173f 100644 --- a/src/main/resources/data/mineralogy/recipe/novaculite_relief_blank.json +++ b/src/main/resources/data/mineralogy/recipe/novaculite_relief_blank.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx", - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:novaculite_smooth" - } - }, - "result": { - "id": "mineralogy:novaculite_relief_blank", - "count": 16 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx", + "xxx" + ], + "key": { + "x": "mineralogy:novaculite_smooth" + }, + "result": { + "id": "mineralogy:novaculite_relief_blank", + "count": 16 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/novaculite_relief_cross.json b/src/main/resources/data/mineralogy/recipe/novaculite_relief_cross.json index 912668148..a73a9fdd5 100644 --- a/src/main/resources/data/mineralogy/recipe/novaculite_relief_cross.json +++ b/src/main/resources/data/mineralogy/recipe/novaculite_relief_cross.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x x", - " ", - "x x" - ], - "key": { - "x": { - "item": "mineralogy:novaculite_relief_blank" - } - }, - "result": { - "id": "mineralogy:novaculite_relief_cross", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x x", + " ", + "x x" + ], + "key": { + "x": "mineralogy:novaculite_relief_blank" + }, + "result": { + "id": "mineralogy:novaculite_relief_cross", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/novaculite_relief_hammer.json b/src/main/resources/data/mineralogy/recipe/novaculite_relief_hammer.json index ebee095a9..42bcd3466 100644 --- a/src/main/resources/data/mineralogy/recipe/novaculite_relief_hammer.json +++ b/src/main/resources/data/mineralogy/recipe/novaculite_relief_hammer.json @@ -1,25 +1,19 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "zxz", - "zyz", - "zzz" - ], - "key": { - "x": { - "item": "mineralogy:novaculite_smooth" - }, - "y": { - "item": "minecraft:stick" - }, - "z": { - "item": "mineralogy:novaculite_relief_blank" - } - }, - "result": { - "id": "mineralogy:novaculite_relief_hammer", - "count": 7 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "zxz", + "zyz", + "zzz" + ], + "key": { + "x": "mineralogy:novaculite_smooth", + "y": "minecraft:stick", + "z": "mineralogy:novaculite_relief_blank" + }, + "result": { + "id": "mineralogy:novaculite_relief_hammer", + "count": 7 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/novaculite_relief_hoe.json b/src/main/resources/data/mineralogy/recipe/novaculite_relief_hoe.json index d5b8d1169..77dd0b786 100644 --- a/src/main/resources/data/mineralogy/recipe/novaculite_relief_hoe.json +++ b/src/main/resources/data/mineralogy/recipe/novaculite_relief_hoe.json @@ -1,37 +1,19 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:novaculite_relief_blank" - }, - { - "item": "mineralogy:novaculite_relief_blank" - }, - { - "item": "mineralogy:novaculite_relief_blank" - }, - { - "item": "mineralogy:novaculite_relief_blank" - }, - { - "item": "mineralogy:novaculite_relief_blank" - }, - { - "item": "mineralogy:novaculite_relief_blank" - }, - { - "item": "mineralogy:novaculite_relief_blank" - }, - { - "item": "mineralogy:novaculite_relief_blank" - }, - { - "item": "minecraft:stone_hoe" - } - ], - "result": { - "id": "mineralogy:novaculite_relief_hoe", - "count": 8 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:novaculite_relief_blank", + "mineralogy:novaculite_relief_blank", + "mineralogy:novaculite_relief_blank", + "mineralogy:novaculite_relief_blank", + "mineralogy:novaculite_relief_blank", + "mineralogy:novaculite_relief_blank", + "mineralogy:novaculite_relief_blank", + "mineralogy:novaculite_relief_blank", + "minecraft:stone_hoe" + ], + "result": { + "id": "mineralogy:novaculite_relief_hoe", + "count": 8 + } } diff --git a/src/main/resources/data/mineralogy/recipe/novaculite_relief_horizontal.json b/src/main/resources/data/mineralogy/recipe/novaculite_relief_horizontal.json index badd4d1b9..76332a27d 100644 --- a/src/main/resources/data/mineralogy/recipe/novaculite_relief_horizontal.json +++ b/src/main/resources/data/mineralogy/recipe/novaculite_relief_horizontal.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:novaculite_relief_blank" - } - }, - "result": { - "id": "mineralogy:novaculite_relief_horizontal", - "count": 3 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:novaculite_relief_blank" + }, + "result": { + "id": "mineralogy:novaculite_relief_horizontal", + "count": 3 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/novaculite_relief_i.json b/src/main/resources/data/mineralogy/recipe/novaculite_relief_i.json index d277480a7..7dbb24746 100644 --- a/src/main/resources/data/mineralogy/recipe/novaculite_relief_i.json +++ b/src/main/resources/data/mineralogy/recipe/novaculite_relief_i.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - " x ", - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:novaculite_relief_blank" - } - }, - "result": { - "id": "mineralogy:novaculite_relief_i", - "count": 7 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + " x ", + "xxx" + ], + "key": { + "x": "mineralogy:novaculite_relief_blank" + }, + "result": { + "id": "mineralogy:novaculite_relief_i", + "count": 7 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/novaculite_relief_left.json b/src/main/resources/data/mineralogy/recipe/novaculite_relief_left.json index 7628b3f09..850511b22 100644 --- a/src/main/resources/data/mineralogy/recipe/novaculite_relief_left.json +++ b/src/main/resources/data/mineralogy/recipe/novaculite_relief_left.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - " x ", - " x" - ], - "key": { - "x": { - "item": "mineralogy:novaculite_relief_blank" - } - }, - "result": { - "id": "mineralogy:novaculite_relief_left", - "count": 3 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + " x ", + " x" + ], + "key": { + "x": "mineralogy:novaculite_relief_blank" + }, + "result": { + "id": "mineralogy:novaculite_relief_left", + "count": 3 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/novaculite_relief_pickaxe.json b/src/main/resources/data/mineralogy/recipe/novaculite_relief_pickaxe.json index f5276f64e..c5faf7e9d 100644 --- a/src/main/resources/data/mineralogy/recipe/novaculite_relief_pickaxe.json +++ b/src/main/resources/data/mineralogy/recipe/novaculite_relief_pickaxe.json @@ -1,37 +1,19 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:novaculite_relief_blank" - }, - { - "item": "mineralogy:novaculite_relief_blank" - }, - { - "item": "mineralogy:novaculite_relief_blank" - }, - { - "item": "mineralogy:novaculite_relief_blank" - }, - { - "item": "mineralogy:novaculite_relief_blank" - }, - { - "item": "mineralogy:novaculite_relief_blank" - }, - { - "item": "mineralogy:novaculite_relief_blank" - }, - { - "item": "mineralogy:novaculite_relief_blank" - }, - { - "item": "minecraft:stone_pickaxe" - } - ], - "result": { - "id": "mineralogy:novaculite_relief_pickaxe", - "count": 8 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:novaculite_relief_blank", + "mineralogy:novaculite_relief_blank", + "mineralogy:novaculite_relief_blank", + "mineralogy:novaculite_relief_blank", + "mineralogy:novaculite_relief_blank", + "mineralogy:novaculite_relief_blank", + "mineralogy:novaculite_relief_blank", + "mineralogy:novaculite_relief_blank", + "minecraft:stone_pickaxe" + ], + "result": { + "id": "mineralogy:novaculite_relief_pickaxe", + "count": 8 + } } diff --git a/src/main/resources/data/mineralogy/recipe/novaculite_relief_plus.json b/src/main/resources/data/mineralogy/recipe/novaculite_relief_plus.json index 38312f0ff..5ca94dea0 100644 --- a/src/main/resources/data/mineralogy/recipe/novaculite_relief_plus.json +++ b/src/main/resources/data/mineralogy/recipe/novaculite_relief_plus.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - " x ", - "xxx", - " x " - ], - "key": { - "x": { - "item": "mineralogy:novaculite_relief_blank" - } - }, - "result": { - "id": "mineralogy:novaculite_relief_plus", - "count": 5 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + " x ", + "xxx", + " x " + ], + "key": { + "x": "mineralogy:novaculite_relief_blank" + }, + "result": { + "id": "mineralogy:novaculite_relief_plus", + "count": 5 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/novaculite_relief_right.json b/src/main/resources/data/mineralogy/recipe/novaculite_relief_right.json index e6c964572..5f625fdb1 100644 --- a/src/main/resources/data/mineralogy/recipe/novaculite_relief_right.json +++ b/src/main/resources/data/mineralogy/recipe/novaculite_relief_right.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:novaculite_relief_left" - }, - { - "item": "mineralogy:novaculite_relief_left" - } - ], - "result": { - "id": "mineralogy:novaculite_relief_right", - "count": 2 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:novaculite_relief_left", + "mineralogy:novaculite_relief_left" + ], + "result": { + "id": "mineralogy:novaculite_relief_right", + "count": 2 + } } diff --git a/src/main/resources/data/mineralogy/recipe/novaculite_relief_sword.json b/src/main/resources/data/mineralogy/recipe/novaculite_relief_sword.json index 0a70e07f9..2106e7791 100644 --- a/src/main/resources/data/mineralogy/recipe/novaculite_relief_sword.json +++ b/src/main/resources/data/mineralogy/recipe/novaculite_relief_sword.json @@ -1,37 +1,19 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:novaculite_relief_blank" - }, - { - "item": "mineralogy:novaculite_relief_blank" - }, - { - "item": "mineralogy:novaculite_relief_blank" - }, - { - "item": "mineralogy:novaculite_relief_blank" - }, - { - "item": "mineralogy:novaculite_relief_blank" - }, - { - "item": "mineralogy:novaculite_relief_blank" - }, - { - "item": "mineralogy:novaculite_relief_blank" - }, - { - "item": "mineralogy:novaculite_relief_blank" - }, - { - "item": "minecraft:stone_sword" - } - ], - "result": { - "id": "mineralogy:novaculite_relief_sword", - "count": 8 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:novaculite_relief_blank", + "mineralogy:novaculite_relief_blank", + "mineralogy:novaculite_relief_blank", + "mineralogy:novaculite_relief_blank", + "mineralogy:novaculite_relief_blank", + "mineralogy:novaculite_relief_blank", + "mineralogy:novaculite_relief_blank", + "mineralogy:novaculite_relief_blank", + "minecraft:stone_sword" + ], + "result": { + "id": "mineralogy:novaculite_relief_sword", + "count": 8 + } } diff --git a/src/main/resources/data/mineralogy/recipe/novaculite_relief_vertical.json b/src/main/resources/data/mineralogy/recipe/novaculite_relief_vertical.json index 7786aed94..9b47d1b32 100644 --- a/src/main/resources/data/mineralogy/recipe/novaculite_relief_vertical.json +++ b/src/main/resources/data/mineralogy/recipe/novaculite_relief_vertical.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x", - "x", - "x" - ], - "key": { - "x": { - "item": "mineralogy:novaculite_relief_blank" - } - }, - "result": { - "id": "mineralogy:novaculite_relief_vertical", - "count": 3 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x", + "x", + "x" + ], + "key": { + "x": "mineralogy:novaculite_relief_blank" + }, + "result": { + "id": "mineralogy:novaculite_relief_vertical", + "count": 3 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/novaculite_slab.json b/src/main/resources/data/mineralogy/recipe/novaculite_slab.json index b6680e93b..a37f0ae36 100644 --- a/src/main/resources/data/mineralogy/recipe/novaculite_slab.json +++ b/src/main/resources/data/mineralogy/recipe/novaculite_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:novaculite" - } - }, - "result": { - "id": "mineralogy:novaculite_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:novaculite" + }, + "result": { + "id": "mineralogy:novaculite_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/novaculite_smooth.json b/src/main/resources/data/mineralogy/recipe/novaculite_smooth.json index 06e488b36..d6b095b54 100644 --- a/src/main/resources/data/mineralogy/recipe/novaculite_smooth.json +++ b/src/main/resources/data/mineralogy/recipe/novaculite_smooth.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "tag": "mineralogy:stones/novaculite" - }, - { - "item": "minecraft:sand" - } - ], - "result": { - "id": "mineralogy:novaculite_smooth", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "#mineralogy:stones/novaculite", + "minecraft:sand" + ], + "result": { + "id": "mineralogy:novaculite_smooth", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/novaculite_smooth_brick.json b/src/main/resources/data/mineralogy/recipe/novaculite_smooth_brick.json index ca56caa99..e6a67238c 100644 --- a/src/main/resources/data/mineralogy/recipe/novaculite_smooth_brick.json +++ b/src/main/resources/data/mineralogy/recipe/novaculite_smooth_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/novaculite/smooth" - } - }, - "result": { - "id": "mineralogy:novaculite_smooth_brick", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "#mineralogy:stones/novaculite/smooth" + }, + "result": { + "id": "mineralogy:novaculite_smooth_brick", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/novaculite_smooth_brick_furnace.json b/src/main/resources/data/mineralogy/recipe/novaculite_smooth_brick_furnace.json index e5b0d4b96..7d8b48078 100644 --- a/src/main/resources/data/mineralogy/recipe/novaculite_smooth_brick_furnace.json +++ b/src/main/resources/data/mineralogy/recipe/novaculite_smooth_brick_furnace.json @@ -1,22 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "xxx", - "xyx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:slabs/novaculite/smooth_brick" - }, - "y": { - "item": "minecraft:furnace" - } - }, - "result": { - "id": "mineralogy:novaculite_smooth_brick_furnace", - "count": 1 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "xxx", + "xyx", + "xxx" + ], + "key": { + "x": "#mineralogy:slabs/novaculite/smooth_brick", + "y": "minecraft:furnace" + }, + "result": { + "id": "mineralogy:novaculite_smooth_brick_furnace", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/novaculite_smooth_brick_slab.json b/src/main/resources/data/mineralogy/recipe/novaculite_smooth_brick_slab.json index c758216c4..512b985b6 100644 --- a/src/main/resources/data/mineralogy/recipe/novaculite_smooth_brick_slab.json +++ b/src/main/resources/data/mineralogy/recipe/novaculite_smooth_brick_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:novaculite_smooth_brick" - } - }, - "result": { - "id": "mineralogy:novaculite_smooth_brick_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:novaculite_smooth_brick" + }, + "result": { + "id": "mineralogy:novaculite_smooth_brick_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/novaculite_smooth_brick_stairs.json b/src/main/resources/data/mineralogy/recipe/novaculite_smooth_brick_stairs.json index 9648a9f2c..a360ecac1 100644 --- a/src/main/resources/data/mineralogy/recipe/novaculite_smooth_brick_stairs.json +++ b/src/main/resources/data/mineralogy/recipe/novaculite_smooth_brick_stairs.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - "xx ", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/novaculite/smooth_brick" - } - }, - "result": { - "id": "mineralogy:novaculite_smooth_brick_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + "xx ", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/novaculite/smooth_brick" + }, + "result": { + "id": "mineralogy:novaculite_smooth_brick_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/novaculite_smooth_brick_wall.json b/src/main/resources/data/mineralogy/recipe/novaculite_smooth_brick_wall.json index cb0459730..3a2bf77dd 100644 --- a/src/main/resources/data/mineralogy/recipe/novaculite_smooth_brick_wall.json +++ b/src/main/resources/data/mineralogy/recipe/novaculite_smooth_brick_wall.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/novaculite/smooth_brick" - } - }, - "result": { - "id": "mineralogy:novaculite_smooth_brick_wall", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/novaculite/smooth_brick" + }, + "result": { + "id": "mineralogy:novaculite_smooth_brick_wall", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/novaculite_smooth_furnace.json b/src/main/resources/data/mineralogy/recipe/novaculite_smooth_furnace.json index adee37eaf..ac00674b3 100644 --- a/src/main/resources/data/mineralogy/recipe/novaculite_smooth_furnace.json +++ b/src/main/resources/data/mineralogy/recipe/novaculite_smooth_furnace.json @@ -1,22 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "xxx", - "xyx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:slabs/novaculite/smooth" - }, - "y": { - "item": "minecraft:furnace" - } - }, - "result": { - "id": "mineralogy:novaculite_smooth_furnace", - "count": 1 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "xxx", + "xyx", + "xxx" + ], + "key": { + "x": "#mineralogy:slabs/novaculite/smooth", + "y": "minecraft:furnace" + }, + "result": { + "id": "mineralogy:novaculite_smooth_furnace", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/novaculite_smooth_slab.json b/src/main/resources/data/mineralogy/recipe/novaculite_smooth_slab.json index 4b3e863b4..1959a12b9 100644 --- a/src/main/resources/data/mineralogy/recipe/novaculite_smooth_slab.json +++ b/src/main/resources/data/mineralogy/recipe/novaculite_smooth_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:novaculite_smooth" - } - }, - "result": { - "id": "mineralogy:novaculite_smooth_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:novaculite_smooth" + }, + "result": { + "id": "mineralogy:novaculite_smooth_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/novaculite_smooth_stairs.json b/src/main/resources/data/mineralogy/recipe/novaculite_smooth_stairs.json index 344928867..d234bed01 100644 --- a/src/main/resources/data/mineralogy/recipe/novaculite_smooth_stairs.json +++ b/src/main/resources/data/mineralogy/recipe/novaculite_smooth_stairs.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - "xx ", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/novaculite/smooth" - } - }, - "result": { - "id": "mineralogy:novaculite_smooth_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + "xx ", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/novaculite/smooth" + }, + "result": { + "id": "mineralogy:novaculite_smooth_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/novaculite_smooth_wall.json b/src/main/resources/data/mineralogy/recipe/novaculite_smooth_wall.json index 60ce4b6f4..f8e6b622f 100644 --- a/src/main/resources/data/mineralogy/recipe/novaculite_smooth_wall.json +++ b/src/main/resources/data/mineralogy/recipe/novaculite_smooth_wall.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/novaculite/smooth" - } - }, - "result": { - "id": "mineralogy:novaculite_smooth_wall", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/novaculite/smooth" + }, + "result": { + "id": "mineralogy:novaculite_smooth_wall", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/novaculite_stairs.json b/src/main/resources/data/mineralogy/recipe/novaculite_stairs.json index addf655a2..b4ba78de7 100644 --- a/src/main/resources/data/mineralogy/recipe/novaculite_stairs.json +++ b/src/main/resources/data/mineralogy/recipe/novaculite_stairs.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - "xx ", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/novaculite" - } - }, - "result": { - "id": "mineralogy:novaculite_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + "xx ", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/novaculite" + }, + "result": { + "id": "mineralogy:novaculite_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/novaculite_to_stone.json b/src/main/resources/data/mineralogy/recipe/novaculite_to_stone.json index f80e9d4f5..98a6f3512 100644 --- a/src/main/resources/data/mineralogy/recipe/novaculite_to_stone.json +++ b/src/main/resources/data/mineralogy/recipe/novaculite_to_stone.json @@ -1,12 +1,10 @@ { - "type": "minecraft:smelting", - "category": "blocks", - "ingredient": { - "item": "mineralogy:novaculite" - }, - "result": { - "id": "minecraft:stone" - }, - "experience": 0.1, - "cookingtime": 200 + "type": "minecraft:smelting", + "category": "blocks", + "ingredient": "mineralogy:novaculite", + "result": { + "id": "minecraft:stone" + }, + "experience": 0.1, + "cookingtime": 200 } diff --git a/src/main/resources/data/mineralogy/recipe/novaculite_wall.json b/src/main/resources/data/mineralogy/recipe/novaculite_wall.json index 6c5270cc2..b83e84580 100644 --- a/src/main/resources/data/mineralogy/recipe/novaculite_wall.json +++ b/src/main/resources/data/mineralogy/recipe/novaculite_wall.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/novaculite" - } - }, - "result": { - "id": "mineralogy:novaculite_wall", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/novaculite" + }, + "result": { + "id": "mineralogy:novaculite_wall", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/pegmatite_brick.json b/src/main/resources/data/mineralogy/recipe/pegmatite_brick.json index 1c41f2c49..3d0acdb58 100644 --- a/src/main/resources/data/mineralogy/recipe/pegmatite_brick.json +++ b/src/main/resources/data/mineralogy/recipe/pegmatite_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/pegmatite" - } - }, - "result": { - "id": "mineralogy:pegmatite_brick", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "#mineralogy:stones/pegmatite" + }, + "result": { + "id": "mineralogy:pegmatite_brick", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/pegmatite_brick_block_polishing.json b/src/main/resources/data/mineralogy/recipe/pegmatite_brick_block_polishing.json index 00d1723b6..b27d2ad1b 100644 --- a/src/main/resources/data/mineralogy/recipe/pegmatite_brick_block_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/pegmatite_brick_block_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:pegmatite_brick" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:pegmatite_smooth_brick", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:pegmatite_brick", + "#c:sands" + ], + "result": { + "id": "mineralogy:pegmatite_smooth_brick", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/pegmatite_brick_furnace.json b/src/main/resources/data/mineralogy/recipe/pegmatite_brick_furnace.json index 3281451da..3904e2b49 100644 --- a/src/main/resources/data/mineralogy/recipe/pegmatite_brick_furnace.json +++ b/src/main/resources/data/mineralogy/recipe/pegmatite_brick_furnace.json @@ -1,22 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "xxx", - "xyx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:slabs/pegmatite/brick" - }, - "y": { - "item": "minecraft:furnace" - } - }, - "result": { - "id": "mineralogy:pegmatite_brick_furnace", - "count": 1 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "xxx", + "xyx", + "xxx" + ], + "key": { + "x": "#mineralogy:slabs/pegmatite/brick", + "y": "minecraft:furnace" + }, + "result": { + "id": "mineralogy:pegmatite_brick_furnace", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/pegmatite_brick_slab.json b/src/main/resources/data/mineralogy/recipe/pegmatite_brick_slab.json index f91cbbdad..64c58b52a 100644 --- a/src/main/resources/data/mineralogy/recipe/pegmatite_brick_slab.json +++ b/src/main/resources/data/mineralogy/recipe/pegmatite_brick_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:pegmatite_brick" - } - }, - "result": { - "id": "mineralogy:pegmatite_brick_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:pegmatite_brick" + }, + "result": { + "id": "mineralogy:pegmatite_brick_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/pegmatite_brick_slab_polishing.json b/src/main/resources/data/mineralogy/recipe/pegmatite_brick_slab_polishing.json index 8e8c99f6b..fb7327c06 100644 --- a/src/main/resources/data/mineralogy/recipe/pegmatite_brick_slab_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/pegmatite_brick_slab_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:pegmatite_brick_slab" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:pegmatite_smooth_brick_slab", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:pegmatite_brick_slab", + "#c:sands" + ], + "result": { + "id": "mineralogy:pegmatite_smooth_brick_slab", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/pegmatite_brick_slab_recombination.json b/src/main/resources/data/mineralogy/recipe/pegmatite_brick_slab_recombination.json index 26e243f7c..6eee0d0a5 100644 --- a/src/main/resources/data/mineralogy/recipe/pegmatite_brick_slab_recombination.json +++ b/src/main/resources/data/mineralogy/recipe/pegmatite_brick_slab_recombination.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:pegmatite_brick_slab" - }, - { - "item": "mineralogy:pegmatite_brick_slab" - } - ], - "result": { - "id": "mineralogy:pegmatite_brick", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:pegmatite_brick_slab", + "mineralogy:pegmatite_brick_slab" + ], + "result": { + "id": "mineralogy:pegmatite_brick", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/pegmatite_brick_stairs.json b/src/main/resources/data/mineralogy/recipe/pegmatite_brick_stairs.json index aa66b959d..a4bbc537b 100644 --- a/src/main/resources/data/mineralogy/recipe/pegmatite_brick_stairs.json +++ b/src/main/resources/data/mineralogy/recipe/pegmatite_brick_stairs.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - "xx ", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/pegmatite/brick" - } - }, - "result": { - "id": "mineralogy:pegmatite_brick_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + "xx ", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/pegmatite/brick" + }, + "result": { + "id": "mineralogy:pegmatite_brick_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/pegmatite_brick_stairs_polishing.json b/src/main/resources/data/mineralogy/recipe/pegmatite_brick_stairs_polishing.json index c5934ba86..07bf03918 100644 --- a/src/main/resources/data/mineralogy/recipe/pegmatite_brick_stairs_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/pegmatite_brick_stairs_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:pegmatite_brick_stairs" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:pegmatite_smooth_brick_stairs", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:pegmatite_brick_stairs", + "#c:sands" + ], + "result": { + "id": "mineralogy:pegmatite_smooth_brick_stairs", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/pegmatite_brick_wall.json b/src/main/resources/data/mineralogy/recipe/pegmatite_brick_wall.json index 46544484f..26a687fec 100644 --- a/src/main/resources/data/mineralogy/recipe/pegmatite_brick_wall.json +++ b/src/main/resources/data/mineralogy/recipe/pegmatite_brick_wall.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/pegmatite/brick" - } - }, - "result": { - "id": "mineralogy:pegmatite_brick_wall", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/pegmatite/brick" + }, + "result": { + "id": "mineralogy:pegmatite_brick_wall", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/pegmatite_brick_wall_polishing.json b/src/main/resources/data/mineralogy/recipe/pegmatite_brick_wall_polishing.json index 2d20430d9..a355f5f35 100644 --- a/src/main/resources/data/mineralogy/recipe/pegmatite_brick_wall_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/pegmatite_brick_wall_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:pegmatite_brick_wall" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:pegmatite_smooth_brick_wall", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:pegmatite_brick_wall", + "#c:sands" + ], + "result": { + "id": "mineralogy:pegmatite_smooth_brick_wall", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/pegmatite_cobblestone.json b/src/main/resources/data/mineralogy/recipe/pegmatite_cobblestone.json index 68bdd9015..318d02f7a 100644 --- a/src/main/resources/data/mineralogy/recipe/pegmatite_cobblestone.json +++ b/src/main/resources/data/mineralogy/recipe/pegmatite_cobblestone.json @@ -1,22 +1,14 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "tag": "mineralogy:stones/pegmatite" - }, - { - "tag": "mineralogy:stones/pegmatite" - }, - { - "item": "minecraft:gravel" - }, - { - "item": "minecraft:gravel" - } - ], - "result": { - "id": "minecraft:cobblestone", - "count": 4 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "#mineralogy:stones/pegmatite", + "#mineralogy:stones/pegmatite", + "minecraft:gravel", + "minecraft:gravel" + ], + "result": { + "id": "minecraft:cobblestone", + "count": 4 + } } diff --git a/src/main/resources/data/mineralogy/recipe/pegmatite_furnace.json b/src/main/resources/data/mineralogy/recipe/pegmatite_furnace.json index c9db831eb..943413b23 100644 --- a/src/main/resources/data/mineralogy/recipe/pegmatite_furnace.json +++ b/src/main/resources/data/mineralogy/recipe/pegmatite_furnace.json @@ -1,22 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "xxx", - "xyx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:slabs/pegmatite" - }, - "y": { - "item": "minecraft:furnace" - } - }, - "result": { - "id": "mineralogy:pegmatite_furnace", - "count": 1 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "xxx", + "xyx", + "xxx" + ], + "key": { + "x": "#mineralogy:slabs/pegmatite", + "y": "minecraft:furnace" + }, + "result": { + "id": "mineralogy:pegmatite_furnace", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/pegmatite_polished_brick_slab_recombination.json b/src/main/resources/data/mineralogy/recipe/pegmatite_polished_brick_slab_recombination.json index 9ff255dcd..9292a23a8 100644 --- a/src/main/resources/data/mineralogy/recipe/pegmatite_polished_brick_slab_recombination.json +++ b/src/main/resources/data/mineralogy/recipe/pegmatite_polished_brick_slab_recombination.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:pegmatite_smooth_brick_slab" - }, - { - "item": "mineralogy:pegmatite_smooth_brick_slab" - } - ], - "result": { - "id": "mineralogy:pegmatite_smooth_brick", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:pegmatite_smooth_brick_slab", + "mineralogy:pegmatite_smooth_brick_slab" + ], + "result": { + "id": "mineralogy:pegmatite_smooth_brick", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/pegmatite_polished_slab_recombination.json b/src/main/resources/data/mineralogy/recipe/pegmatite_polished_slab_recombination.json index 6c4c0fa59..18e955cfc 100644 --- a/src/main/resources/data/mineralogy/recipe/pegmatite_polished_slab_recombination.json +++ b/src/main/resources/data/mineralogy/recipe/pegmatite_polished_slab_recombination.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:pegmatite_smooth_slab" - }, - { - "item": "mineralogy:pegmatite_smooth_slab" - } - ], - "result": { - "id": "mineralogy:pegmatite_smooth", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:pegmatite_smooth_slab", + "mineralogy:pegmatite_smooth_slab" + ], + "result": { + "id": "mineralogy:pegmatite_smooth", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/pegmatite_polished_slabs_to_brick.json b/src/main/resources/data/mineralogy/recipe/pegmatite_polished_slabs_to_brick.json index 607e71689..88a708705 100644 --- a/src/main/resources/data/mineralogy/recipe/pegmatite_polished_slabs_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/pegmatite_polished_slabs_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:pegmatite_smooth_slab" - } - }, - "result": { - "id": "mineralogy:pegmatite_smooth_brick_slab", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:pegmatite_smooth_slab" + }, + "result": { + "id": "mineralogy:pegmatite_smooth_brick_slab", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/pegmatite_polished_stairs_to_brick.json b/src/main/resources/data/mineralogy/recipe/pegmatite_polished_stairs_to_brick.json index ca6642709..453556db6 100644 --- a/src/main/resources/data/mineralogy/recipe/pegmatite_polished_stairs_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/pegmatite_polished_stairs_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:pegmatite_smooth_stairs" - } - }, - "result": { - "id": "mineralogy:pegmatite_smooth_brick_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:pegmatite_smooth_stairs" + }, + "result": { + "id": "mineralogy:pegmatite_smooth_brick_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/pegmatite_polished_walls_to_brick.json b/src/main/resources/data/mineralogy/recipe/pegmatite_polished_walls_to_brick.json index cbb79f8f6..c5418f3ab 100644 --- a/src/main/resources/data/mineralogy/recipe/pegmatite_polished_walls_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/pegmatite_polished_walls_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:pegmatite_smooth_wall" - } - }, - "result": { - "id": "mineralogy:pegmatite_smooth_brick_wall", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:pegmatite_smooth_wall" + }, + "result": { + "id": "mineralogy:pegmatite_smooth_brick_wall", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/pegmatite_raw_slab_polishing.json b/src/main/resources/data/mineralogy/recipe/pegmatite_raw_slab_polishing.json index 5344ecf1f..bd942bfb2 100644 --- a/src/main/resources/data/mineralogy/recipe/pegmatite_raw_slab_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/pegmatite_raw_slab_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:pegmatite_slab" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:pegmatite_smooth_slab", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:pegmatite_slab", + "#c:sands" + ], + "result": { + "id": "mineralogy:pegmatite_smooth_slab", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/pegmatite_raw_slab_recombination.json b/src/main/resources/data/mineralogy/recipe/pegmatite_raw_slab_recombination.json index 1898e0578..383f93f7b 100644 --- a/src/main/resources/data/mineralogy/recipe/pegmatite_raw_slab_recombination.json +++ b/src/main/resources/data/mineralogy/recipe/pegmatite_raw_slab_recombination.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:pegmatite_slab" - }, - { - "item": "mineralogy:pegmatite_slab" - } - ], - "result": { - "id": "mineralogy:pegmatite", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:pegmatite_slab", + "mineralogy:pegmatite_slab" + ], + "result": { + "id": "mineralogy:pegmatite", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/pegmatite_raw_slabs_to_brick.json b/src/main/resources/data/mineralogy/recipe/pegmatite_raw_slabs_to_brick.json index d51b40512..f680a2196 100644 --- a/src/main/resources/data/mineralogy/recipe/pegmatite_raw_slabs_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/pegmatite_raw_slabs_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:pegmatite_slab" - } - }, - "result": { - "id": "mineralogy:pegmatite_brick_slab", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:pegmatite_slab" + }, + "result": { + "id": "mineralogy:pegmatite_brick_slab", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/pegmatite_raw_stairs_polishing.json b/src/main/resources/data/mineralogy/recipe/pegmatite_raw_stairs_polishing.json index a464724fd..37f740019 100644 --- a/src/main/resources/data/mineralogy/recipe/pegmatite_raw_stairs_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/pegmatite_raw_stairs_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:pegmatite_stairs" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:pegmatite_smooth_stairs", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:pegmatite_stairs", + "#c:sands" + ], + "result": { + "id": "mineralogy:pegmatite_smooth_stairs", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/pegmatite_raw_stairs_to_brick.json b/src/main/resources/data/mineralogy/recipe/pegmatite_raw_stairs_to_brick.json index 9a370932f..e09bab9a3 100644 --- a/src/main/resources/data/mineralogy/recipe/pegmatite_raw_stairs_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/pegmatite_raw_stairs_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:pegmatite_stairs" - } - }, - "result": { - "id": "mineralogy:pegmatite_brick_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:pegmatite_stairs" + }, + "result": { + "id": "mineralogy:pegmatite_brick_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/pegmatite_raw_wall_polishing.json b/src/main/resources/data/mineralogy/recipe/pegmatite_raw_wall_polishing.json index ccb7be961..52a3457ad 100644 --- a/src/main/resources/data/mineralogy/recipe/pegmatite_raw_wall_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/pegmatite_raw_wall_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:pegmatite_wall" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:pegmatite_smooth_wall", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:pegmatite_wall", + "#c:sands" + ], + "result": { + "id": "mineralogy:pegmatite_smooth_wall", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/pegmatite_raw_walls_to_brick.json b/src/main/resources/data/mineralogy/recipe/pegmatite_raw_walls_to_brick.json index 982390998..1847e28fc 100644 --- a/src/main/resources/data/mineralogy/recipe/pegmatite_raw_walls_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/pegmatite_raw_walls_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:pegmatite_wall" - } - }, - "result": { - "id": "mineralogy:pegmatite_brick_wall", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:pegmatite_wall" + }, + "result": { + "id": "mineralogy:pegmatite_brick_wall", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/pegmatite_relief_axe.json b/src/main/resources/data/mineralogy/recipe/pegmatite_relief_axe.json index 6fd63fc2a..491faceb4 100644 --- a/src/main/resources/data/mineralogy/recipe/pegmatite_relief_axe.json +++ b/src/main/resources/data/mineralogy/recipe/pegmatite_relief_axe.json @@ -1,37 +1,19 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:pegmatite_relief_blank" - }, - { - "item": "mineralogy:pegmatite_relief_blank" - }, - { - "item": "mineralogy:pegmatite_relief_blank" - }, - { - "item": "mineralogy:pegmatite_relief_blank" - }, - { - "item": "mineralogy:pegmatite_relief_blank" - }, - { - "item": "mineralogy:pegmatite_relief_blank" - }, - { - "item": "mineralogy:pegmatite_relief_blank" - }, - { - "item": "mineralogy:pegmatite_relief_blank" - }, - { - "item": "minecraft:stone_axe" - } - ], - "result": { - "id": "mineralogy:pegmatite_relief_axe", - "count": 8 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:pegmatite_relief_blank", + "mineralogy:pegmatite_relief_blank", + "mineralogy:pegmatite_relief_blank", + "mineralogy:pegmatite_relief_blank", + "mineralogy:pegmatite_relief_blank", + "mineralogy:pegmatite_relief_blank", + "mineralogy:pegmatite_relief_blank", + "mineralogy:pegmatite_relief_blank", + "minecraft:stone_axe" + ], + "result": { + "id": "mineralogy:pegmatite_relief_axe", + "count": 8 + } } diff --git a/src/main/resources/data/mineralogy/recipe/pegmatite_relief_blank.json b/src/main/resources/data/mineralogy/recipe/pegmatite_relief_blank.json index 5f3af7bb9..afdf0ef37 100644 --- a/src/main/resources/data/mineralogy/recipe/pegmatite_relief_blank.json +++ b/src/main/resources/data/mineralogy/recipe/pegmatite_relief_blank.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx", - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:pegmatite_smooth" - } - }, - "result": { - "id": "mineralogy:pegmatite_relief_blank", - "count": 16 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx", + "xxx" + ], + "key": { + "x": "mineralogy:pegmatite_smooth" + }, + "result": { + "id": "mineralogy:pegmatite_relief_blank", + "count": 16 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/pegmatite_relief_cross.json b/src/main/resources/data/mineralogy/recipe/pegmatite_relief_cross.json index 8bac6ca44..03cf7ae62 100644 --- a/src/main/resources/data/mineralogy/recipe/pegmatite_relief_cross.json +++ b/src/main/resources/data/mineralogy/recipe/pegmatite_relief_cross.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x x", - " ", - "x x" - ], - "key": { - "x": { - "item": "mineralogy:pegmatite_relief_blank" - } - }, - "result": { - "id": "mineralogy:pegmatite_relief_cross", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x x", + " ", + "x x" + ], + "key": { + "x": "mineralogy:pegmatite_relief_blank" + }, + "result": { + "id": "mineralogy:pegmatite_relief_cross", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/pegmatite_relief_hammer.json b/src/main/resources/data/mineralogy/recipe/pegmatite_relief_hammer.json index bb698ecd1..31002186e 100644 --- a/src/main/resources/data/mineralogy/recipe/pegmatite_relief_hammer.json +++ b/src/main/resources/data/mineralogy/recipe/pegmatite_relief_hammer.json @@ -1,25 +1,19 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "zxz", - "zyz", - "zzz" - ], - "key": { - "x": { - "item": "mineralogy:pegmatite_smooth" - }, - "y": { - "item": "minecraft:stick" - }, - "z": { - "item": "mineralogy:pegmatite_relief_blank" - } - }, - "result": { - "id": "mineralogy:pegmatite_relief_hammer", - "count": 7 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "zxz", + "zyz", + "zzz" + ], + "key": { + "x": "mineralogy:pegmatite_smooth", + "y": "minecraft:stick", + "z": "mineralogy:pegmatite_relief_blank" + }, + "result": { + "id": "mineralogy:pegmatite_relief_hammer", + "count": 7 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/pegmatite_relief_hoe.json b/src/main/resources/data/mineralogy/recipe/pegmatite_relief_hoe.json index 17dd03a4b..9e3c589c5 100644 --- a/src/main/resources/data/mineralogy/recipe/pegmatite_relief_hoe.json +++ b/src/main/resources/data/mineralogy/recipe/pegmatite_relief_hoe.json @@ -1,37 +1,19 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:pegmatite_relief_blank" - }, - { - "item": "mineralogy:pegmatite_relief_blank" - }, - { - "item": "mineralogy:pegmatite_relief_blank" - }, - { - "item": "mineralogy:pegmatite_relief_blank" - }, - { - "item": "mineralogy:pegmatite_relief_blank" - }, - { - "item": "mineralogy:pegmatite_relief_blank" - }, - { - "item": "mineralogy:pegmatite_relief_blank" - }, - { - "item": "mineralogy:pegmatite_relief_blank" - }, - { - "item": "minecraft:stone_hoe" - } - ], - "result": { - "id": "mineralogy:pegmatite_relief_hoe", - "count": 8 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:pegmatite_relief_blank", + "mineralogy:pegmatite_relief_blank", + "mineralogy:pegmatite_relief_blank", + "mineralogy:pegmatite_relief_blank", + "mineralogy:pegmatite_relief_blank", + "mineralogy:pegmatite_relief_blank", + "mineralogy:pegmatite_relief_blank", + "mineralogy:pegmatite_relief_blank", + "minecraft:stone_hoe" + ], + "result": { + "id": "mineralogy:pegmatite_relief_hoe", + "count": 8 + } } diff --git a/src/main/resources/data/mineralogy/recipe/pegmatite_relief_horizontal.json b/src/main/resources/data/mineralogy/recipe/pegmatite_relief_horizontal.json index 31b71d33a..cfdcc5703 100644 --- a/src/main/resources/data/mineralogy/recipe/pegmatite_relief_horizontal.json +++ b/src/main/resources/data/mineralogy/recipe/pegmatite_relief_horizontal.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:pegmatite_relief_blank" - } - }, - "result": { - "id": "mineralogy:pegmatite_relief_horizontal", - "count": 3 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:pegmatite_relief_blank" + }, + "result": { + "id": "mineralogy:pegmatite_relief_horizontal", + "count": 3 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/pegmatite_relief_i.json b/src/main/resources/data/mineralogy/recipe/pegmatite_relief_i.json index 1b7882db1..157fcdf8e 100644 --- a/src/main/resources/data/mineralogy/recipe/pegmatite_relief_i.json +++ b/src/main/resources/data/mineralogy/recipe/pegmatite_relief_i.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - " x ", - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:pegmatite_relief_blank" - } - }, - "result": { - "id": "mineralogy:pegmatite_relief_i", - "count": 7 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + " x ", + "xxx" + ], + "key": { + "x": "mineralogy:pegmatite_relief_blank" + }, + "result": { + "id": "mineralogy:pegmatite_relief_i", + "count": 7 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/pegmatite_relief_left.json b/src/main/resources/data/mineralogy/recipe/pegmatite_relief_left.json index 30d9feb08..7296a4c20 100644 --- a/src/main/resources/data/mineralogy/recipe/pegmatite_relief_left.json +++ b/src/main/resources/data/mineralogy/recipe/pegmatite_relief_left.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - " x ", - " x" - ], - "key": { - "x": { - "item": "mineralogy:pegmatite_relief_blank" - } - }, - "result": { - "id": "mineralogy:pegmatite_relief_left", - "count": 3 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + " x ", + " x" + ], + "key": { + "x": "mineralogy:pegmatite_relief_blank" + }, + "result": { + "id": "mineralogy:pegmatite_relief_left", + "count": 3 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/pegmatite_relief_pickaxe.json b/src/main/resources/data/mineralogy/recipe/pegmatite_relief_pickaxe.json index 54760bbc8..b58cc3f3e 100644 --- a/src/main/resources/data/mineralogy/recipe/pegmatite_relief_pickaxe.json +++ b/src/main/resources/data/mineralogy/recipe/pegmatite_relief_pickaxe.json @@ -1,37 +1,19 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:pegmatite_relief_blank" - }, - { - "item": "mineralogy:pegmatite_relief_blank" - }, - { - "item": "mineralogy:pegmatite_relief_blank" - }, - { - "item": "mineralogy:pegmatite_relief_blank" - }, - { - "item": "mineralogy:pegmatite_relief_blank" - }, - { - "item": "mineralogy:pegmatite_relief_blank" - }, - { - "item": "mineralogy:pegmatite_relief_blank" - }, - { - "item": "mineralogy:pegmatite_relief_blank" - }, - { - "item": "minecraft:stone_pickaxe" - } - ], - "result": { - "id": "mineralogy:pegmatite_relief_pickaxe", - "count": 8 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:pegmatite_relief_blank", + "mineralogy:pegmatite_relief_blank", + "mineralogy:pegmatite_relief_blank", + "mineralogy:pegmatite_relief_blank", + "mineralogy:pegmatite_relief_blank", + "mineralogy:pegmatite_relief_blank", + "mineralogy:pegmatite_relief_blank", + "mineralogy:pegmatite_relief_blank", + "minecraft:stone_pickaxe" + ], + "result": { + "id": "mineralogy:pegmatite_relief_pickaxe", + "count": 8 + } } diff --git a/src/main/resources/data/mineralogy/recipe/pegmatite_relief_plus.json b/src/main/resources/data/mineralogy/recipe/pegmatite_relief_plus.json index 078f22849..20b1bb11e 100644 --- a/src/main/resources/data/mineralogy/recipe/pegmatite_relief_plus.json +++ b/src/main/resources/data/mineralogy/recipe/pegmatite_relief_plus.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - " x ", - "xxx", - " x " - ], - "key": { - "x": { - "item": "mineralogy:pegmatite_relief_blank" - } - }, - "result": { - "id": "mineralogy:pegmatite_relief_plus", - "count": 5 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + " x ", + "xxx", + " x " + ], + "key": { + "x": "mineralogy:pegmatite_relief_blank" + }, + "result": { + "id": "mineralogy:pegmatite_relief_plus", + "count": 5 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/pegmatite_relief_right.json b/src/main/resources/data/mineralogy/recipe/pegmatite_relief_right.json index ba5ecfd5d..ac64a3870 100644 --- a/src/main/resources/data/mineralogy/recipe/pegmatite_relief_right.json +++ b/src/main/resources/data/mineralogy/recipe/pegmatite_relief_right.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:pegmatite_relief_left" - }, - { - "item": "mineralogy:pegmatite_relief_left" - } - ], - "result": { - "id": "mineralogy:pegmatite_relief_right", - "count": 2 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:pegmatite_relief_left", + "mineralogy:pegmatite_relief_left" + ], + "result": { + "id": "mineralogy:pegmatite_relief_right", + "count": 2 + } } diff --git a/src/main/resources/data/mineralogy/recipe/pegmatite_relief_sword.json b/src/main/resources/data/mineralogy/recipe/pegmatite_relief_sword.json index f0431ce61..f8635d0d2 100644 --- a/src/main/resources/data/mineralogy/recipe/pegmatite_relief_sword.json +++ b/src/main/resources/data/mineralogy/recipe/pegmatite_relief_sword.json @@ -1,37 +1,19 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:pegmatite_relief_blank" - }, - { - "item": "mineralogy:pegmatite_relief_blank" - }, - { - "item": "mineralogy:pegmatite_relief_blank" - }, - { - "item": "mineralogy:pegmatite_relief_blank" - }, - { - "item": "mineralogy:pegmatite_relief_blank" - }, - { - "item": "mineralogy:pegmatite_relief_blank" - }, - { - "item": "mineralogy:pegmatite_relief_blank" - }, - { - "item": "mineralogy:pegmatite_relief_blank" - }, - { - "item": "minecraft:stone_sword" - } - ], - "result": { - "id": "mineralogy:pegmatite_relief_sword", - "count": 8 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:pegmatite_relief_blank", + "mineralogy:pegmatite_relief_blank", + "mineralogy:pegmatite_relief_blank", + "mineralogy:pegmatite_relief_blank", + "mineralogy:pegmatite_relief_blank", + "mineralogy:pegmatite_relief_blank", + "mineralogy:pegmatite_relief_blank", + "mineralogy:pegmatite_relief_blank", + "minecraft:stone_sword" + ], + "result": { + "id": "mineralogy:pegmatite_relief_sword", + "count": 8 + } } diff --git a/src/main/resources/data/mineralogy/recipe/pegmatite_relief_vertical.json b/src/main/resources/data/mineralogy/recipe/pegmatite_relief_vertical.json index 116829369..d4f9f6fac 100644 --- a/src/main/resources/data/mineralogy/recipe/pegmatite_relief_vertical.json +++ b/src/main/resources/data/mineralogy/recipe/pegmatite_relief_vertical.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x", - "x", - "x" - ], - "key": { - "x": { - "item": "mineralogy:pegmatite_relief_blank" - } - }, - "result": { - "id": "mineralogy:pegmatite_relief_vertical", - "count": 3 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x", + "x", + "x" + ], + "key": { + "x": "mineralogy:pegmatite_relief_blank" + }, + "result": { + "id": "mineralogy:pegmatite_relief_vertical", + "count": 3 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/pegmatite_slab.json b/src/main/resources/data/mineralogy/recipe/pegmatite_slab.json index 307f5dccd..94cdcf8c6 100644 --- a/src/main/resources/data/mineralogy/recipe/pegmatite_slab.json +++ b/src/main/resources/data/mineralogy/recipe/pegmatite_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:pegmatite" - } - }, - "result": { - "id": "mineralogy:pegmatite_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:pegmatite" + }, + "result": { + "id": "mineralogy:pegmatite_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/pegmatite_smooth.json b/src/main/resources/data/mineralogy/recipe/pegmatite_smooth.json index 061da8da1..2ba8715d9 100644 --- a/src/main/resources/data/mineralogy/recipe/pegmatite_smooth.json +++ b/src/main/resources/data/mineralogy/recipe/pegmatite_smooth.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "tag": "mineralogy:stones/pegmatite" - }, - { - "item": "minecraft:sand" - } - ], - "result": { - "id": "mineralogy:pegmatite_smooth", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "#mineralogy:stones/pegmatite", + "minecraft:sand" + ], + "result": { + "id": "mineralogy:pegmatite_smooth", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/pegmatite_smooth_brick.json b/src/main/resources/data/mineralogy/recipe/pegmatite_smooth_brick.json index 560830c22..3c87e337b 100644 --- a/src/main/resources/data/mineralogy/recipe/pegmatite_smooth_brick.json +++ b/src/main/resources/data/mineralogy/recipe/pegmatite_smooth_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/pegmatite/smooth" - } - }, - "result": { - "id": "mineralogy:pegmatite_smooth_brick", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "#mineralogy:stones/pegmatite/smooth" + }, + "result": { + "id": "mineralogy:pegmatite_smooth_brick", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/pegmatite_smooth_brick_furnace.json b/src/main/resources/data/mineralogy/recipe/pegmatite_smooth_brick_furnace.json index 57f065f32..cd99c40ee 100644 --- a/src/main/resources/data/mineralogy/recipe/pegmatite_smooth_brick_furnace.json +++ b/src/main/resources/data/mineralogy/recipe/pegmatite_smooth_brick_furnace.json @@ -1,22 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "xxx", - "xyx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:slabs/pegmatite/smooth_brick" - }, - "y": { - "item": "minecraft:furnace" - } - }, - "result": { - "id": "mineralogy:pegmatite_smooth_brick_furnace", - "count": 1 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "xxx", + "xyx", + "xxx" + ], + "key": { + "x": "#mineralogy:slabs/pegmatite/smooth_brick", + "y": "minecraft:furnace" + }, + "result": { + "id": "mineralogy:pegmatite_smooth_brick_furnace", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/pegmatite_smooth_brick_slab.json b/src/main/resources/data/mineralogy/recipe/pegmatite_smooth_brick_slab.json index 30633f633..4463ee510 100644 --- a/src/main/resources/data/mineralogy/recipe/pegmatite_smooth_brick_slab.json +++ b/src/main/resources/data/mineralogy/recipe/pegmatite_smooth_brick_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:pegmatite_smooth_brick" - } - }, - "result": { - "id": "mineralogy:pegmatite_smooth_brick_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:pegmatite_smooth_brick" + }, + "result": { + "id": "mineralogy:pegmatite_smooth_brick_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/pegmatite_smooth_brick_stairs.json b/src/main/resources/data/mineralogy/recipe/pegmatite_smooth_brick_stairs.json index 563cfce9f..de9f42a00 100644 --- a/src/main/resources/data/mineralogy/recipe/pegmatite_smooth_brick_stairs.json +++ b/src/main/resources/data/mineralogy/recipe/pegmatite_smooth_brick_stairs.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - "xx ", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/pegmatite/smooth_brick" - } - }, - "result": { - "id": "mineralogy:pegmatite_smooth_brick_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + "xx ", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/pegmatite/smooth_brick" + }, + "result": { + "id": "mineralogy:pegmatite_smooth_brick_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/pegmatite_smooth_brick_wall.json b/src/main/resources/data/mineralogy/recipe/pegmatite_smooth_brick_wall.json index 8bf1c6a6f..447e8c104 100644 --- a/src/main/resources/data/mineralogy/recipe/pegmatite_smooth_brick_wall.json +++ b/src/main/resources/data/mineralogy/recipe/pegmatite_smooth_brick_wall.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/pegmatite/smooth_brick" - } - }, - "result": { - "id": "mineralogy:pegmatite_smooth_brick_wall", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/pegmatite/smooth_brick" + }, + "result": { + "id": "mineralogy:pegmatite_smooth_brick_wall", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/pegmatite_smooth_furnace.json b/src/main/resources/data/mineralogy/recipe/pegmatite_smooth_furnace.json index 48d5abec0..f1f20bdba 100644 --- a/src/main/resources/data/mineralogy/recipe/pegmatite_smooth_furnace.json +++ b/src/main/resources/data/mineralogy/recipe/pegmatite_smooth_furnace.json @@ -1,22 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "xxx", - "xyx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:slabs/pegmatite/smooth" - }, - "y": { - "item": "minecraft:furnace" - } - }, - "result": { - "id": "mineralogy:pegmatite_smooth_furnace", - "count": 1 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "xxx", + "xyx", + "xxx" + ], + "key": { + "x": "#mineralogy:slabs/pegmatite/smooth", + "y": "minecraft:furnace" + }, + "result": { + "id": "mineralogy:pegmatite_smooth_furnace", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/pegmatite_smooth_slab.json b/src/main/resources/data/mineralogy/recipe/pegmatite_smooth_slab.json index d1080fecb..0fa5b9d31 100644 --- a/src/main/resources/data/mineralogy/recipe/pegmatite_smooth_slab.json +++ b/src/main/resources/data/mineralogy/recipe/pegmatite_smooth_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:pegmatite_smooth" - } - }, - "result": { - "id": "mineralogy:pegmatite_smooth_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:pegmatite_smooth" + }, + "result": { + "id": "mineralogy:pegmatite_smooth_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/pegmatite_smooth_stairs.json b/src/main/resources/data/mineralogy/recipe/pegmatite_smooth_stairs.json index 528457b57..35b35e788 100644 --- a/src/main/resources/data/mineralogy/recipe/pegmatite_smooth_stairs.json +++ b/src/main/resources/data/mineralogy/recipe/pegmatite_smooth_stairs.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - "xx ", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/pegmatite/smooth" - } - }, - "result": { - "id": "mineralogy:pegmatite_smooth_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + "xx ", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/pegmatite/smooth" + }, + "result": { + "id": "mineralogy:pegmatite_smooth_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/pegmatite_smooth_wall.json b/src/main/resources/data/mineralogy/recipe/pegmatite_smooth_wall.json index 54c75b91d..d77dc681d 100644 --- a/src/main/resources/data/mineralogy/recipe/pegmatite_smooth_wall.json +++ b/src/main/resources/data/mineralogy/recipe/pegmatite_smooth_wall.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/pegmatite/smooth" - } - }, - "result": { - "id": "mineralogy:pegmatite_smooth_wall", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/pegmatite/smooth" + }, + "result": { + "id": "mineralogy:pegmatite_smooth_wall", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/pegmatite_stairs.json b/src/main/resources/data/mineralogy/recipe/pegmatite_stairs.json index 1a8d6d7a8..70feb38e6 100644 --- a/src/main/resources/data/mineralogy/recipe/pegmatite_stairs.json +++ b/src/main/resources/data/mineralogy/recipe/pegmatite_stairs.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - "xx ", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/pegmatite" - } - }, - "result": { - "id": "mineralogy:pegmatite_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + "xx ", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/pegmatite" + }, + "result": { + "id": "mineralogy:pegmatite_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/pegmatite_to_stone.json b/src/main/resources/data/mineralogy/recipe/pegmatite_to_stone.json index 6e9caad0f..b2fb253f8 100644 --- a/src/main/resources/data/mineralogy/recipe/pegmatite_to_stone.json +++ b/src/main/resources/data/mineralogy/recipe/pegmatite_to_stone.json @@ -1,12 +1,10 @@ { - "type": "minecraft:smelting", - "category": "blocks", - "ingredient": { - "item": "mineralogy:pegmatite" - }, - "result": { - "id": "minecraft:stone" - }, - "experience": 0.1, - "cookingtime": 200 + "type": "minecraft:smelting", + "category": "blocks", + "ingredient": "mineralogy:pegmatite", + "result": { + "id": "minecraft:stone" + }, + "experience": 0.1, + "cookingtime": 200 } diff --git a/src/main/resources/data/mineralogy/recipe/pegmatite_wall.json b/src/main/resources/data/mineralogy/recipe/pegmatite_wall.json index 6d564c669..da6c9795d 100644 --- a/src/main/resources/data/mineralogy/recipe/pegmatite_wall.json +++ b/src/main/resources/data/mineralogy/recipe/pegmatite_wall.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/pegmatite" - } - }, - "result": { - "id": "mineralogy:pegmatite_wall", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/pegmatite" + }, + "result": { + "id": "mineralogy:pegmatite_wall", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/peridotite_brick.json b/src/main/resources/data/mineralogy/recipe/peridotite_brick.json index a4673dab4..db19dba23 100644 --- a/src/main/resources/data/mineralogy/recipe/peridotite_brick.json +++ b/src/main/resources/data/mineralogy/recipe/peridotite_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/peridotite" - } - }, - "result": { - "id": "mineralogy:peridotite_brick", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "#mineralogy:stones/peridotite" + }, + "result": { + "id": "mineralogy:peridotite_brick", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/peridotite_brick_block_polishing.json b/src/main/resources/data/mineralogy/recipe/peridotite_brick_block_polishing.json index ae9d87b89..36c1a8a03 100644 --- a/src/main/resources/data/mineralogy/recipe/peridotite_brick_block_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/peridotite_brick_block_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:peridotite_brick" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:peridotite_smooth_brick", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:peridotite_brick", + "#c:sands" + ], + "result": { + "id": "mineralogy:peridotite_smooth_brick", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/peridotite_brick_furnace.json b/src/main/resources/data/mineralogy/recipe/peridotite_brick_furnace.json index 25b507418..71487b058 100644 --- a/src/main/resources/data/mineralogy/recipe/peridotite_brick_furnace.json +++ b/src/main/resources/data/mineralogy/recipe/peridotite_brick_furnace.json @@ -1,22 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "xxx", - "xyx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:slabs/peridotite/brick" - }, - "y": { - "item": "minecraft:furnace" - } - }, - "result": { - "id": "mineralogy:peridotite_brick_furnace", - "count": 1 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "xxx", + "xyx", + "xxx" + ], + "key": { + "x": "#mineralogy:slabs/peridotite/brick", + "y": "minecraft:furnace" + }, + "result": { + "id": "mineralogy:peridotite_brick_furnace", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/peridotite_brick_slab.json b/src/main/resources/data/mineralogy/recipe/peridotite_brick_slab.json index a6a8ffddb..b56bfbdc1 100644 --- a/src/main/resources/data/mineralogy/recipe/peridotite_brick_slab.json +++ b/src/main/resources/data/mineralogy/recipe/peridotite_brick_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:peridotite_brick" - } - }, - "result": { - "id": "mineralogy:peridotite_brick_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:peridotite_brick" + }, + "result": { + "id": "mineralogy:peridotite_brick_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/peridotite_brick_slab_polishing.json b/src/main/resources/data/mineralogy/recipe/peridotite_brick_slab_polishing.json index b13364b60..61473b591 100644 --- a/src/main/resources/data/mineralogy/recipe/peridotite_brick_slab_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/peridotite_brick_slab_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:peridotite_brick_slab" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:peridotite_smooth_brick_slab", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:peridotite_brick_slab", + "#c:sands" + ], + "result": { + "id": "mineralogy:peridotite_smooth_brick_slab", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/peridotite_brick_slab_recombination.json b/src/main/resources/data/mineralogy/recipe/peridotite_brick_slab_recombination.json index f381d3afe..4fbddab63 100644 --- a/src/main/resources/data/mineralogy/recipe/peridotite_brick_slab_recombination.json +++ b/src/main/resources/data/mineralogy/recipe/peridotite_brick_slab_recombination.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:peridotite_brick_slab" - }, - { - "item": "mineralogy:peridotite_brick_slab" - } - ], - "result": { - "id": "mineralogy:peridotite_brick", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:peridotite_brick_slab", + "mineralogy:peridotite_brick_slab" + ], + "result": { + "id": "mineralogy:peridotite_brick", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/peridotite_brick_stairs.json b/src/main/resources/data/mineralogy/recipe/peridotite_brick_stairs.json index c74fc538a..c57a8ba70 100644 --- a/src/main/resources/data/mineralogy/recipe/peridotite_brick_stairs.json +++ b/src/main/resources/data/mineralogy/recipe/peridotite_brick_stairs.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - "xx ", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/peridotite/brick" - } - }, - "result": { - "id": "mineralogy:peridotite_brick_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + "xx ", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/peridotite/brick" + }, + "result": { + "id": "mineralogy:peridotite_brick_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/peridotite_brick_stairs_polishing.json b/src/main/resources/data/mineralogy/recipe/peridotite_brick_stairs_polishing.json index b34ad7133..f08f42702 100644 --- a/src/main/resources/data/mineralogy/recipe/peridotite_brick_stairs_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/peridotite_brick_stairs_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:peridotite_brick_stairs" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:peridotite_smooth_brick_stairs", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:peridotite_brick_stairs", + "#c:sands" + ], + "result": { + "id": "mineralogy:peridotite_smooth_brick_stairs", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/peridotite_brick_wall.json b/src/main/resources/data/mineralogy/recipe/peridotite_brick_wall.json index 01349de08..ffff91f2b 100644 --- a/src/main/resources/data/mineralogy/recipe/peridotite_brick_wall.json +++ b/src/main/resources/data/mineralogy/recipe/peridotite_brick_wall.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/peridotite/brick" - } - }, - "result": { - "id": "mineralogy:peridotite_brick_wall", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/peridotite/brick" + }, + "result": { + "id": "mineralogy:peridotite_brick_wall", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/peridotite_brick_wall_polishing.json b/src/main/resources/data/mineralogy/recipe/peridotite_brick_wall_polishing.json index ce1c160c2..8a566417b 100644 --- a/src/main/resources/data/mineralogy/recipe/peridotite_brick_wall_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/peridotite_brick_wall_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:peridotite_brick_wall" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:peridotite_smooth_brick_wall", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:peridotite_brick_wall", + "#c:sands" + ], + "result": { + "id": "mineralogy:peridotite_smooth_brick_wall", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/peridotite_cobblestone.json b/src/main/resources/data/mineralogy/recipe/peridotite_cobblestone.json index 59cceb0b4..ad96c5448 100644 --- a/src/main/resources/data/mineralogy/recipe/peridotite_cobblestone.json +++ b/src/main/resources/data/mineralogy/recipe/peridotite_cobblestone.json @@ -1,22 +1,14 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "tag": "mineralogy:stones/peridotite" - }, - { - "tag": "mineralogy:stones/peridotite" - }, - { - "item": "minecraft:gravel" - }, - { - "item": "minecraft:gravel" - } - ], - "result": { - "id": "minecraft:cobblestone", - "count": 4 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "#mineralogy:stones/peridotite", + "#mineralogy:stones/peridotite", + "minecraft:gravel", + "minecraft:gravel" + ], + "result": { + "id": "minecraft:cobblestone", + "count": 4 + } } diff --git a/src/main/resources/data/mineralogy/recipe/peridotite_furnace.json b/src/main/resources/data/mineralogy/recipe/peridotite_furnace.json index e9b4ddc47..6a05c8477 100644 --- a/src/main/resources/data/mineralogy/recipe/peridotite_furnace.json +++ b/src/main/resources/data/mineralogy/recipe/peridotite_furnace.json @@ -1,22 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "xxx", - "xyx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:slabs/peridotite" - }, - "y": { - "item": "minecraft:furnace" - } - }, - "result": { - "id": "mineralogy:peridotite_furnace", - "count": 1 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "xxx", + "xyx", + "xxx" + ], + "key": { + "x": "#mineralogy:slabs/peridotite", + "y": "minecraft:furnace" + }, + "result": { + "id": "mineralogy:peridotite_furnace", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/peridotite_polished_brick_slab_recombination.json b/src/main/resources/data/mineralogy/recipe/peridotite_polished_brick_slab_recombination.json index 34f9d70da..0e0dd3f14 100644 --- a/src/main/resources/data/mineralogy/recipe/peridotite_polished_brick_slab_recombination.json +++ b/src/main/resources/data/mineralogy/recipe/peridotite_polished_brick_slab_recombination.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:peridotite_smooth_brick_slab" - }, - { - "item": "mineralogy:peridotite_smooth_brick_slab" - } - ], - "result": { - "id": "mineralogy:peridotite_smooth_brick", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:peridotite_smooth_brick_slab", + "mineralogy:peridotite_smooth_brick_slab" + ], + "result": { + "id": "mineralogy:peridotite_smooth_brick", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/peridotite_polished_slab_recombination.json b/src/main/resources/data/mineralogy/recipe/peridotite_polished_slab_recombination.json index 9774026c6..7a930e3d4 100644 --- a/src/main/resources/data/mineralogy/recipe/peridotite_polished_slab_recombination.json +++ b/src/main/resources/data/mineralogy/recipe/peridotite_polished_slab_recombination.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:peridotite_smooth_slab" - }, - { - "item": "mineralogy:peridotite_smooth_slab" - } - ], - "result": { - "id": "mineralogy:peridotite_smooth", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:peridotite_smooth_slab", + "mineralogy:peridotite_smooth_slab" + ], + "result": { + "id": "mineralogy:peridotite_smooth", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/peridotite_polished_slabs_to_brick.json b/src/main/resources/data/mineralogy/recipe/peridotite_polished_slabs_to_brick.json index 713f0922f..f0b9fd0a3 100644 --- a/src/main/resources/data/mineralogy/recipe/peridotite_polished_slabs_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/peridotite_polished_slabs_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:peridotite_smooth_slab" - } - }, - "result": { - "id": "mineralogy:peridotite_smooth_brick_slab", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:peridotite_smooth_slab" + }, + "result": { + "id": "mineralogy:peridotite_smooth_brick_slab", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/peridotite_polished_stairs_to_brick.json b/src/main/resources/data/mineralogy/recipe/peridotite_polished_stairs_to_brick.json index 964f151d3..0bf2aea25 100644 --- a/src/main/resources/data/mineralogy/recipe/peridotite_polished_stairs_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/peridotite_polished_stairs_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:peridotite_smooth_stairs" - } - }, - "result": { - "id": "mineralogy:peridotite_smooth_brick_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:peridotite_smooth_stairs" + }, + "result": { + "id": "mineralogy:peridotite_smooth_brick_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/peridotite_polished_walls_to_brick.json b/src/main/resources/data/mineralogy/recipe/peridotite_polished_walls_to_brick.json index d338fd7fd..387e4a4bf 100644 --- a/src/main/resources/data/mineralogy/recipe/peridotite_polished_walls_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/peridotite_polished_walls_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:peridotite_smooth_wall" - } - }, - "result": { - "id": "mineralogy:peridotite_smooth_brick_wall", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:peridotite_smooth_wall" + }, + "result": { + "id": "mineralogy:peridotite_smooth_brick_wall", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/peridotite_raw_slab_polishing.json b/src/main/resources/data/mineralogy/recipe/peridotite_raw_slab_polishing.json index 280977ea6..d246f88c1 100644 --- a/src/main/resources/data/mineralogy/recipe/peridotite_raw_slab_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/peridotite_raw_slab_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:peridotite_slab" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:peridotite_smooth_slab", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:peridotite_slab", + "#c:sands" + ], + "result": { + "id": "mineralogy:peridotite_smooth_slab", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/peridotite_raw_slab_recombination.json b/src/main/resources/data/mineralogy/recipe/peridotite_raw_slab_recombination.json index 5e7e0d657..a79a71b1f 100644 --- a/src/main/resources/data/mineralogy/recipe/peridotite_raw_slab_recombination.json +++ b/src/main/resources/data/mineralogy/recipe/peridotite_raw_slab_recombination.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:peridotite_slab" - }, - { - "item": "mineralogy:peridotite_slab" - } - ], - "result": { - "id": "mineralogy:peridotite", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:peridotite_slab", + "mineralogy:peridotite_slab" + ], + "result": { + "id": "mineralogy:peridotite", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/peridotite_raw_slabs_to_brick.json b/src/main/resources/data/mineralogy/recipe/peridotite_raw_slabs_to_brick.json index ef6b16cd9..b1dbfbb6b 100644 --- a/src/main/resources/data/mineralogy/recipe/peridotite_raw_slabs_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/peridotite_raw_slabs_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:peridotite_slab" - } - }, - "result": { - "id": "mineralogy:peridotite_brick_slab", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:peridotite_slab" + }, + "result": { + "id": "mineralogy:peridotite_brick_slab", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/peridotite_raw_stairs_polishing.json b/src/main/resources/data/mineralogy/recipe/peridotite_raw_stairs_polishing.json index 9fd1e0a7c..3f768dc21 100644 --- a/src/main/resources/data/mineralogy/recipe/peridotite_raw_stairs_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/peridotite_raw_stairs_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:peridotite_stairs" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:peridotite_smooth_stairs", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:peridotite_stairs", + "#c:sands" + ], + "result": { + "id": "mineralogy:peridotite_smooth_stairs", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/peridotite_raw_stairs_to_brick.json b/src/main/resources/data/mineralogy/recipe/peridotite_raw_stairs_to_brick.json index d3e63974f..2b0df0c15 100644 --- a/src/main/resources/data/mineralogy/recipe/peridotite_raw_stairs_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/peridotite_raw_stairs_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:peridotite_stairs" - } - }, - "result": { - "id": "mineralogy:peridotite_brick_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:peridotite_stairs" + }, + "result": { + "id": "mineralogy:peridotite_brick_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/peridotite_raw_wall_polishing.json b/src/main/resources/data/mineralogy/recipe/peridotite_raw_wall_polishing.json index 50078e47f..c46971c7e 100644 --- a/src/main/resources/data/mineralogy/recipe/peridotite_raw_wall_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/peridotite_raw_wall_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:peridotite_wall" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:peridotite_smooth_wall", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:peridotite_wall", + "#c:sands" + ], + "result": { + "id": "mineralogy:peridotite_smooth_wall", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/peridotite_raw_walls_to_brick.json b/src/main/resources/data/mineralogy/recipe/peridotite_raw_walls_to_brick.json index 1b99edfa2..124b72976 100644 --- a/src/main/resources/data/mineralogy/recipe/peridotite_raw_walls_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/peridotite_raw_walls_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:peridotite_wall" - } - }, - "result": { - "id": "mineralogy:peridotite_brick_wall", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:peridotite_wall" + }, + "result": { + "id": "mineralogy:peridotite_brick_wall", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/peridotite_relief_axe.json b/src/main/resources/data/mineralogy/recipe/peridotite_relief_axe.json index c66e633d7..066e3a24b 100644 --- a/src/main/resources/data/mineralogy/recipe/peridotite_relief_axe.json +++ b/src/main/resources/data/mineralogy/recipe/peridotite_relief_axe.json @@ -1,37 +1,19 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:peridotite_relief_blank" - }, - { - "item": "mineralogy:peridotite_relief_blank" - }, - { - "item": "mineralogy:peridotite_relief_blank" - }, - { - "item": "mineralogy:peridotite_relief_blank" - }, - { - "item": "mineralogy:peridotite_relief_blank" - }, - { - "item": "mineralogy:peridotite_relief_blank" - }, - { - "item": "mineralogy:peridotite_relief_blank" - }, - { - "item": "mineralogy:peridotite_relief_blank" - }, - { - "item": "minecraft:stone_axe" - } - ], - "result": { - "id": "mineralogy:peridotite_relief_axe", - "count": 8 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:peridotite_relief_blank", + "mineralogy:peridotite_relief_blank", + "mineralogy:peridotite_relief_blank", + "mineralogy:peridotite_relief_blank", + "mineralogy:peridotite_relief_blank", + "mineralogy:peridotite_relief_blank", + "mineralogy:peridotite_relief_blank", + "mineralogy:peridotite_relief_blank", + "minecraft:stone_axe" + ], + "result": { + "id": "mineralogy:peridotite_relief_axe", + "count": 8 + } } diff --git a/src/main/resources/data/mineralogy/recipe/peridotite_relief_blank.json b/src/main/resources/data/mineralogy/recipe/peridotite_relief_blank.json index 973b1bc57..be9fccb13 100644 --- a/src/main/resources/data/mineralogy/recipe/peridotite_relief_blank.json +++ b/src/main/resources/data/mineralogy/recipe/peridotite_relief_blank.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx", - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:peridotite_smooth" - } - }, - "result": { - "id": "mineralogy:peridotite_relief_blank", - "count": 16 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx", + "xxx" + ], + "key": { + "x": "mineralogy:peridotite_smooth" + }, + "result": { + "id": "mineralogy:peridotite_relief_blank", + "count": 16 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/peridotite_relief_cross.json b/src/main/resources/data/mineralogy/recipe/peridotite_relief_cross.json index 61a393426..74c5ce237 100644 --- a/src/main/resources/data/mineralogy/recipe/peridotite_relief_cross.json +++ b/src/main/resources/data/mineralogy/recipe/peridotite_relief_cross.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x x", - " ", - "x x" - ], - "key": { - "x": { - "item": "mineralogy:peridotite_relief_blank" - } - }, - "result": { - "id": "mineralogy:peridotite_relief_cross", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x x", + " ", + "x x" + ], + "key": { + "x": "mineralogy:peridotite_relief_blank" + }, + "result": { + "id": "mineralogy:peridotite_relief_cross", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/peridotite_relief_hammer.json b/src/main/resources/data/mineralogy/recipe/peridotite_relief_hammer.json index 04e06f1b2..7e12ab5bc 100644 --- a/src/main/resources/data/mineralogy/recipe/peridotite_relief_hammer.json +++ b/src/main/resources/data/mineralogy/recipe/peridotite_relief_hammer.json @@ -1,25 +1,19 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "zxz", - "zyz", - "zzz" - ], - "key": { - "x": { - "item": "mineralogy:peridotite_smooth" - }, - "y": { - "item": "minecraft:stick" - }, - "z": { - "item": "mineralogy:peridotite_relief_blank" - } - }, - "result": { - "id": "mineralogy:peridotite_relief_hammer", - "count": 7 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "zxz", + "zyz", + "zzz" + ], + "key": { + "x": "mineralogy:peridotite_smooth", + "y": "minecraft:stick", + "z": "mineralogy:peridotite_relief_blank" + }, + "result": { + "id": "mineralogy:peridotite_relief_hammer", + "count": 7 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/peridotite_relief_hoe.json b/src/main/resources/data/mineralogy/recipe/peridotite_relief_hoe.json index 47c465bb4..032f819b9 100644 --- a/src/main/resources/data/mineralogy/recipe/peridotite_relief_hoe.json +++ b/src/main/resources/data/mineralogy/recipe/peridotite_relief_hoe.json @@ -1,37 +1,19 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:peridotite_relief_blank" - }, - { - "item": "mineralogy:peridotite_relief_blank" - }, - { - "item": "mineralogy:peridotite_relief_blank" - }, - { - "item": "mineralogy:peridotite_relief_blank" - }, - { - "item": "mineralogy:peridotite_relief_blank" - }, - { - "item": "mineralogy:peridotite_relief_blank" - }, - { - "item": "mineralogy:peridotite_relief_blank" - }, - { - "item": "mineralogy:peridotite_relief_blank" - }, - { - "item": "minecraft:stone_hoe" - } - ], - "result": { - "id": "mineralogy:peridotite_relief_hoe", - "count": 8 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:peridotite_relief_blank", + "mineralogy:peridotite_relief_blank", + "mineralogy:peridotite_relief_blank", + "mineralogy:peridotite_relief_blank", + "mineralogy:peridotite_relief_blank", + "mineralogy:peridotite_relief_blank", + "mineralogy:peridotite_relief_blank", + "mineralogy:peridotite_relief_blank", + "minecraft:stone_hoe" + ], + "result": { + "id": "mineralogy:peridotite_relief_hoe", + "count": 8 + } } diff --git a/src/main/resources/data/mineralogy/recipe/peridotite_relief_horizontal.json b/src/main/resources/data/mineralogy/recipe/peridotite_relief_horizontal.json index 689f5f566..5459c7e62 100644 --- a/src/main/resources/data/mineralogy/recipe/peridotite_relief_horizontal.json +++ b/src/main/resources/data/mineralogy/recipe/peridotite_relief_horizontal.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:peridotite_relief_blank" - } - }, - "result": { - "id": "mineralogy:peridotite_relief_horizontal", - "count": 3 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:peridotite_relief_blank" + }, + "result": { + "id": "mineralogy:peridotite_relief_horizontal", + "count": 3 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/peridotite_relief_i.json b/src/main/resources/data/mineralogy/recipe/peridotite_relief_i.json index 9cc9a78a0..e0583ae1e 100644 --- a/src/main/resources/data/mineralogy/recipe/peridotite_relief_i.json +++ b/src/main/resources/data/mineralogy/recipe/peridotite_relief_i.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - " x ", - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:peridotite_relief_blank" - } - }, - "result": { - "id": "mineralogy:peridotite_relief_i", - "count": 7 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + " x ", + "xxx" + ], + "key": { + "x": "mineralogy:peridotite_relief_blank" + }, + "result": { + "id": "mineralogy:peridotite_relief_i", + "count": 7 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/peridotite_relief_left.json b/src/main/resources/data/mineralogy/recipe/peridotite_relief_left.json index 70e0a71e4..6fa449ca1 100644 --- a/src/main/resources/data/mineralogy/recipe/peridotite_relief_left.json +++ b/src/main/resources/data/mineralogy/recipe/peridotite_relief_left.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - " x ", - " x" - ], - "key": { - "x": { - "item": "mineralogy:peridotite_relief_blank" - } - }, - "result": { - "id": "mineralogy:peridotite_relief_left", - "count": 3 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + " x ", + " x" + ], + "key": { + "x": "mineralogy:peridotite_relief_blank" + }, + "result": { + "id": "mineralogy:peridotite_relief_left", + "count": 3 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/peridotite_relief_pickaxe.json b/src/main/resources/data/mineralogy/recipe/peridotite_relief_pickaxe.json index ed192a8be..b443ea610 100644 --- a/src/main/resources/data/mineralogy/recipe/peridotite_relief_pickaxe.json +++ b/src/main/resources/data/mineralogy/recipe/peridotite_relief_pickaxe.json @@ -1,37 +1,19 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:peridotite_relief_blank" - }, - { - "item": "mineralogy:peridotite_relief_blank" - }, - { - "item": "mineralogy:peridotite_relief_blank" - }, - { - "item": "mineralogy:peridotite_relief_blank" - }, - { - "item": "mineralogy:peridotite_relief_blank" - }, - { - "item": "mineralogy:peridotite_relief_blank" - }, - { - "item": "mineralogy:peridotite_relief_blank" - }, - { - "item": "mineralogy:peridotite_relief_blank" - }, - { - "item": "minecraft:stone_pickaxe" - } - ], - "result": { - "id": "mineralogy:peridotite_relief_pickaxe", - "count": 8 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:peridotite_relief_blank", + "mineralogy:peridotite_relief_blank", + "mineralogy:peridotite_relief_blank", + "mineralogy:peridotite_relief_blank", + "mineralogy:peridotite_relief_blank", + "mineralogy:peridotite_relief_blank", + "mineralogy:peridotite_relief_blank", + "mineralogy:peridotite_relief_blank", + "minecraft:stone_pickaxe" + ], + "result": { + "id": "mineralogy:peridotite_relief_pickaxe", + "count": 8 + } } diff --git a/src/main/resources/data/mineralogy/recipe/peridotite_relief_plus.json b/src/main/resources/data/mineralogy/recipe/peridotite_relief_plus.json index 64b31f285..27129512b 100644 --- a/src/main/resources/data/mineralogy/recipe/peridotite_relief_plus.json +++ b/src/main/resources/data/mineralogy/recipe/peridotite_relief_plus.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - " x ", - "xxx", - " x " - ], - "key": { - "x": { - "item": "mineralogy:peridotite_relief_blank" - } - }, - "result": { - "id": "mineralogy:peridotite_relief_plus", - "count": 5 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + " x ", + "xxx", + " x " + ], + "key": { + "x": "mineralogy:peridotite_relief_blank" + }, + "result": { + "id": "mineralogy:peridotite_relief_plus", + "count": 5 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/peridotite_relief_right.json b/src/main/resources/data/mineralogy/recipe/peridotite_relief_right.json index b557ee435..094f241fc 100644 --- a/src/main/resources/data/mineralogy/recipe/peridotite_relief_right.json +++ b/src/main/resources/data/mineralogy/recipe/peridotite_relief_right.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:peridotite_relief_left" - }, - { - "item": "mineralogy:peridotite_relief_left" - } - ], - "result": { - "id": "mineralogy:peridotite_relief_right", - "count": 2 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:peridotite_relief_left", + "mineralogy:peridotite_relief_left" + ], + "result": { + "id": "mineralogy:peridotite_relief_right", + "count": 2 + } } diff --git a/src/main/resources/data/mineralogy/recipe/peridotite_relief_sword.json b/src/main/resources/data/mineralogy/recipe/peridotite_relief_sword.json index 3c9688009..4609a707f 100644 --- a/src/main/resources/data/mineralogy/recipe/peridotite_relief_sword.json +++ b/src/main/resources/data/mineralogy/recipe/peridotite_relief_sword.json @@ -1,37 +1,19 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:peridotite_relief_blank" - }, - { - "item": "mineralogy:peridotite_relief_blank" - }, - { - "item": "mineralogy:peridotite_relief_blank" - }, - { - "item": "mineralogy:peridotite_relief_blank" - }, - { - "item": "mineralogy:peridotite_relief_blank" - }, - { - "item": "mineralogy:peridotite_relief_blank" - }, - { - "item": "mineralogy:peridotite_relief_blank" - }, - { - "item": "mineralogy:peridotite_relief_blank" - }, - { - "item": "minecraft:stone_sword" - } - ], - "result": { - "id": "mineralogy:peridotite_relief_sword", - "count": 8 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:peridotite_relief_blank", + "mineralogy:peridotite_relief_blank", + "mineralogy:peridotite_relief_blank", + "mineralogy:peridotite_relief_blank", + "mineralogy:peridotite_relief_blank", + "mineralogy:peridotite_relief_blank", + "mineralogy:peridotite_relief_blank", + "mineralogy:peridotite_relief_blank", + "minecraft:stone_sword" + ], + "result": { + "id": "mineralogy:peridotite_relief_sword", + "count": 8 + } } diff --git a/src/main/resources/data/mineralogy/recipe/peridotite_relief_vertical.json b/src/main/resources/data/mineralogy/recipe/peridotite_relief_vertical.json index af571dfd6..0329489d2 100644 --- a/src/main/resources/data/mineralogy/recipe/peridotite_relief_vertical.json +++ b/src/main/resources/data/mineralogy/recipe/peridotite_relief_vertical.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x", - "x", - "x" - ], - "key": { - "x": { - "item": "mineralogy:peridotite_relief_blank" - } - }, - "result": { - "id": "mineralogy:peridotite_relief_vertical", - "count": 3 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x", + "x", + "x" + ], + "key": { + "x": "mineralogy:peridotite_relief_blank" + }, + "result": { + "id": "mineralogy:peridotite_relief_vertical", + "count": 3 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/peridotite_slab.json b/src/main/resources/data/mineralogy/recipe/peridotite_slab.json index d4235863e..8672868bf 100644 --- a/src/main/resources/data/mineralogy/recipe/peridotite_slab.json +++ b/src/main/resources/data/mineralogy/recipe/peridotite_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:peridotite" - } - }, - "result": { - "id": "mineralogy:peridotite_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:peridotite" + }, + "result": { + "id": "mineralogy:peridotite_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/peridotite_smooth.json b/src/main/resources/data/mineralogy/recipe/peridotite_smooth.json index c934684f8..d31bda0e0 100644 --- a/src/main/resources/data/mineralogy/recipe/peridotite_smooth.json +++ b/src/main/resources/data/mineralogy/recipe/peridotite_smooth.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "tag": "mineralogy:stones/peridotite" - }, - { - "item": "minecraft:sand" - } - ], - "result": { - "id": "mineralogy:peridotite_smooth", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "#mineralogy:stones/peridotite", + "minecraft:sand" + ], + "result": { + "id": "mineralogy:peridotite_smooth", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/peridotite_smooth_brick.json b/src/main/resources/data/mineralogy/recipe/peridotite_smooth_brick.json index aad894d80..7ffe14b12 100644 --- a/src/main/resources/data/mineralogy/recipe/peridotite_smooth_brick.json +++ b/src/main/resources/data/mineralogy/recipe/peridotite_smooth_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/peridotite/smooth" - } - }, - "result": { - "id": "mineralogy:peridotite_smooth_brick", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "#mineralogy:stones/peridotite/smooth" + }, + "result": { + "id": "mineralogy:peridotite_smooth_brick", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/peridotite_smooth_brick_furnace.json b/src/main/resources/data/mineralogy/recipe/peridotite_smooth_brick_furnace.json index 4d11c1ac0..3a2eace2b 100644 --- a/src/main/resources/data/mineralogy/recipe/peridotite_smooth_brick_furnace.json +++ b/src/main/resources/data/mineralogy/recipe/peridotite_smooth_brick_furnace.json @@ -1,22 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "xxx", - "xyx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:slabs/peridotite/smooth_brick" - }, - "y": { - "item": "minecraft:furnace" - } - }, - "result": { - "id": "mineralogy:peridotite_smooth_brick_furnace", - "count": 1 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "xxx", + "xyx", + "xxx" + ], + "key": { + "x": "#mineralogy:slabs/peridotite/smooth_brick", + "y": "minecraft:furnace" + }, + "result": { + "id": "mineralogy:peridotite_smooth_brick_furnace", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/peridotite_smooth_brick_slab.json b/src/main/resources/data/mineralogy/recipe/peridotite_smooth_brick_slab.json index 55ea0e145..e4dde2a6c 100644 --- a/src/main/resources/data/mineralogy/recipe/peridotite_smooth_brick_slab.json +++ b/src/main/resources/data/mineralogy/recipe/peridotite_smooth_brick_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:peridotite_smooth_brick" - } - }, - "result": { - "id": "mineralogy:peridotite_smooth_brick_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:peridotite_smooth_brick" + }, + "result": { + "id": "mineralogy:peridotite_smooth_brick_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/peridotite_smooth_brick_stairs.json b/src/main/resources/data/mineralogy/recipe/peridotite_smooth_brick_stairs.json index aa6752245..141023fcc 100644 --- a/src/main/resources/data/mineralogy/recipe/peridotite_smooth_brick_stairs.json +++ b/src/main/resources/data/mineralogy/recipe/peridotite_smooth_brick_stairs.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - "xx ", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/peridotite/smooth_brick" - } - }, - "result": { - "id": "mineralogy:peridotite_smooth_brick_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + "xx ", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/peridotite/smooth_brick" + }, + "result": { + "id": "mineralogy:peridotite_smooth_brick_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/peridotite_smooth_brick_wall.json b/src/main/resources/data/mineralogy/recipe/peridotite_smooth_brick_wall.json index 094791db0..432fb4c18 100644 --- a/src/main/resources/data/mineralogy/recipe/peridotite_smooth_brick_wall.json +++ b/src/main/resources/data/mineralogy/recipe/peridotite_smooth_brick_wall.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/peridotite/smooth_brick" - } - }, - "result": { - "id": "mineralogy:peridotite_smooth_brick_wall", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/peridotite/smooth_brick" + }, + "result": { + "id": "mineralogy:peridotite_smooth_brick_wall", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/peridotite_smooth_furnace.json b/src/main/resources/data/mineralogy/recipe/peridotite_smooth_furnace.json index 03948dcc4..a2518b0f1 100644 --- a/src/main/resources/data/mineralogy/recipe/peridotite_smooth_furnace.json +++ b/src/main/resources/data/mineralogy/recipe/peridotite_smooth_furnace.json @@ -1,22 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "xxx", - "xyx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:slabs/peridotite/smooth" - }, - "y": { - "item": "minecraft:furnace" - } - }, - "result": { - "id": "mineralogy:peridotite_smooth_furnace", - "count": 1 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "xxx", + "xyx", + "xxx" + ], + "key": { + "x": "#mineralogy:slabs/peridotite/smooth", + "y": "minecraft:furnace" + }, + "result": { + "id": "mineralogy:peridotite_smooth_furnace", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/peridotite_smooth_slab.json b/src/main/resources/data/mineralogy/recipe/peridotite_smooth_slab.json index 50ba92af5..f352e04b3 100644 --- a/src/main/resources/data/mineralogy/recipe/peridotite_smooth_slab.json +++ b/src/main/resources/data/mineralogy/recipe/peridotite_smooth_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:peridotite_smooth" - } - }, - "result": { - "id": "mineralogy:peridotite_smooth_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:peridotite_smooth" + }, + "result": { + "id": "mineralogy:peridotite_smooth_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/peridotite_smooth_stairs.json b/src/main/resources/data/mineralogy/recipe/peridotite_smooth_stairs.json index 479efe200..a92b36398 100644 --- a/src/main/resources/data/mineralogy/recipe/peridotite_smooth_stairs.json +++ b/src/main/resources/data/mineralogy/recipe/peridotite_smooth_stairs.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - "xx ", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/peridotite/smooth" - } - }, - "result": { - "id": "mineralogy:peridotite_smooth_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + "xx ", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/peridotite/smooth" + }, + "result": { + "id": "mineralogy:peridotite_smooth_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/peridotite_smooth_wall.json b/src/main/resources/data/mineralogy/recipe/peridotite_smooth_wall.json index b790e3cc5..578212091 100644 --- a/src/main/resources/data/mineralogy/recipe/peridotite_smooth_wall.json +++ b/src/main/resources/data/mineralogy/recipe/peridotite_smooth_wall.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/peridotite/smooth" - } - }, - "result": { - "id": "mineralogy:peridotite_smooth_wall", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/peridotite/smooth" + }, + "result": { + "id": "mineralogy:peridotite_smooth_wall", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/peridotite_stairs.json b/src/main/resources/data/mineralogy/recipe/peridotite_stairs.json index b5af1b255..a653bbba9 100644 --- a/src/main/resources/data/mineralogy/recipe/peridotite_stairs.json +++ b/src/main/resources/data/mineralogy/recipe/peridotite_stairs.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - "xx ", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/peridotite" - } - }, - "result": { - "id": "mineralogy:peridotite_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + "xx ", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/peridotite" + }, + "result": { + "id": "mineralogy:peridotite_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/peridotite_to_stone.json b/src/main/resources/data/mineralogy/recipe/peridotite_to_stone.json index 70289cc2e..faf8a748f 100644 --- a/src/main/resources/data/mineralogy/recipe/peridotite_to_stone.json +++ b/src/main/resources/data/mineralogy/recipe/peridotite_to_stone.json @@ -1,12 +1,10 @@ { - "type": "minecraft:smelting", - "category": "blocks", - "ingredient": { - "item": "mineralogy:peridotite" - }, - "result": { - "id": "minecraft:stone" - }, - "experience": 0.1, - "cookingtime": 200 + "type": "minecraft:smelting", + "category": "blocks", + "ingredient": "mineralogy:peridotite", + "result": { + "id": "minecraft:stone" + }, + "experience": 0.1, + "cookingtime": 200 } diff --git a/src/main/resources/data/mineralogy/recipe/peridotite_wall.json b/src/main/resources/data/mineralogy/recipe/peridotite_wall.json index c553d486b..94c8cee66 100644 --- a/src/main/resources/data/mineralogy/recipe/peridotite_wall.json +++ b/src/main/resources/data/mineralogy/recipe/peridotite_wall.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/peridotite" - } - }, - "result": { - "id": "mineralogy:peridotite_wall", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/peridotite" + }, + "result": { + "id": "mineralogy:peridotite_wall", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/phosphorous_block.json b/src/main/resources/data/mineralogy/recipe/phosphorous_block.json index 5d932830b..30519a556 100644 --- a/src/main/resources/data/mineralogy/recipe/phosphorous_block.json +++ b/src/main/resources/data/mineralogy/recipe/phosphorous_block.json @@ -1,25 +1,23 @@ { - "neoforge:conditions": [ - { - "type": "mineralogy:config", - "flag": "ENABLE_MINERAL_DUSTS" - } - ], - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx", - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:phosphorous_dust" - } - }, - "result": { - "id": "mineralogy:phosphorous_block", - "count": 1 - }, - "show_notification": true + "neoforge:conditions": [ + { + "type": "mineralogy:config", + "flag": "ENABLE_MINERAL_DUSTS" + } + ], + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx", + "xxx" + ], + "key": { + "x": "mineralogy:phosphorous_dust" + }, + "result": { + "id": "mineralogy:phosphorous_block", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/phosphorous_dust.json b/src/main/resources/data/mineralogy/recipe/phosphorous_dust.json index 2a522eb22..2d165dc43 100644 --- a/src/main/resources/data/mineralogy/recipe/phosphorous_dust.json +++ b/src/main/resources/data/mineralogy/recipe/phosphorous_dust.json @@ -1,19 +1,17 @@ { - "neoforge:conditions": [ - { - "type": "mineralogy:config", - "flag": "ENABLE_MINERAL_DUSTS" - } - ], - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "tag": "c:storage_blocks/phosphorous" - } - ], - "result": { - "id": "mineralogy:phosphorous_dust", - "count": 9 - } + "neoforge:conditions": [ + { + "type": "mineralogy:config", + "flag": "ENABLE_MINERAL_DUSTS" + } + ], + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "#c:storage_blocks/phosphorous" + ], + "result": { + "id": "mineralogy:phosphorous_dust", + "count": 9 + } } diff --git a/src/main/resources/data/mineralogy/recipe/phyllite_brick.json b/src/main/resources/data/mineralogy/recipe/phyllite_brick.json index 1053df42d..eb9532bda 100644 --- a/src/main/resources/data/mineralogy/recipe/phyllite_brick.json +++ b/src/main/resources/data/mineralogy/recipe/phyllite_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/phyllite" - } - }, - "result": { - "id": "mineralogy:phyllite_brick", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "#mineralogy:stones/phyllite" + }, + "result": { + "id": "mineralogy:phyllite_brick", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/phyllite_brick_block_polishing.json b/src/main/resources/data/mineralogy/recipe/phyllite_brick_block_polishing.json index 9283b9033..d8bb0abdb 100644 --- a/src/main/resources/data/mineralogy/recipe/phyllite_brick_block_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/phyllite_brick_block_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:phyllite_brick" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:phyllite_smooth_brick", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:phyllite_brick", + "#c:sands" + ], + "result": { + "id": "mineralogy:phyllite_smooth_brick", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/phyllite_brick_furnace.json b/src/main/resources/data/mineralogy/recipe/phyllite_brick_furnace.json index 55357569d..07b7c39f9 100644 --- a/src/main/resources/data/mineralogy/recipe/phyllite_brick_furnace.json +++ b/src/main/resources/data/mineralogy/recipe/phyllite_brick_furnace.json @@ -1,22 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "xxx", - "xyx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:slabs/phyllite/brick" - }, - "y": { - "item": "minecraft:furnace" - } - }, - "result": { - "id": "mineralogy:phyllite_brick_furnace", - "count": 1 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "xxx", + "xyx", + "xxx" + ], + "key": { + "x": "#mineralogy:slabs/phyllite/brick", + "y": "minecraft:furnace" + }, + "result": { + "id": "mineralogy:phyllite_brick_furnace", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/phyllite_brick_slab.json b/src/main/resources/data/mineralogy/recipe/phyllite_brick_slab.json index 2296846fc..c55ff6e46 100644 --- a/src/main/resources/data/mineralogy/recipe/phyllite_brick_slab.json +++ b/src/main/resources/data/mineralogy/recipe/phyllite_brick_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:phyllite_brick" - } - }, - "result": { - "id": "mineralogy:phyllite_brick_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:phyllite_brick" + }, + "result": { + "id": "mineralogy:phyllite_brick_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/phyllite_brick_slab_polishing.json b/src/main/resources/data/mineralogy/recipe/phyllite_brick_slab_polishing.json index e442e2bfc..2dcccd80d 100644 --- a/src/main/resources/data/mineralogy/recipe/phyllite_brick_slab_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/phyllite_brick_slab_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:phyllite_brick_slab" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:phyllite_smooth_brick_slab", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:phyllite_brick_slab", + "#c:sands" + ], + "result": { + "id": "mineralogy:phyllite_smooth_brick_slab", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/phyllite_brick_slab_recombination.json b/src/main/resources/data/mineralogy/recipe/phyllite_brick_slab_recombination.json index b07145694..1c1640f06 100644 --- a/src/main/resources/data/mineralogy/recipe/phyllite_brick_slab_recombination.json +++ b/src/main/resources/data/mineralogy/recipe/phyllite_brick_slab_recombination.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:phyllite_brick_slab" - }, - { - "item": "mineralogy:phyllite_brick_slab" - } - ], - "result": { - "id": "mineralogy:phyllite_brick", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:phyllite_brick_slab", + "mineralogy:phyllite_brick_slab" + ], + "result": { + "id": "mineralogy:phyllite_brick", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/phyllite_brick_stairs.json b/src/main/resources/data/mineralogy/recipe/phyllite_brick_stairs.json index 95d31f024..3da2fdd6b 100644 --- a/src/main/resources/data/mineralogy/recipe/phyllite_brick_stairs.json +++ b/src/main/resources/data/mineralogy/recipe/phyllite_brick_stairs.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - "xx ", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/phyllite/brick" - } - }, - "result": { - "id": "mineralogy:phyllite_brick_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + "xx ", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/phyllite/brick" + }, + "result": { + "id": "mineralogy:phyllite_brick_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/phyllite_brick_stairs_polishing.json b/src/main/resources/data/mineralogy/recipe/phyllite_brick_stairs_polishing.json index 13acb1458..219f72ac4 100644 --- a/src/main/resources/data/mineralogy/recipe/phyllite_brick_stairs_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/phyllite_brick_stairs_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:phyllite_brick_stairs" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:phyllite_smooth_brick_stairs", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:phyllite_brick_stairs", + "#c:sands" + ], + "result": { + "id": "mineralogy:phyllite_smooth_brick_stairs", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/phyllite_brick_wall.json b/src/main/resources/data/mineralogy/recipe/phyllite_brick_wall.json index 6e8a6a09f..4e1e5f5b9 100644 --- a/src/main/resources/data/mineralogy/recipe/phyllite_brick_wall.json +++ b/src/main/resources/data/mineralogy/recipe/phyllite_brick_wall.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/phyllite/brick" - } - }, - "result": { - "id": "mineralogy:phyllite_brick_wall", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/phyllite/brick" + }, + "result": { + "id": "mineralogy:phyllite_brick_wall", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/phyllite_brick_wall_polishing.json b/src/main/resources/data/mineralogy/recipe/phyllite_brick_wall_polishing.json index d95b43a70..113aceb50 100644 --- a/src/main/resources/data/mineralogy/recipe/phyllite_brick_wall_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/phyllite_brick_wall_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:phyllite_brick_wall" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:phyllite_smooth_brick_wall", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:phyllite_brick_wall", + "#c:sands" + ], + "result": { + "id": "mineralogy:phyllite_smooth_brick_wall", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/phyllite_cobblestone.json b/src/main/resources/data/mineralogy/recipe/phyllite_cobblestone.json index 583f0c494..e61a69a31 100644 --- a/src/main/resources/data/mineralogy/recipe/phyllite_cobblestone.json +++ b/src/main/resources/data/mineralogy/recipe/phyllite_cobblestone.json @@ -1,22 +1,14 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "tag": "mineralogy:stones/phyllite" - }, - { - "tag": "mineralogy:stones/phyllite" - }, - { - "item": "minecraft:gravel" - }, - { - "item": "minecraft:gravel" - } - ], - "result": { - "id": "minecraft:cobblestone", - "count": 4 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "#mineralogy:stones/phyllite", + "#mineralogy:stones/phyllite", + "minecraft:gravel", + "minecraft:gravel" + ], + "result": { + "id": "minecraft:cobblestone", + "count": 4 + } } diff --git a/src/main/resources/data/mineralogy/recipe/phyllite_furnace.json b/src/main/resources/data/mineralogy/recipe/phyllite_furnace.json index fe0ffa240..4e4452329 100644 --- a/src/main/resources/data/mineralogy/recipe/phyllite_furnace.json +++ b/src/main/resources/data/mineralogy/recipe/phyllite_furnace.json @@ -1,22 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "xxx", - "xyx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:slabs/phyllite" - }, - "y": { - "item": "minecraft:furnace" - } - }, - "result": { - "id": "mineralogy:phyllite_furnace", - "count": 1 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "xxx", + "xyx", + "xxx" + ], + "key": { + "x": "#mineralogy:slabs/phyllite", + "y": "minecraft:furnace" + }, + "result": { + "id": "mineralogy:phyllite_furnace", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/phyllite_polished_brick_slab_recombination.json b/src/main/resources/data/mineralogy/recipe/phyllite_polished_brick_slab_recombination.json index d569b5ecf..622f2032f 100644 --- a/src/main/resources/data/mineralogy/recipe/phyllite_polished_brick_slab_recombination.json +++ b/src/main/resources/data/mineralogy/recipe/phyllite_polished_brick_slab_recombination.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:phyllite_smooth_brick_slab" - }, - { - "item": "mineralogy:phyllite_smooth_brick_slab" - } - ], - "result": { - "id": "mineralogy:phyllite_smooth_brick", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:phyllite_smooth_brick_slab", + "mineralogy:phyllite_smooth_brick_slab" + ], + "result": { + "id": "mineralogy:phyllite_smooth_brick", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/phyllite_polished_slab_recombination.json b/src/main/resources/data/mineralogy/recipe/phyllite_polished_slab_recombination.json index de759afc8..d9ca9902d 100644 --- a/src/main/resources/data/mineralogy/recipe/phyllite_polished_slab_recombination.json +++ b/src/main/resources/data/mineralogy/recipe/phyllite_polished_slab_recombination.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:phyllite_smooth_slab" - }, - { - "item": "mineralogy:phyllite_smooth_slab" - } - ], - "result": { - "id": "mineralogy:phyllite_smooth", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:phyllite_smooth_slab", + "mineralogy:phyllite_smooth_slab" + ], + "result": { + "id": "mineralogy:phyllite_smooth", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/phyllite_polished_slabs_to_brick.json b/src/main/resources/data/mineralogy/recipe/phyllite_polished_slabs_to_brick.json index 6db08283c..bdaa2d554 100644 --- a/src/main/resources/data/mineralogy/recipe/phyllite_polished_slabs_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/phyllite_polished_slabs_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:phyllite_smooth_slab" - } - }, - "result": { - "id": "mineralogy:phyllite_smooth_brick_slab", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:phyllite_smooth_slab" + }, + "result": { + "id": "mineralogy:phyllite_smooth_brick_slab", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/phyllite_polished_stairs_to_brick.json b/src/main/resources/data/mineralogy/recipe/phyllite_polished_stairs_to_brick.json index 4cbfc322b..2d29f68d2 100644 --- a/src/main/resources/data/mineralogy/recipe/phyllite_polished_stairs_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/phyllite_polished_stairs_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:phyllite_smooth_stairs" - } - }, - "result": { - "id": "mineralogy:phyllite_smooth_brick_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:phyllite_smooth_stairs" + }, + "result": { + "id": "mineralogy:phyllite_smooth_brick_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/phyllite_polished_walls_to_brick.json b/src/main/resources/data/mineralogy/recipe/phyllite_polished_walls_to_brick.json index ffe5242c4..9e259ab64 100644 --- a/src/main/resources/data/mineralogy/recipe/phyllite_polished_walls_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/phyllite_polished_walls_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:phyllite_smooth_wall" - } - }, - "result": { - "id": "mineralogy:phyllite_smooth_brick_wall", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:phyllite_smooth_wall" + }, + "result": { + "id": "mineralogy:phyllite_smooth_brick_wall", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/phyllite_raw_slab_polishing.json b/src/main/resources/data/mineralogy/recipe/phyllite_raw_slab_polishing.json index 14ffab234..7cfb708bb 100644 --- a/src/main/resources/data/mineralogy/recipe/phyllite_raw_slab_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/phyllite_raw_slab_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:phyllite_slab" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:phyllite_smooth_slab", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:phyllite_slab", + "#c:sands" + ], + "result": { + "id": "mineralogy:phyllite_smooth_slab", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/phyllite_raw_slab_recombination.json b/src/main/resources/data/mineralogy/recipe/phyllite_raw_slab_recombination.json index a0864c070..23b02609d 100644 --- a/src/main/resources/data/mineralogy/recipe/phyllite_raw_slab_recombination.json +++ b/src/main/resources/data/mineralogy/recipe/phyllite_raw_slab_recombination.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:phyllite_slab" - }, - { - "item": "mineralogy:phyllite_slab" - } - ], - "result": { - "id": "mineralogy:phyllite", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:phyllite_slab", + "mineralogy:phyllite_slab" + ], + "result": { + "id": "mineralogy:phyllite", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/phyllite_raw_slabs_to_brick.json b/src/main/resources/data/mineralogy/recipe/phyllite_raw_slabs_to_brick.json index dedbe4041..4e2ffbd96 100644 --- a/src/main/resources/data/mineralogy/recipe/phyllite_raw_slabs_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/phyllite_raw_slabs_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:phyllite_slab" - } - }, - "result": { - "id": "mineralogy:phyllite_brick_slab", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:phyllite_slab" + }, + "result": { + "id": "mineralogy:phyllite_brick_slab", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/phyllite_raw_stairs_polishing.json b/src/main/resources/data/mineralogy/recipe/phyllite_raw_stairs_polishing.json index 12eef1451..1786f5390 100644 --- a/src/main/resources/data/mineralogy/recipe/phyllite_raw_stairs_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/phyllite_raw_stairs_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:phyllite_stairs" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:phyllite_smooth_stairs", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:phyllite_stairs", + "#c:sands" + ], + "result": { + "id": "mineralogy:phyllite_smooth_stairs", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/phyllite_raw_stairs_to_brick.json b/src/main/resources/data/mineralogy/recipe/phyllite_raw_stairs_to_brick.json index 9000db438..37d08369e 100644 --- a/src/main/resources/data/mineralogy/recipe/phyllite_raw_stairs_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/phyllite_raw_stairs_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:phyllite_stairs" - } - }, - "result": { - "id": "mineralogy:phyllite_brick_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:phyllite_stairs" + }, + "result": { + "id": "mineralogy:phyllite_brick_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/phyllite_raw_wall_polishing.json b/src/main/resources/data/mineralogy/recipe/phyllite_raw_wall_polishing.json index 4fb13c2ff..244c81c9a 100644 --- a/src/main/resources/data/mineralogy/recipe/phyllite_raw_wall_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/phyllite_raw_wall_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:phyllite_wall" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:phyllite_smooth_wall", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:phyllite_wall", + "#c:sands" + ], + "result": { + "id": "mineralogy:phyllite_smooth_wall", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/phyllite_raw_walls_to_brick.json b/src/main/resources/data/mineralogy/recipe/phyllite_raw_walls_to_brick.json index 72fdb6451..35d9cd8ce 100644 --- a/src/main/resources/data/mineralogy/recipe/phyllite_raw_walls_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/phyllite_raw_walls_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:phyllite_wall" - } - }, - "result": { - "id": "mineralogy:phyllite_brick_wall", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:phyllite_wall" + }, + "result": { + "id": "mineralogy:phyllite_brick_wall", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/phyllite_relief_axe.json b/src/main/resources/data/mineralogy/recipe/phyllite_relief_axe.json index fd421283a..c497e24ae 100644 --- a/src/main/resources/data/mineralogy/recipe/phyllite_relief_axe.json +++ b/src/main/resources/data/mineralogy/recipe/phyllite_relief_axe.json @@ -1,37 +1,19 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:phyllite_relief_blank" - }, - { - "item": "mineralogy:phyllite_relief_blank" - }, - { - "item": "mineralogy:phyllite_relief_blank" - }, - { - "item": "mineralogy:phyllite_relief_blank" - }, - { - "item": "mineralogy:phyllite_relief_blank" - }, - { - "item": "mineralogy:phyllite_relief_blank" - }, - { - "item": "mineralogy:phyllite_relief_blank" - }, - { - "item": "mineralogy:phyllite_relief_blank" - }, - { - "item": "minecraft:stone_axe" - } - ], - "result": { - "id": "mineralogy:phyllite_relief_axe", - "count": 8 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:phyllite_relief_blank", + "mineralogy:phyllite_relief_blank", + "mineralogy:phyllite_relief_blank", + "mineralogy:phyllite_relief_blank", + "mineralogy:phyllite_relief_blank", + "mineralogy:phyllite_relief_blank", + "mineralogy:phyllite_relief_blank", + "mineralogy:phyllite_relief_blank", + "minecraft:stone_axe" + ], + "result": { + "id": "mineralogy:phyllite_relief_axe", + "count": 8 + } } diff --git a/src/main/resources/data/mineralogy/recipe/phyllite_relief_blank.json b/src/main/resources/data/mineralogy/recipe/phyllite_relief_blank.json index fa35cfefa..cd3c93a52 100644 --- a/src/main/resources/data/mineralogy/recipe/phyllite_relief_blank.json +++ b/src/main/resources/data/mineralogy/recipe/phyllite_relief_blank.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx", - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:phyllite_smooth" - } - }, - "result": { - "id": "mineralogy:phyllite_relief_blank", - "count": 16 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx", + "xxx" + ], + "key": { + "x": "mineralogy:phyllite_smooth" + }, + "result": { + "id": "mineralogy:phyllite_relief_blank", + "count": 16 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/phyllite_relief_cross.json b/src/main/resources/data/mineralogy/recipe/phyllite_relief_cross.json index 8eca423e7..9f8e5d137 100644 --- a/src/main/resources/data/mineralogy/recipe/phyllite_relief_cross.json +++ b/src/main/resources/data/mineralogy/recipe/phyllite_relief_cross.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x x", - " ", - "x x" - ], - "key": { - "x": { - "item": "mineralogy:phyllite_relief_blank" - } - }, - "result": { - "id": "mineralogy:phyllite_relief_cross", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x x", + " ", + "x x" + ], + "key": { + "x": "mineralogy:phyllite_relief_blank" + }, + "result": { + "id": "mineralogy:phyllite_relief_cross", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/phyllite_relief_hammer.json b/src/main/resources/data/mineralogy/recipe/phyllite_relief_hammer.json index fa42ce0ab..598ffb770 100644 --- a/src/main/resources/data/mineralogy/recipe/phyllite_relief_hammer.json +++ b/src/main/resources/data/mineralogy/recipe/phyllite_relief_hammer.json @@ -1,25 +1,19 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "zxz", - "zyz", - "zzz" - ], - "key": { - "x": { - "item": "mineralogy:phyllite_smooth" - }, - "y": { - "item": "minecraft:stick" - }, - "z": { - "item": "mineralogy:phyllite_relief_blank" - } - }, - "result": { - "id": "mineralogy:phyllite_relief_hammer", - "count": 7 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "zxz", + "zyz", + "zzz" + ], + "key": { + "x": "mineralogy:phyllite_smooth", + "y": "minecraft:stick", + "z": "mineralogy:phyllite_relief_blank" + }, + "result": { + "id": "mineralogy:phyllite_relief_hammer", + "count": 7 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/phyllite_relief_hoe.json b/src/main/resources/data/mineralogy/recipe/phyllite_relief_hoe.json index 199580e00..c469b1bee 100644 --- a/src/main/resources/data/mineralogy/recipe/phyllite_relief_hoe.json +++ b/src/main/resources/data/mineralogy/recipe/phyllite_relief_hoe.json @@ -1,37 +1,19 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:phyllite_relief_blank" - }, - { - "item": "mineralogy:phyllite_relief_blank" - }, - { - "item": "mineralogy:phyllite_relief_blank" - }, - { - "item": "mineralogy:phyllite_relief_blank" - }, - { - "item": "mineralogy:phyllite_relief_blank" - }, - { - "item": "mineralogy:phyllite_relief_blank" - }, - { - "item": "mineralogy:phyllite_relief_blank" - }, - { - "item": "mineralogy:phyllite_relief_blank" - }, - { - "item": "minecraft:stone_hoe" - } - ], - "result": { - "id": "mineralogy:phyllite_relief_hoe", - "count": 8 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:phyllite_relief_blank", + "mineralogy:phyllite_relief_blank", + "mineralogy:phyllite_relief_blank", + "mineralogy:phyllite_relief_blank", + "mineralogy:phyllite_relief_blank", + "mineralogy:phyllite_relief_blank", + "mineralogy:phyllite_relief_blank", + "mineralogy:phyllite_relief_blank", + "minecraft:stone_hoe" + ], + "result": { + "id": "mineralogy:phyllite_relief_hoe", + "count": 8 + } } diff --git a/src/main/resources/data/mineralogy/recipe/phyllite_relief_horizontal.json b/src/main/resources/data/mineralogy/recipe/phyllite_relief_horizontal.json index 68f00dc01..fd2181dcd 100644 --- a/src/main/resources/data/mineralogy/recipe/phyllite_relief_horizontal.json +++ b/src/main/resources/data/mineralogy/recipe/phyllite_relief_horizontal.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:phyllite_relief_blank" - } - }, - "result": { - "id": "mineralogy:phyllite_relief_horizontal", - "count": 3 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:phyllite_relief_blank" + }, + "result": { + "id": "mineralogy:phyllite_relief_horizontal", + "count": 3 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/phyllite_relief_i.json b/src/main/resources/data/mineralogy/recipe/phyllite_relief_i.json index f4031315c..b47f1ee81 100644 --- a/src/main/resources/data/mineralogy/recipe/phyllite_relief_i.json +++ b/src/main/resources/data/mineralogy/recipe/phyllite_relief_i.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - " x ", - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:phyllite_relief_blank" - } - }, - "result": { - "id": "mineralogy:phyllite_relief_i", - "count": 7 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + " x ", + "xxx" + ], + "key": { + "x": "mineralogy:phyllite_relief_blank" + }, + "result": { + "id": "mineralogy:phyllite_relief_i", + "count": 7 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/phyllite_relief_left.json b/src/main/resources/data/mineralogy/recipe/phyllite_relief_left.json index b1f82517a..5258e0d65 100644 --- a/src/main/resources/data/mineralogy/recipe/phyllite_relief_left.json +++ b/src/main/resources/data/mineralogy/recipe/phyllite_relief_left.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - " x ", - " x" - ], - "key": { - "x": { - "item": "mineralogy:phyllite_relief_blank" - } - }, - "result": { - "id": "mineralogy:phyllite_relief_left", - "count": 3 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + " x ", + " x" + ], + "key": { + "x": "mineralogy:phyllite_relief_blank" + }, + "result": { + "id": "mineralogy:phyllite_relief_left", + "count": 3 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/phyllite_relief_pickaxe.json b/src/main/resources/data/mineralogy/recipe/phyllite_relief_pickaxe.json index 95634a5c7..d7cf5fdb5 100644 --- a/src/main/resources/data/mineralogy/recipe/phyllite_relief_pickaxe.json +++ b/src/main/resources/data/mineralogy/recipe/phyllite_relief_pickaxe.json @@ -1,37 +1,19 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:phyllite_relief_blank" - }, - { - "item": "mineralogy:phyllite_relief_blank" - }, - { - "item": "mineralogy:phyllite_relief_blank" - }, - { - "item": "mineralogy:phyllite_relief_blank" - }, - { - "item": "mineralogy:phyllite_relief_blank" - }, - { - "item": "mineralogy:phyllite_relief_blank" - }, - { - "item": "mineralogy:phyllite_relief_blank" - }, - { - "item": "mineralogy:phyllite_relief_blank" - }, - { - "item": "minecraft:stone_pickaxe" - } - ], - "result": { - "id": "mineralogy:phyllite_relief_pickaxe", - "count": 8 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:phyllite_relief_blank", + "mineralogy:phyllite_relief_blank", + "mineralogy:phyllite_relief_blank", + "mineralogy:phyllite_relief_blank", + "mineralogy:phyllite_relief_blank", + "mineralogy:phyllite_relief_blank", + "mineralogy:phyllite_relief_blank", + "mineralogy:phyllite_relief_blank", + "minecraft:stone_pickaxe" + ], + "result": { + "id": "mineralogy:phyllite_relief_pickaxe", + "count": 8 + } } diff --git a/src/main/resources/data/mineralogy/recipe/phyllite_relief_plus.json b/src/main/resources/data/mineralogy/recipe/phyllite_relief_plus.json index b9cc748a4..ad82d2672 100644 --- a/src/main/resources/data/mineralogy/recipe/phyllite_relief_plus.json +++ b/src/main/resources/data/mineralogy/recipe/phyllite_relief_plus.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - " x ", - "xxx", - " x " - ], - "key": { - "x": { - "item": "mineralogy:phyllite_relief_blank" - } - }, - "result": { - "id": "mineralogy:phyllite_relief_plus", - "count": 5 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + " x ", + "xxx", + " x " + ], + "key": { + "x": "mineralogy:phyllite_relief_blank" + }, + "result": { + "id": "mineralogy:phyllite_relief_plus", + "count": 5 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/phyllite_relief_right.json b/src/main/resources/data/mineralogy/recipe/phyllite_relief_right.json index e34755570..13c21584f 100644 --- a/src/main/resources/data/mineralogy/recipe/phyllite_relief_right.json +++ b/src/main/resources/data/mineralogy/recipe/phyllite_relief_right.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:phyllite_relief_left" - }, - { - "item": "mineralogy:phyllite_relief_left" - } - ], - "result": { - "id": "mineralogy:phyllite_relief_right", - "count": 2 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:phyllite_relief_left", + "mineralogy:phyllite_relief_left" + ], + "result": { + "id": "mineralogy:phyllite_relief_right", + "count": 2 + } } diff --git a/src/main/resources/data/mineralogy/recipe/phyllite_relief_sword.json b/src/main/resources/data/mineralogy/recipe/phyllite_relief_sword.json index 46f943933..cbe50ee20 100644 --- a/src/main/resources/data/mineralogy/recipe/phyllite_relief_sword.json +++ b/src/main/resources/data/mineralogy/recipe/phyllite_relief_sword.json @@ -1,37 +1,19 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:phyllite_relief_blank" - }, - { - "item": "mineralogy:phyllite_relief_blank" - }, - { - "item": "mineralogy:phyllite_relief_blank" - }, - { - "item": "mineralogy:phyllite_relief_blank" - }, - { - "item": "mineralogy:phyllite_relief_blank" - }, - { - "item": "mineralogy:phyllite_relief_blank" - }, - { - "item": "mineralogy:phyllite_relief_blank" - }, - { - "item": "mineralogy:phyllite_relief_blank" - }, - { - "item": "minecraft:stone_sword" - } - ], - "result": { - "id": "mineralogy:phyllite_relief_sword", - "count": 8 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:phyllite_relief_blank", + "mineralogy:phyllite_relief_blank", + "mineralogy:phyllite_relief_blank", + "mineralogy:phyllite_relief_blank", + "mineralogy:phyllite_relief_blank", + "mineralogy:phyllite_relief_blank", + "mineralogy:phyllite_relief_blank", + "mineralogy:phyllite_relief_blank", + "minecraft:stone_sword" + ], + "result": { + "id": "mineralogy:phyllite_relief_sword", + "count": 8 + } } diff --git a/src/main/resources/data/mineralogy/recipe/phyllite_relief_vertical.json b/src/main/resources/data/mineralogy/recipe/phyllite_relief_vertical.json index d83ef683f..f08b786c8 100644 --- a/src/main/resources/data/mineralogy/recipe/phyllite_relief_vertical.json +++ b/src/main/resources/data/mineralogy/recipe/phyllite_relief_vertical.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x", - "x", - "x" - ], - "key": { - "x": { - "item": "mineralogy:phyllite_relief_blank" - } - }, - "result": { - "id": "mineralogy:phyllite_relief_vertical", - "count": 3 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x", + "x", + "x" + ], + "key": { + "x": "mineralogy:phyllite_relief_blank" + }, + "result": { + "id": "mineralogy:phyllite_relief_vertical", + "count": 3 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/phyllite_slab.json b/src/main/resources/data/mineralogy/recipe/phyllite_slab.json index 5224ffe0c..55f00e81b 100644 --- a/src/main/resources/data/mineralogy/recipe/phyllite_slab.json +++ b/src/main/resources/data/mineralogy/recipe/phyllite_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:phyllite" - } - }, - "result": { - "id": "mineralogy:phyllite_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:phyllite" + }, + "result": { + "id": "mineralogy:phyllite_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/phyllite_smooth.json b/src/main/resources/data/mineralogy/recipe/phyllite_smooth.json index 19a73cbfd..f05ef2d2a 100644 --- a/src/main/resources/data/mineralogy/recipe/phyllite_smooth.json +++ b/src/main/resources/data/mineralogy/recipe/phyllite_smooth.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "tag": "mineralogy:stones/phyllite" - }, - { - "item": "minecraft:sand" - } - ], - "result": { - "id": "mineralogy:phyllite_smooth", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "#mineralogy:stones/phyllite", + "minecraft:sand" + ], + "result": { + "id": "mineralogy:phyllite_smooth", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/phyllite_smooth_brick.json b/src/main/resources/data/mineralogy/recipe/phyllite_smooth_brick.json index d54232d5c..cfa3790d2 100644 --- a/src/main/resources/data/mineralogy/recipe/phyllite_smooth_brick.json +++ b/src/main/resources/data/mineralogy/recipe/phyllite_smooth_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/phyllite/smooth" - } - }, - "result": { - "id": "mineralogy:phyllite_smooth_brick", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "#mineralogy:stones/phyllite/smooth" + }, + "result": { + "id": "mineralogy:phyllite_smooth_brick", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/phyllite_smooth_brick_furnace.json b/src/main/resources/data/mineralogy/recipe/phyllite_smooth_brick_furnace.json index a0c8d21be..6cd515446 100644 --- a/src/main/resources/data/mineralogy/recipe/phyllite_smooth_brick_furnace.json +++ b/src/main/resources/data/mineralogy/recipe/phyllite_smooth_brick_furnace.json @@ -1,22 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "xxx", - "xyx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:slabs/phyllite/smooth_brick" - }, - "y": { - "item": "minecraft:furnace" - } - }, - "result": { - "id": "mineralogy:phyllite_smooth_brick_furnace", - "count": 1 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "xxx", + "xyx", + "xxx" + ], + "key": { + "x": "#mineralogy:slabs/phyllite/smooth_brick", + "y": "minecraft:furnace" + }, + "result": { + "id": "mineralogy:phyllite_smooth_brick_furnace", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/phyllite_smooth_brick_slab.json b/src/main/resources/data/mineralogy/recipe/phyllite_smooth_brick_slab.json index 1b05bb0a3..fa21191c4 100644 --- a/src/main/resources/data/mineralogy/recipe/phyllite_smooth_brick_slab.json +++ b/src/main/resources/data/mineralogy/recipe/phyllite_smooth_brick_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:phyllite_smooth_brick" - } - }, - "result": { - "id": "mineralogy:phyllite_smooth_brick_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:phyllite_smooth_brick" + }, + "result": { + "id": "mineralogy:phyllite_smooth_brick_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/phyllite_smooth_brick_stairs.json b/src/main/resources/data/mineralogy/recipe/phyllite_smooth_brick_stairs.json index 2da103014..095596adc 100644 --- a/src/main/resources/data/mineralogy/recipe/phyllite_smooth_brick_stairs.json +++ b/src/main/resources/data/mineralogy/recipe/phyllite_smooth_brick_stairs.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - "xx ", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/phyllite/smooth_brick" - } - }, - "result": { - "id": "mineralogy:phyllite_smooth_brick_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + "xx ", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/phyllite/smooth_brick" + }, + "result": { + "id": "mineralogy:phyllite_smooth_brick_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/phyllite_smooth_brick_wall.json b/src/main/resources/data/mineralogy/recipe/phyllite_smooth_brick_wall.json index b2d49142a..f06d306e1 100644 --- a/src/main/resources/data/mineralogy/recipe/phyllite_smooth_brick_wall.json +++ b/src/main/resources/data/mineralogy/recipe/phyllite_smooth_brick_wall.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/phyllite/smooth_brick" - } - }, - "result": { - "id": "mineralogy:phyllite_smooth_brick_wall", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/phyllite/smooth_brick" + }, + "result": { + "id": "mineralogy:phyllite_smooth_brick_wall", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/phyllite_smooth_furnace.json b/src/main/resources/data/mineralogy/recipe/phyllite_smooth_furnace.json index fa25bc495..9bbbae392 100644 --- a/src/main/resources/data/mineralogy/recipe/phyllite_smooth_furnace.json +++ b/src/main/resources/data/mineralogy/recipe/phyllite_smooth_furnace.json @@ -1,22 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "xxx", - "xyx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:slabs/phyllite/smooth" - }, - "y": { - "item": "minecraft:furnace" - } - }, - "result": { - "id": "mineralogy:phyllite_smooth_furnace", - "count": 1 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "xxx", + "xyx", + "xxx" + ], + "key": { + "x": "#mineralogy:slabs/phyllite/smooth", + "y": "minecraft:furnace" + }, + "result": { + "id": "mineralogy:phyllite_smooth_furnace", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/phyllite_smooth_slab.json b/src/main/resources/data/mineralogy/recipe/phyllite_smooth_slab.json index 5637a8f44..209c4ac9e 100644 --- a/src/main/resources/data/mineralogy/recipe/phyllite_smooth_slab.json +++ b/src/main/resources/data/mineralogy/recipe/phyllite_smooth_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:phyllite_smooth" - } - }, - "result": { - "id": "mineralogy:phyllite_smooth_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:phyllite_smooth" + }, + "result": { + "id": "mineralogy:phyllite_smooth_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/phyllite_smooth_stairs.json b/src/main/resources/data/mineralogy/recipe/phyllite_smooth_stairs.json index 99a23d812..60fb61539 100644 --- a/src/main/resources/data/mineralogy/recipe/phyllite_smooth_stairs.json +++ b/src/main/resources/data/mineralogy/recipe/phyllite_smooth_stairs.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - "xx ", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/phyllite/smooth" - } - }, - "result": { - "id": "mineralogy:phyllite_smooth_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + "xx ", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/phyllite/smooth" + }, + "result": { + "id": "mineralogy:phyllite_smooth_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/phyllite_smooth_wall.json b/src/main/resources/data/mineralogy/recipe/phyllite_smooth_wall.json index 2164790de..ba40dda53 100644 --- a/src/main/resources/data/mineralogy/recipe/phyllite_smooth_wall.json +++ b/src/main/resources/data/mineralogy/recipe/phyllite_smooth_wall.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/phyllite/smooth" - } - }, - "result": { - "id": "mineralogy:phyllite_smooth_wall", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/phyllite/smooth" + }, + "result": { + "id": "mineralogy:phyllite_smooth_wall", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/phyllite_stairs.json b/src/main/resources/data/mineralogy/recipe/phyllite_stairs.json index be53d6514..4edff6876 100644 --- a/src/main/resources/data/mineralogy/recipe/phyllite_stairs.json +++ b/src/main/resources/data/mineralogy/recipe/phyllite_stairs.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - "xx ", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/phyllite" - } - }, - "result": { - "id": "mineralogy:phyllite_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + "xx ", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/phyllite" + }, + "result": { + "id": "mineralogy:phyllite_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/phyllite_to_stone.json b/src/main/resources/data/mineralogy/recipe/phyllite_to_stone.json index 1e07ab1b8..df866fc5e 100644 --- a/src/main/resources/data/mineralogy/recipe/phyllite_to_stone.json +++ b/src/main/resources/data/mineralogy/recipe/phyllite_to_stone.json @@ -1,12 +1,10 @@ { - "type": "minecraft:smelting", - "category": "blocks", - "ingredient": { - "item": "mineralogy:phyllite" - }, - "result": { - "id": "minecraft:stone" - }, - "experience": 0.1, - "cookingtime": 200 + "type": "minecraft:smelting", + "category": "blocks", + "ingredient": "mineralogy:phyllite", + "result": { + "id": "minecraft:stone" + }, + "experience": 0.1, + "cookingtime": 200 } diff --git a/src/main/resources/data/mineralogy/recipe/phyllite_wall.json b/src/main/resources/data/mineralogy/recipe/phyllite_wall.json index 29f9cbe16..6c93a48d3 100644 --- a/src/main/resources/data/mineralogy/recipe/phyllite_wall.json +++ b/src/main/resources/data/mineralogy/recipe/phyllite_wall.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/phyllite" - } - }, - "result": { - "id": "mineralogy:phyllite_wall", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/phyllite" + }, + "result": { + "id": "mineralogy:phyllite_wall", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/quartzite_brick.json b/src/main/resources/data/mineralogy/recipe/quartzite_brick.json index 78ef69cdc..172142d39 100644 --- a/src/main/resources/data/mineralogy/recipe/quartzite_brick.json +++ b/src/main/resources/data/mineralogy/recipe/quartzite_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/quartzite" - } - }, - "result": { - "id": "mineralogy:quartzite_brick", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "#mineralogy:stones/quartzite" + }, + "result": { + "id": "mineralogy:quartzite_brick", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/quartzite_brick_block_polishing.json b/src/main/resources/data/mineralogy/recipe/quartzite_brick_block_polishing.json index b59e64d1c..3a6e75e55 100644 --- a/src/main/resources/data/mineralogy/recipe/quartzite_brick_block_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/quartzite_brick_block_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:quartzite_brick" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:quartzite_smooth_brick", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:quartzite_brick", + "#c:sands" + ], + "result": { + "id": "mineralogy:quartzite_smooth_brick", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/quartzite_brick_furnace.json b/src/main/resources/data/mineralogy/recipe/quartzite_brick_furnace.json index c45027980..87903fe4f 100644 --- a/src/main/resources/data/mineralogy/recipe/quartzite_brick_furnace.json +++ b/src/main/resources/data/mineralogy/recipe/quartzite_brick_furnace.json @@ -1,22 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "xxx", - "xyx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:slabs/quartzite/brick" - }, - "y": { - "item": "minecraft:furnace" - } - }, - "result": { - "id": "mineralogy:quartzite_brick_furnace", - "count": 1 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "xxx", + "xyx", + "xxx" + ], + "key": { + "x": "#mineralogy:slabs/quartzite/brick", + "y": "minecraft:furnace" + }, + "result": { + "id": "mineralogy:quartzite_brick_furnace", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/quartzite_brick_slab.json b/src/main/resources/data/mineralogy/recipe/quartzite_brick_slab.json index af447f91b..f36a90970 100644 --- a/src/main/resources/data/mineralogy/recipe/quartzite_brick_slab.json +++ b/src/main/resources/data/mineralogy/recipe/quartzite_brick_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:quartzite_brick" - } - }, - "result": { - "id": "mineralogy:quartzite_brick_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:quartzite_brick" + }, + "result": { + "id": "mineralogy:quartzite_brick_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/quartzite_brick_slab_polishing.json b/src/main/resources/data/mineralogy/recipe/quartzite_brick_slab_polishing.json index 52036f420..5f079ab4a 100644 --- a/src/main/resources/data/mineralogy/recipe/quartzite_brick_slab_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/quartzite_brick_slab_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:quartzite_brick_slab" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:quartzite_smooth_brick_slab", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:quartzite_brick_slab", + "#c:sands" + ], + "result": { + "id": "mineralogy:quartzite_smooth_brick_slab", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/quartzite_brick_slab_recombination.json b/src/main/resources/data/mineralogy/recipe/quartzite_brick_slab_recombination.json index 3356b0ebc..34ad8b925 100644 --- a/src/main/resources/data/mineralogy/recipe/quartzite_brick_slab_recombination.json +++ b/src/main/resources/data/mineralogy/recipe/quartzite_brick_slab_recombination.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:quartzite_brick_slab" - }, - { - "item": "mineralogy:quartzite_brick_slab" - } - ], - "result": { - "id": "mineralogy:quartzite_brick", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:quartzite_brick_slab", + "mineralogy:quartzite_brick_slab" + ], + "result": { + "id": "mineralogy:quartzite_brick", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/quartzite_brick_stairs.json b/src/main/resources/data/mineralogy/recipe/quartzite_brick_stairs.json index 861dbadbb..ca0863466 100644 --- a/src/main/resources/data/mineralogy/recipe/quartzite_brick_stairs.json +++ b/src/main/resources/data/mineralogy/recipe/quartzite_brick_stairs.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - "xx ", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/quartzite/brick" - } - }, - "result": { - "id": "mineralogy:quartzite_brick_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + "xx ", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/quartzite/brick" + }, + "result": { + "id": "mineralogy:quartzite_brick_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/quartzite_brick_stairs_polishing.json b/src/main/resources/data/mineralogy/recipe/quartzite_brick_stairs_polishing.json index cbbddc12a..a69d06e66 100644 --- a/src/main/resources/data/mineralogy/recipe/quartzite_brick_stairs_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/quartzite_brick_stairs_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:quartzite_brick_stairs" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:quartzite_smooth_brick_stairs", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:quartzite_brick_stairs", + "#c:sands" + ], + "result": { + "id": "mineralogy:quartzite_smooth_brick_stairs", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/quartzite_brick_wall.json b/src/main/resources/data/mineralogy/recipe/quartzite_brick_wall.json index 7b7fdbedb..4beb09067 100644 --- a/src/main/resources/data/mineralogy/recipe/quartzite_brick_wall.json +++ b/src/main/resources/data/mineralogy/recipe/quartzite_brick_wall.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/quartzite/brick" - } - }, - "result": { - "id": "mineralogy:quartzite_brick_wall", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/quartzite/brick" + }, + "result": { + "id": "mineralogy:quartzite_brick_wall", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/quartzite_brick_wall_polishing.json b/src/main/resources/data/mineralogy/recipe/quartzite_brick_wall_polishing.json index 456af5cbb..e34f10079 100644 --- a/src/main/resources/data/mineralogy/recipe/quartzite_brick_wall_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/quartzite_brick_wall_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:quartzite_brick_wall" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:quartzite_smooth_brick_wall", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:quartzite_brick_wall", + "#c:sands" + ], + "result": { + "id": "mineralogy:quartzite_smooth_brick_wall", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/quartzite_cobblestone.json b/src/main/resources/data/mineralogy/recipe/quartzite_cobblestone.json index 1b6407671..60b71809a 100644 --- a/src/main/resources/data/mineralogy/recipe/quartzite_cobblestone.json +++ b/src/main/resources/data/mineralogy/recipe/quartzite_cobblestone.json @@ -1,22 +1,14 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "tag": "mineralogy:stones/quartzite" - }, - { - "tag": "mineralogy:stones/quartzite" - }, - { - "item": "minecraft:gravel" - }, - { - "item": "minecraft:gravel" - } - ], - "result": { - "id": "minecraft:cobblestone", - "count": 4 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "#mineralogy:stones/quartzite", + "#mineralogy:stones/quartzite", + "minecraft:gravel", + "minecraft:gravel" + ], + "result": { + "id": "minecraft:cobblestone", + "count": 4 + } } diff --git a/src/main/resources/data/mineralogy/recipe/quartzite_furnace.json b/src/main/resources/data/mineralogy/recipe/quartzite_furnace.json index 55755d5bf..81e94ce7a 100644 --- a/src/main/resources/data/mineralogy/recipe/quartzite_furnace.json +++ b/src/main/resources/data/mineralogy/recipe/quartzite_furnace.json @@ -1,22 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "xxx", - "xyx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:slabs/quartzite" - }, - "y": { - "item": "minecraft:furnace" - } - }, - "result": { - "id": "mineralogy:quartzite_furnace", - "count": 1 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "xxx", + "xyx", + "xxx" + ], + "key": { + "x": "#mineralogy:slabs/quartzite", + "y": "minecraft:furnace" + }, + "result": { + "id": "mineralogy:quartzite_furnace", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/quartzite_polished_brick_slab_recombination.json b/src/main/resources/data/mineralogy/recipe/quartzite_polished_brick_slab_recombination.json index bdbc633f8..f7d749a59 100644 --- a/src/main/resources/data/mineralogy/recipe/quartzite_polished_brick_slab_recombination.json +++ b/src/main/resources/data/mineralogy/recipe/quartzite_polished_brick_slab_recombination.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:quartzite_smooth_brick_slab" - }, - { - "item": "mineralogy:quartzite_smooth_brick_slab" - } - ], - "result": { - "id": "mineralogy:quartzite_smooth_brick", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:quartzite_smooth_brick_slab", + "mineralogy:quartzite_smooth_brick_slab" + ], + "result": { + "id": "mineralogy:quartzite_smooth_brick", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/quartzite_polished_slab_recombination.json b/src/main/resources/data/mineralogy/recipe/quartzite_polished_slab_recombination.json index 33e5bfeb3..5d1fef495 100644 --- a/src/main/resources/data/mineralogy/recipe/quartzite_polished_slab_recombination.json +++ b/src/main/resources/data/mineralogy/recipe/quartzite_polished_slab_recombination.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:quartzite_smooth_slab" - }, - { - "item": "mineralogy:quartzite_smooth_slab" - } - ], - "result": { - "id": "mineralogy:quartzite_smooth", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:quartzite_smooth_slab", + "mineralogy:quartzite_smooth_slab" + ], + "result": { + "id": "mineralogy:quartzite_smooth", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/quartzite_polished_slabs_to_brick.json b/src/main/resources/data/mineralogy/recipe/quartzite_polished_slabs_to_brick.json index ed2eb510e..d3f4e769e 100644 --- a/src/main/resources/data/mineralogy/recipe/quartzite_polished_slabs_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/quartzite_polished_slabs_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:quartzite_smooth_slab" - } - }, - "result": { - "id": "mineralogy:quartzite_smooth_brick_slab", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:quartzite_smooth_slab" + }, + "result": { + "id": "mineralogy:quartzite_smooth_brick_slab", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/quartzite_polished_stairs_to_brick.json b/src/main/resources/data/mineralogy/recipe/quartzite_polished_stairs_to_brick.json index de145243e..e7d11c629 100644 --- a/src/main/resources/data/mineralogy/recipe/quartzite_polished_stairs_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/quartzite_polished_stairs_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:quartzite_smooth_stairs" - } - }, - "result": { - "id": "mineralogy:quartzite_smooth_brick_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:quartzite_smooth_stairs" + }, + "result": { + "id": "mineralogy:quartzite_smooth_brick_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/quartzite_polished_walls_to_brick.json b/src/main/resources/data/mineralogy/recipe/quartzite_polished_walls_to_brick.json index 3b590defc..e4c7bdd45 100644 --- a/src/main/resources/data/mineralogy/recipe/quartzite_polished_walls_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/quartzite_polished_walls_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:quartzite_smooth_wall" - } - }, - "result": { - "id": "mineralogy:quartzite_smooth_brick_wall", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:quartzite_smooth_wall" + }, + "result": { + "id": "mineralogy:quartzite_smooth_brick_wall", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/quartzite_raw_slab_polishing.json b/src/main/resources/data/mineralogy/recipe/quartzite_raw_slab_polishing.json index c9ae63884..c7ac993c3 100644 --- a/src/main/resources/data/mineralogy/recipe/quartzite_raw_slab_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/quartzite_raw_slab_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:quartzite_slab" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:quartzite_smooth_slab", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:quartzite_slab", + "#c:sands" + ], + "result": { + "id": "mineralogy:quartzite_smooth_slab", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/quartzite_raw_slab_recombination.json b/src/main/resources/data/mineralogy/recipe/quartzite_raw_slab_recombination.json index b64b25091..9c905b5b1 100644 --- a/src/main/resources/data/mineralogy/recipe/quartzite_raw_slab_recombination.json +++ b/src/main/resources/data/mineralogy/recipe/quartzite_raw_slab_recombination.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:quartzite_slab" - }, - { - "item": "mineralogy:quartzite_slab" - } - ], - "result": { - "id": "mineralogy:quartzite", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:quartzite_slab", + "mineralogy:quartzite_slab" + ], + "result": { + "id": "mineralogy:quartzite", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/quartzite_raw_slabs_to_brick.json b/src/main/resources/data/mineralogy/recipe/quartzite_raw_slabs_to_brick.json index e2e99fa72..41ae93f75 100644 --- a/src/main/resources/data/mineralogy/recipe/quartzite_raw_slabs_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/quartzite_raw_slabs_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:quartzite_slab" - } - }, - "result": { - "id": "mineralogy:quartzite_brick_slab", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:quartzite_slab" + }, + "result": { + "id": "mineralogy:quartzite_brick_slab", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/quartzite_raw_stairs_polishing.json b/src/main/resources/data/mineralogy/recipe/quartzite_raw_stairs_polishing.json index 4bc789f6e..4a39084bf 100644 --- a/src/main/resources/data/mineralogy/recipe/quartzite_raw_stairs_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/quartzite_raw_stairs_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:quartzite_stairs" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:quartzite_smooth_stairs", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:quartzite_stairs", + "#c:sands" + ], + "result": { + "id": "mineralogy:quartzite_smooth_stairs", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/quartzite_raw_stairs_to_brick.json b/src/main/resources/data/mineralogy/recipe/quartzite_raw_stairs_to_brick.json index 3807730f7..1e75b3a47 100644 --- a/src/main/resources/data/mineralogy/recipe/quartzite_raw_stairs_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/quartzite_raw_stairs_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:quartzite_stairs" - } - }, - "result": { - "id": "mineralogy:quartzite_brick_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:quartzite_stairs" + }, + "result": { + "id": "mineralogy:quartzite_brick_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/quartzite_raw_wall_polishing.json b/src/main/resources/data/mineralogy/recipe/quartzite_raw_wall_polishing.json index 371e7c85f..8af0b1f7c 100644 --- a/src/main/resources/data/mineralogy/recipe/quartzite_raw_wall_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/quartzite_raw_wall_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:quartzite_wall" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:quartzite_smooth_wall", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:quartzite_wall", + "#c:sands" + ], + "result": { + "id": "mineralogy:quartzite_smooth_wall", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/quartzite_raw_walls_to_brick.json b/src/main/resources/data/mineralogy/recipe/quartzite_raw_walls_to_brick.json index c9a8fe3a5..02e723ad4 100644 --- a/src/main/resources/data/mineralogy/recipe/quartzite_raw_walls_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/quartzite_raw_walls_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:quartzite_wall" - } - }, - "result": { - "id": "mineralogy:quartzite_brick_wall", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:quartzite_wall" + }, + "result": { + "id": "mineralogy:quartzite_brick_wall", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/quartzite_relief_axe.json b/src/main/resources/data/mineralogy/recipe/quartzite_relief_axe.json index 524aad419..27a948835 100644 --- a/src/main/resources/data/mineralogy/recipe/quartzite_relief_axe.json +++ b/src/main/resources/data/mineralogy/recipe/quartzite_relief_axe.json @@ -1,37 +1,19 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:quartzite_relief_blank" - }, - { - "item": "mineralogy:quartzite_relief_blank" - }, - { - "item": "mineralogy:quartzite_relief_blank" - }, - { - "item": "mineralogy:quartzite_relief_blank" - }, - { - "item": "mineralogy:quartzite_relief_blank" - }, - { - "item": "mineralogy:quartzite_relief_blank" - }, - { - "item": "mineralogy:quartzite_relief_blank" - }, - { - "item": "mineralogy:quartzite_relief_blank" - }, - { - "item": "minecraft:stone_axe" - } - ], - "result": { - "id": "mineralogy:quartzite_relief_axe", - "count": 8 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:quartzite_relief_blank", + "mineralogy:quartzite_relief_blank", + "mineralogy:quartzite_relief_blank", + "mineralogy:quartzite_relief_blank", + "mineralogy:quartzite_relief_blank", + "mineralogy:quartzite_relief_blank", + "mineralogy:quartzite_relief_blank", + "mineralogy:quartzite_relief_blank", + "minecraft:stone_axe" + ], + "result": { + "id": "mineralogy:quartzite_relief_axe", + "count": 8 + } } diff --git a/src/main/resources/data/mineralogy/recipe/quartzite_relief_blank.json b/src/main/resources/data/mineralogy/recipe/quartzite_relief_blank.json index 78baed596..0f519bb93 100644 --- a/src/main/resources/data/mineralogy/recipe/quartzite_relief_blank.json +++ b/src/main/resources/data/mineralogy/recipe/quartzite_relief_blank.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx", - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:quartzite_smooth" - } - }, - "result": { - "id": "mineralogy:quartzite_relief_blank", - "count": 16 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx", + "xxx" + ], + "key": { + "x": "mineralogy:quartzite_smooth" + }, + "result": { + "id": "mineralogy:quartzite_relief_blank", + "count": 16 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/quartzite_relief_cross.json b/src/main/resources/data/mineralogy/recipe/quartzite_relief_cross.json index 2c6710a07..694874285 100644 --- a/src/main/resources/data/mineralogy/recipe/quartzite_relief_cross.json +++ b/src/main/resources/data/mineralogy/recipe/quartzite_relief_cross.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x x", - " ", - "x x" - ], - "key": { - "x": { - "item": "mineralogy:quartzite_relief_blank" - } - }, - "result": { - "id": "mineralogy:quartzite_relief_cross", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x x", + " ", + "x x" + ], + "key": { + "x": "mineralogy:quartzite_relief_blank" + }, + "result": { + "id": "mineralogy:quartzite_relief_cross", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/quartzite_relief_hammer.json b/src/main/resources/data/mineralogy/recipe/quartzite_relief_hammer.json index 660ba3136..cf9e28836 100644 --- a/src/main/resources/data/mineralogy/recipe/quartzite_relief_hammer.json +++ b/src/main/resources/data/mineralogy/recipe/quartzite_relief_hammer.json @@ -1,25 +1,19 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "zxz", - "zyz", - "zzz" - ], - "key": { - "x": { - "item": "mineralogy:quartzite_smooth" - }, - "y": { - "item": "minecraft:stick" - }, - "z": { - "item": "mineralogy:quartzite_relief_blank" - } - }, - "result": { - "id": "mineralogy:quartzite_relief_hammer", - "count": 7 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "zxz", + "zyz", + "zzz" + ], + "key": { + "x": "mineralogy:quartzite_smooth", + "y": "minecraft:stick", + "z": "mineralogy:quartzite_relief_blank" + }, + "result": { + "id": "mineralogy:quartzite_relief_hammer", + "count": 7 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/quartzite_relief_hoe.json b/src/main/resources/data/mineralogy/recipe/quartzite_relief_hoe.json index 0503eb493..b073ccadf 100644 --- a/src/main/resources/data/mineralogy/recipe/quartzite_relief_hoe.json +++ b/src/main/resources/data/mineralogy/recipe/quartzite_relief_hoe.json @@ -1,37 +1,19 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:quartzite_relief_blank" - }, - { - "item": "mineralogy:quartzite_relief_blank" - }, - { - "item": "mineralogy:quartzite_relief_blank" - }, - { - "item": "mineralogy:quartzite_relief_blank" - }, - { - "item": "mineralogy:quartzite_relief_blank" - }, - { - "item": "mineralogy:quartzite_relief_blank" - }, - { - "item": "mineralogy:quartzite_relief_blank" - }, - { - "item": "mineralogy:quartzite_relief_blank" - }, - { - "item": "minecraft:stone_hoe" - } - ], - "result": { - "id": "mineralogy:quartzite_relief_hoe", - "count": 8 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:quartzite_relief_blank", + "mineralogy:quartzite_relief_blank", + "mineralogy:quartzite_relief_blank", + "mineralogy:quartzite_relief_blank", + "mineralogy:quartzite_relief_blank", + "mineralogy:quartzite_relief_blank", + "mineralogy:quartzite_relief_blank", + "mineralogy:quartzite_relief_blank", + "minecraft:stone_hoe" + ], + "result": { + "id": "mineralogy:quartzite_relief_hoe", + "count": 8 + } } diff --git a/src/main/resources/data/mineralogy/recipe/quartzite_relief_horizontal.json b/src/main/resources/data/mineralogy/recipe/quartzite_relief_horizontal.json index 8cfc1ed64..da28881e4 100644 --- a/src/main/resources/data/mineralogy/recipe/quartzite_relief_horizontal.json +++ b/src/main/resources/data/mineralogy/recipe/quartzite_relief_horizontal.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:quartzite_relief_blank" - } - }, - "result": { - "id": "mineralogy:quartzite_relief_horizontal", - "count": 3 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:quartzite_relief_blank" + }, + "result": { + "id": "mineralogy:quartzite_relief_horizontal", + "count": 3 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/quartzite_relief_i.json b/src/main/resources/data/mineralogy/recipe/quartzite_relief_i.json index 22f199dae..903071c1a 100644 --- a/src/main/resources/data/mineralogy/recipe/quartzite_relief_i.json +++ b/src/main/resources/data/mineralogy/recipe/quartzite_relief_i.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - " x ", - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:quartzite_relief_blank" - } - }, - "result": { - "id": "mineralogy:quartzite_relief_i", - "count": 7 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + " x ", + "xxx" + ], + "key": { + "x": "mineralogy:quartzite_relief_blank" + }, + "result": { + "id": "mineralogy:quartzite_relief_i", + "count": 7 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/quartzite_relief_left.json b/src/main/resources/data/mineralogy/recipe/quartzite_relief_left.json index e7fd7b882..b45fd187d 100644 --- a/src/main/resources/data/mineralogy/recipe/quartzite_relief_left.json +++ b/src/main/resources/data/mineralogy/recipe/quartzite_relief_left.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - " x ", - " x" - ], - "key": { - "x": { - "item": "mineralogy:quartzite_relief_blank" - } - }, - "result": { - "id": "mineralogy:quartzite_relief_left", - "count": 3 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + " x ", + " x" + ], + "key": { + "x": "mineralogy:quartzite_relief_blank" + }, + "result": { + "id": "mineralogy:quartzite_relief_left", + "count": 3 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/quartzite_relief_pickaxe.json b/src/main/resources/data/mineralogy/recipe/quartzite_relief_pickaxe.json index 2e217a032..57d928ccb 100644 --- a/src/main/resources/data/mineralogy/recipe/quartzite_relief_pickaxe.json +++ b/src/main/resources/data/mineralogy/recipe/quartzite_relief_pickaxe.json @@ -1,37 +1,19 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:quartzite_relief_blank" - }, - { - "item": "mineralogy:quartzite_relief_blank" - }, - { - "item": "mineralogy:quartzite_relief_blank" - }, - { - "item": "mineralogy:quartzite_relief_blank" - }, - { - "item": "mineralogy:quartzite_relief_blank" - }, - { - "item": "mineralogy:quartzite_relief_blank" - }, - { - "item": "mineralogy:quartzite_relief_blank" - }, - { - "item": "mineralogy:quartzite_relief_blank" - }, - { - "item": "minecraft:stone_pickaxe" - } - ], - "result": { - "id": "mineralogy:quartzite_relief_pickaxe", - "count": 8 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:quartzite_relief_blank", + "mineralogy:quartzite_relief_blank", + "mineralogy:quartzite_relief_blank", + "mineralogy:quartzite_relief_blank", + "mineralogy:quartzite_relief_blank", + "mineralogy:quartzite_relief_blank", + "mineralogy:quartzite_relief_blank", + "mineralogy:quartzite_relief_blank", + "minecraft:stone_pickaxe" + ], + "result": { + "id": "mineralogy:quartzite_relief_pickaxe", + "count": 8 + } } diff --git a/src/main/resources/data/mineralogy/recipe/quartzite_relief_plus.json b/src/main/resources/data/mineralogy/recipe/quartzite_relief_plus.json index fc137773a..b4a1b6a21 100644 --- a/src/main/resources/data/mineralogy/recipe/quartzite_relief_plus.json +++ b/src/main/resources/data/mineralogy/recipe/quartzite_relief_plus.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - " x ", - "xxx", - " x " - ], - "key": { - "x": { - "item": "mineralogy:quartzite_relief_blank" - } - }, - "result": { - "id": "mineralogy:quartzite_relief_plus", - "count": 5 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + " x ", + "xxx", + " x " + ], + "key": { + "x": "mineralogy:quartzite_relief_blank" + }, + "result": { + "id": "mineralogy:quartzite_relief_plus", + "count": 5 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/quartzite_relief_right.json b/src/main/resources/data/mineralogy/recipe/quartzite_relief_right.json index ae8ab101d..77d513ff1 100644 --- a/src/main/resources/data/mineralogy/recipe/quartzite_relief_right.json +++ b/src/main/resources/data/mineralogy/recipe/quartzite_relief_right.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:quartzite_relief_left" - }, - { - "item": "mineralogy:quartzite_relief_left" - } - ], - "result": { - "id": "mineralogy:quartzite_relief_right", - "count": 2 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:quartzite_relief_left", + "mineralogy:quartzite_relief_left" + ], + "result": { + "id": "mineralogy:quartzite_relief_right", + "count": 2 + } } diff --git a/src/main/resources/data/mineralogy/recipe/quartzite_relief_sword.json b/src/main/resources/data/mineralogy/recipe/quartzite_relief_sword.json index aacb88a92..e060f8bcd 100644 --- a/src/main/resources/data/mineralogy/recipe/quartzite_relief_sword.json +++ b/src/main/resources/data/mineralogy/recipe/quartzite_relief_sword.json @@ -1,37 +1,19 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:quartzite_relief_blank" - }, - { - "item": "mineralogy:quartzite_relief_blank" - }, - { - "item": "mineralogy:quartzite_relief_blank" - }, - { - "item": "mineralogy:quartzite_relief_blank" - }, - { - "item": "mineralogy:quartzite_relief_blank" - }, - { - "item": "mineralogy:quartzite_relief_blank" - }, - { - "item": "mineralogy:quartzite_relief_blank" - }, - { - "item": "mineralogy:quartzite_relief_blank" - }, - { - "item": "minecraft:stone_sword" - } - ], - "result": { - "id": "mineralogy:quartzite_relief_sword", - "count": 8 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:quartzite_relief_blank", + "mineralogy:quartzite_relief_blank", + "mineralogy:quartzite_relief_blank", + "mineralogy:quartzite_relief_blank", + "mineralogy:quartzite_relief_blank", + "mineralogy:quartzite_relief_blank", + "mineralogy:quartzite_relief_blank", + "mineralogy:quartzite_relief_blank", + "minecraft:stone_sword" + ], + "result": { + "id": "mineralogy:quartzite_relief_sword", + "count": 8 + } } diff --git a/src/main/resources/data/mineralogy/recipe/quartzite_relief_vertical.json b/src/main/resources/data/mineralogy/recipe/quartzite_relief_vertical.json index 729192dff..bc44e1e75 100644 --- a/src/main/resources/data/mineralogy/recipe/quartzite_relief_vertical.json +++ b/src/main/resources/data/mineralogy/recipe/quartzite_relief_vertical.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x", - "x", - "x" - ], - "key": { - "x": { - "item": "mineralogy:quartzite_relief_blank" - } - }, - "result": { - "id": "mineralogy:quartzite_relief_vertical", - "count": 3 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x", + "x", + "x" + ], + "key": { + "x": "mineralogy:quartzite_relief_blank" + }, + "result": { + "id": "mineralogy:quartzite_relief_vertical", + "count": 3 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/quartzite_slab.json b/src/main/resources/data/mineralogy/recipe/quartzite_slab.json index 585dc4f48..e26603c0d 100644 --- a/src/main/resources/data/mineralogy/recipe/quartzite_slab.json +++ b/src/main/resources/data/mineralogy/recipe/quartzite_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:quartzite" - } - }, - "result": { - "id": "mineralogy:quartzite_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:quartzite" + }, + "result": { + "id": "mineralogy:quartzite_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/quartzite_smooth.json b/src/main/resources/data/mineralogy/recipe/quartzite_smooth.json index 3c964154e..eb2f9ef12 100644 --- a/src/main/resources/data/mineralogy/recipe/quartzite_smooth.json +++ b/src/main/resources/data/mineralogy/recipe/quartzite_smooth.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "tag": "mineralogy:stones/quartzite" - }, - { - "item": "minecraft:sand" - } - ], - "result": { - "id": "mineralogy:quartzite_smooth", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "#mineralogy:stones/quartzite", + "minecraft:sand" + ], + "result": { + "id": "mineralogy:quartzite_smooth", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/quartzite_smooth_brick.json b/src/main/resources/data/mineralogy/recipe/quartzite_smooth_brick.json index d230806d6..945b97db9 100644 --- a/src/main/resources/data/mineralogy/recipe/quartzite_smooth_brick.json +++ b/src/main/resources/data/mineralogy/recipe/quartzite_smooth_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/quartzite/smooth" - } - }, - "result": { - "id": "mineralogy:quartzite_smooth_brick", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "#mineralogy:stones/quartzite/smooth" + }, + "result": { + "id": "mineralogy:quartzite_smooth_brick", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/quartzite_smooth_brick_furnace.json b/src/main/resources/data/mineralogy/recipe/quartzite_smooth_brick_furnace.json index 05af07149..19a8fafca 100644 --- a/src/main/resources/data/mineralogy/recipe/quartzite_smooth_brick_furnace.json +++ b/src/main/resources/data/mineralogy/recipe/quartzite_smooth_brick_furnace.json @@ -1,22 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "xxx", - "xyx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:slabs/quartzite/smooth_brick" - }, - "y": { - "item": "minecraft:furnace" - } - }, - "result": { - "id": "mineralogy:quartzite_smooth_brick_furnace", - "count": 1 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "xxx", + "xyx", + "xxx" + ], + "key": { + "x": "#mineralogy:slabs/quartzite/smooth_brick", + "y": "minecraft:furnace" + }, + "result": { + "id": "mineralogy:quartzite_smooth_brick_furnace", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/quartzite_smooth_brick_slab.json b/src/main/resources/data/mineralogy/recipe/quartzite_smooth_brick_slab.json index b95dad1e0..e5092d67f 100644 --- a/src/main/resources/data/mineralogy/recipe/quartzite_smooth_brick_slab.json +++ b/src/main/resources/data/mineralogy/recipe/quartzite_smooth_brick_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:quartzite_smooth_brick" - } - }, - "result": { - "id": "mineralogy:quartzite_smooth_brick_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:quartzite_smooth_brick" + }, + "result": { + "id": "mineralogy:quartzite_smooth_brick_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/quartzite_smooth_brick_stairs.json b/src/main/resources/data/mineralogy/recipe/quartzite_smooth_brick_stairs.json index 59b7d3bf8..d9de5a366 100644 --- a/src/main/resources/data/mineralogy/recipe/quartzite_smooth_brick_stairs.json +++ b/src/main/resources/data/mineralogy/recipe/quartzite_smooth_brick_stairs.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - "xx ", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/quartzite/smooth_brick" - } - }, - "result": { - "id": "mineralogy:quartzite_smooth_brick_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + "xx ", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/quartzite/smooth_brick" + }, + "result": { + "id": "mineralogy:quartzite_smooth_brick_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/quartzite_smooth_brick_wall.json b/src/main/resources/data/mineralogy/recipe/quartzite_smooth_brick_wall.json index 9cd867d7c..8c1db3042 100644 --- a/src/main/resources/data/mineralogy/recipe/quartzite_smooth_brick_wall.json +++ b/src/main/resources/data/mineralogy/recipe/quartzite_smooth_brick_wall.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/quartzite/smooth_brick" - } - }, - "result": { - "id": "mineralogy:quartzite_smooth_brick_wall", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/quartzite/smooth_brick" + }, + "result": { + "id": "mineralogy:quartzite_smooth_brick_wall", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/quartzite_smooth_furnace.json b/src/main/resources/data/mineralogy/recipe/quartzite_smooth_furnace.json index cab11fbed..6f8c68652 100644 --- a/src/main/resources/data/mineralogy/recipe/quartzite_smooth_furnace.json +++ b/src/main/resources/data/mineralogy/recipe/quartzite_smooth_furnace.json @@ -1,22 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "xxx", - "xyx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:slabs/quartzite/smooth" - }, - "y": { - "item": "minecraft:furnace" - } - }, - "result": { - "id": "mineralogy:quartzite_smooth_furnace", - "count": 1 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "xxx", + "xyx", + "xxx" + ], + "key": { + "x": "#mineralogy:slabs/quartzite/smooth", + "y": "minecraft:furnace" + }, + "result": { + "id": "mineralogy:quartzite_smooth_furnace", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/quartzite_smooth_slab.json b/src/main/resources/data/mineralogy/recipe/quartzite_smooth_slab.json index eb50be176..37d272d4f 100644 --- a/src/main/resources/data/mineralogy/recipe/quartzite_smooth_slab.json +++ b/src/main/resources/data/mineralogy/recipe/quartzite_smooth_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:quartzite_smooth" - } - }, - "result": { - "id": "mineralogy:quartzite_smooth_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:quartzite_smooth" + }, + "result": { + "id": "mineralogy:quartzite_smooth_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/quartzite_smooth_stairs.json b/src/main/resources/data/mineralogy/recipe/quartzite_smooth_stairs.json index 58955e716..ff8565eda 100644 --- a/src/main/resources/data/mineralogy/recipe/quartzite_smooth_stairs.json +++ b/src/main/resources/data/mineralogy/recipe/quartzite_smooth_stairs.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - "xx ", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/quartzite/smooth" - } - }, - "result": { - "id": "mineralogy:quartzite_smooth_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + "xx ", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/quartzite/smooth" + }, + "result": { + "id": "mineralogy:quartzite_smooth_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/quartzite_smooth_wall.json b/src/main/resources/data/mineralogy/recipe/quartzite_smooth_wall.json index 60d6f7ce6..db3464904 100644 --- a/src/main/resources/data/mineralogy/recipe/quartzite_smooth_wall.json +++ b/src/main/resources/data/mineralogy/recipe/quartzite_smooth_wall.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/quartzite/smooth" - } - }, - "result": { - "id": "mineralogy:quartzite_smooth_wall", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/quartzite/smooth" + }, + "result": { + "id": "mineralogy:quartzite_smooth_wall", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/quartzite_stairs.json b/src/main/resources/data/mineralogy/recipe/quartzite_stairs.json index 7ec1159eb..c5da82fda 100644 --- a/src/main/resources/data/mineralogy/recipe/quartzite_stairs.json +++ b/src/main/resources/data/mineralogy/recipe/quartzite_stairs.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - "xx ", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/quartzite" - } - }, - "result": { - "id": "mineralogy:quartzite_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + "xx ", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/quartzite" + }, + "result": { + "id": "mineralogy:quartzite_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/quartzite_to_stone.json b/src/main/resources/data/mineralogy/recipe/quartzite_to_stone.json index 644cfdb58..4d58a9629 100644 --- a/src/main/resources/data/mineralogy/recipe/quartzite_to_stone.json +++ b/src/main/resources/data/mineralogy/recipe/quartzite_to_stone.json @@ -1,12 +1,10 @@ { - "type": "minecraft:smelting", - "category": "blocks", - "ingredient": { - "item": "mineralogy:quartzite" - }, - "result": { - "id": "minecraft:stone" - }, - "experience": 0.1, - "cookingtime": 200 + "type": "minecraft:smelting", + "category": "blocks", + "ingredient": "mineralogy:quartzite", + "result": { + "id": "minecraft:stone" + }, + "experience": 0.1, + "cookingtime": 200 } diff --git a/src/main/resources/data/mineralogy/recipe/quartzite_wall.json b/src/main/resources/data/mineralogy/recipe/quartzite_wall.json index fbff45e54..132bfb77a 100644 --- a/src/main/resources/data/mineralogy/recipe/quartzite_wall.json +++ b/src/main/resources/data/mineralogy/recipe/quartzite_wall.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/quartzite" - } - }, - "result": { - "id": "mineralogy:quartzite_wall", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/quartzite" + }, + "result": { + "id": "mineralogy:quartzite_wall", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/rhyolite_brick.json b/src/main/resources/data/mineralogy/recipe/rhyolite_brick.json index 47186319a..6f7d35ec5 100644 --- a/src/main/resources/data/mineralogy/recipe/rhyolite_brick.json +++ b/src/main/resources/data/mineralogy/recipe/rhyolite_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/rhyolite" - } - }, - "result": { - "id": "mineralogy:rhyolite_brick", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "#mineralogy:stones/rhyolite" + }, + "result": { + "id": "mineralogy:rhyolite_brick", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/rhyolite_brick_block_polishing.json b/src/main/resources/data/mineralogy/recipe/rhyolite_brick_block_polishing.json index efbfdd6d9..20add5787 100644 --- a/src/main/resources/data/mineralogy/recipe/rhyolite_brick_block_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/rhyolite_brick_block_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:rhyolite_brick" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:rhyolite_smooth_brick", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:rhyolite_brick", + "#c:sands" + ], + "result": { + "id": "mineralogy:rhyolite_smooth_brick", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/rhyolite_brick_furnace.json b/src/main/resources/data/mineralogy/recipe/rhyolite_brick_furnace.json index 7737da541..469d7cccc 100644 --- a/src/main/resources/data/mineralogy/recipe/rhyolite_brick_furnace.json +++ b/src/main/resources/data/mineralogy/recipe/rhyolite_brick_furnace.json @@ -1,22 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "xxx", - "xyx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:slabs/rhyolite/brick" - }, - "y": { - "item": "minecraft:furnace" - } - }, - "result": { - "id": "mineralogy:rhyolite_brick_furnace", - "count": 1 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "xxx", + "xyx", + "xxx" + ], + "key": { + "x": "#mineralogy:slabs/rhyolite/brick", + "y": "minecraft:furnace" + }, + "result": { + "id": "mineralogy:rhyolite_brick_furnace", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/rhyolite_brick_slab.json b/src/main/resources/data/mineralogy/recipe/rhyolite_brick_slab.json index afe00fa97..99d4f78f3 100644 --- a/src/main/resources/data/mineralogy/recipe/rhyolite_brick_slab.json +++ b/src/main/resources/data/mineralogy/recipe/rhyolite_brick_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:rhyolite_brick" - } - }, - "result": { - "id": "mineralogy:rhyolite_brick_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:rhyolite_brick" + }, + "result": { + "id": "mineralogy:rhyolite_brick_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/rhyolite_brick_slab_polishing.json b/src/main/resources/data/mineralogy/recipe/rhyolite_brick_slab_polishing.json index 6ff2e52d8..aa0c76a0c 100644 --- a/src/main/resources/data/mineralogy/recipe/rhyolite_brick_slab_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/rhyolite_brick_slab_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:rhyolite_brick_slab" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:rhyolite_smooth_brick_slab", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:rhyolite_brick_slab", + "#c:sands" + ], + "result": { + "id": "mineralogy:rhyolite_smooth_brick_slab", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/rhyolite_brick_slab_recombination.json b/src/main/resources/data/mineralogy/recipe/rhyolite_brick_slab_recombination.json index b672c24a3..2b99a6b67 100644 --- a/src/main/resources/data/mineralogy/recipe/rhyolite_brick_slab_recombination.json +++ b/src/main/resources/data/mineralogy/recipe/rhyolite_brick_slab_recombination.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:rhyolite_brick_slab" - }, - { - "item": "mineralogy:rhyolite_brick_slab" - } - ], - "result": { - "id": "mineralogy:rhyolite_brick", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:rhyolite_brick_slab", + "mineralogy:rhyolite_brick_slab" + ], + "result": { + "id": "mineralogy:rhyolite_brick", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/rhyolite_brick_stairs.json b/src/main/resources/data/mineralogy/recipe/rhyolite_brick_stairs.json index 2fd946be5..43982396c 100644 --- a/src/main/resources/data/mineralogy/recipe/rhyolite_brick_stairs.json +++ b/src/main/resources/data/mineralogy/recipe/rhyolite_brick_stairs.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - "xx ", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/rhyolite/brick" - } - }, - "result": { - "id": "mineralogy:rhyolite_brick_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + "xx ", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/rhyolite/brick" + }, + "result": { + "id": "mineralogy:rhyolite_brick_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/rhyolite_brick_stairs_polishing.json b/src/main/resources/data/mineralogy/recipe/rhyolite_brick_stairs_polishing.json index 7c673487c..fd1c06bfb 100644 --- a/src/main/resources/data/mineralogy/recipe/rhyolite_brick_stairs_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/rhyolite_brick_stairs_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:rhyolite_brick_stairs" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:rhyolite_smooth_brick_stairs", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:rhyolite_brick_stairs", + "#c:sands" + ], + "result": { + "id": "mineralogy:rhyolite_smooth_brick_stairs", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/rhyolite_brick_wall.json b/src/main/resources/data/mineralogy/recipe/rhyolite_brick_wall.json index d7f696cdd..b6076cf70 100644 --- a/src/main/resources/data/mineralogy/recipe/rhyolite_brick_wall.json +++ b/src/main/resources/data/mineralogy/recipe/rhyolite_brick_wall.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/rhyolite/brick" - } - }, - "result": { - "id": "mineralogy:rhyolite_brick_wall", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/rhyolite/brick" + }, + "result": { + "id": "mineralogy:rhyolite_brick_wall", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/rhyolite_brick_wall_polishing.json b/src/main/resources/data/mineralogy/recipe/rhyolite_brick_wall_polishing.json index 2319c7a53..1bb22e474 100644 --- a/src/main/resources/data/mineralogy/recipe/rhyolite_brick_wall_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/rhyolite_brick_wall_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:rhyolite_brick_wall" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:rhyolite_smooth_brick_wall", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:rhyolite_brick_wall", + "#c:sands" + ], + "result": { + "id": "mineralogy:rhyolite_smooth_brick_wall", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/rhyolite_cobblestone.json b/src/main/resources/data/mineralogy/recipe/rhyolite_cobblestone.json index b603d4404..74a8c339d 100644 --- a/src/main/resources/data/mineralogy/recipe/rhyolite_cobblestone.json +++ b/src/main/resources/data/mineralogy/recipe/rhyolite_cobblestone.json @@ -1,22 +1,14 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "tag": "mineralogy:stones/rhyolite" - }, - { - "tag": "mineralogy:stones/rhyolite" - }, - { - "item": "minecraft:gravel" - }, - { - "item": "minecraft:gravel" - } - ], - "result": { - "id": "minecraft:cobblestone", - "count": 4 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "#mineralogy:stones/rhyolite", + "#mineralogy:stones/rhyolite", + "minecraft:gravel", + "minecraft:gravel" + ], + "result": { + "id": "minecraft:cobblestone", + "count": 4 + } } diff --git a/src/main/resources/data/mineralogy/recipe/rhyolite_furnace.json b/src/main/resources/data/mineralogy/recipe/rhyolite_furnace.json index 1ce909af2..b642b5d0e 100644 --- a/src/main/resources/data/mineralogy/recipe/rhyolite_furnace.json +++ b/src/main/resources/data/mineralogy/recipe/rhyolite_furnace.json @@ -1,22 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "xxx", - "xyx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:slabs/rhyolite" - }, - "y": { - "item": "minecraft:furnace" - } - }, - "result": { - "id": "mineralogy:rhyolite_furnace", - "count": 1 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "xxx", + "xyx", + "xxx" + ], + "key": { + "x": "#mineralogy:slabs/rhyolite", + "y": "minecraft:furnace" + }, + "result": { + "id": "mineralogy:rhyolite_furnace", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/rhyolite_polished_brick_slab_recombination.json b/src/main/resources/data/mineralogy/recipe/rhyolite_polished_brick_slab_recombination.json index dac6f7125..19a0d4c00 100644 --- a/src/main/resources/data/mineralogy/recipe/rhyolite_polished_brick_slab_recombination.json +++ b/src/main/resources/data/mineralogy/recipe/rhyolite_polished_brick_slab_recombination.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:rhyolite_smooth_brick_slab" - }, - { - "item": "mineralogy:rhyolite_smooth_brick_slab" - } - ], - "result": { - "id": "mineralogy:rhyolite_smooth_brick", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:rhyolite_smooth_brick_slab", + "mineralogy:rhyolite_smooth_brick_slab" + ], + "result": { + "id": "mineralogy:rhyolite_smooth_brick", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/rhyolite_polished_slab_recombination.json b/src/main/resources/data/mineralogy/recipe/rhyolite_polished_slab_recombination.json index 323992835..6acc9122f 100644 --- a/src/main/resources/data/mineralogy/recipe/rhyolite_polished_slab_recombination.json +++ b/src/main/resources/data/mineralogy/recipe/rhyolite_polished_slab_recombination.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:rhyolite_smooth_slab" - }, - { - "item": "mineralogy:rhyolite_smooth_slab" - } - ], - "result": { - "id": "mineralogy:rhyolite_smooth", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:rhyolite_smooth_slab", + "mineralogy:rhyolite_smooth_slab" + ], + "result": { + "id": "mineralogy:rhyolite_smooth", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/rhyolite_polished_slabs_to_brick.json b/src/main/resources/data/mineralogy/recipe/rhyolite_polished_slabs_to_brick.json index 24f654f7c..55c7892c2 100644 --- a/src/main/resources/data/mineralogy/recipe/rhyolite_polished_slabs_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/rhyolite_polished_slabs_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:rhyolite_smooth_slab" - } - }, - "result": { - "id": "mineralogy:rhyolite_smooth_brick_slab", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:rhyolite_smooth_slab" + }, + "result": { + "id": "mineralogy:rhyolite_smooth_brick_slab", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/rhyolite_polished_stairs_to_brick.json b/src/main/resources/data/mineralogy/recipe/rhyolite_polished_stairs_to_brick.json index c61368339..227f02928 100644 --- a/src/main/resources/data/mineralogy/recipe/rhyolite_polished_stairs_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/rhyolite_polished_stairs_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:rhyolite_smooth_stairs" - } - }, - "result": { - "id": "mineralogy:rhyolite_smooth_brick_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:rhyolite_smooth_stairs" + }, + "result": { + "id": "mineralogy:rhyolite_smooth_brick_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/rhyolite_polished_walls_to_brick.json b/src/main/resources/data/mineralogy/recipe/rhyolite_polished_walls_to_brick.json index 036c6d5c8..9e7df844d 100644 --- a/src/main/resources/data/mineralogy/recipe/rhyolite_polished_walls_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/rhyolite_polished_walls_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:rhyolite_smooth_wall" - } - }, - "result": { - "id": "mineralogy:rhyolite_smooth_brick_wall", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:rhyolite_smooth_wall" + }, + "result": { + "id": "mineralogy:rhyolite_smooth_brick_wall", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/rhyolite_raw_slab_polishing.json b/src/main/resources/data/mineralogy/recipe/rhyolite_raw_slab_polishing.json index 0ab672840..35ad08a8d 100644 --- a/src/main/resources/data/mineralogy/recipe/rhyolite_raw_slab_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/rhyolite_raw_slab_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:rhyolite_slab" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:rhyolite_smooth_slab", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:rhyolite_slab", + "#c:sands" + ], + "result": { + "id": "mineralogy:rhyolite_smooth_slab", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/rhyolite_raw_slab_recombination.json b/src/main/resources/data/mineralogy/recipe/rhyolite_raw_slab_recombination.json index 79b4c1ddb..4270d34bd 100644 --- a/src/main/resources/data/mineralogy/recipe/rhyolite_raw_slab_recombination.json +++ b/src/main/resources/data/mineralogy/recipe/rhyolite_raw_slab_recombination.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:rhyolite_slab" - }, - { - "item": "mineralogy:rhyolite_slab" - } - ], - "result": { - "id": "mineralogy:rhyolite", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:rhyolite_slab", + "mineralogy:rhyolite_slab" + ], + "result": { + "id": "mineralogy:rhyolite", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/rhyolite_raw_slabs_to_brick.json b/src/main/resources/data/mineralogy/recipe/rhyolite_raw_slabs_to_brick.json index 8d9e53e83..3eaa62669 100644 --- a/src/main/resources/data/mineralogy/recipe/rhyolite_raw_slabs_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/rhyolite_raw_slabs_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:rhyolite_slab" - } - }, - "result": { - "id": "mineralogy:rhyolite_brick_slab", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:rhyolite_slab" + }, + "result": { + "id": "mineralogy:rhyolite_brick_slab", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/rhyolite_raw_stairs_polishing.json b/src/main/resources/data/mineralogy/recipe/rhyolite_raw_stairs_polishing.json index 274de2ced..64d4dafc1 100644 --- a/src/main/resources/data/mineralogy/recipe/rhyolite_raw_stairs_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/rhyolite_raw_stairs_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:rhyolite_stairs" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:rhyolite_smooth_stairs", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:rhyolite_stairs", + "#c:sands" + ], + "result": { + "id": "mineralogy:rhyolite_smooth_stairs", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/rhyolite_raw_stairs_to_brick.json b/src/main/resources/data/mineralogy/recipe/rhyolite_raw_stairs_to_brick.json index bf0311895..8ad289b29 100644 --- a/src/main/resources/data/mineralogy/recipe/rhyolite_raw_stairs_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/rhyolite_raw_stairs_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:rhyolite_stairs" - } - }, - "result": { - "id": "mineralogy:rhyolite_brick_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:rhyolite_stairs" + }, + "result": { + "id": "mineralogy:rhyolite_brick_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/rhyolite_raw_wall_polishing.json b/src/main/resources/data/mineralogy/recipe/rhyolite_raw_wall_polishing.json index 4dfb722fb..4035b0917 100644 --- a/src/main/resources/data/mineralogy/recipe/rhyolite_raw_wall_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/rhyolite_raw_wall_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:rhyolite_wall" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:rhyolite_smooth_wall", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:rhyolite_wall", + "#c:sands" + ], + "result": { + "id": "mineralogy:rhyolite_smooth_wall", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/rhyolite_raw_walls_to_brick.json b/src/main/resources/data/mineralogy/recipe/rhyolite_raw_walls_to_brick.json index 6a0dd6f74..8addbe7d7 100644 --- a/src/main/resources/data/mineralogy/recipe/rhyolite_raw_walls_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/rhyolite_raw_walls_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:rhyolite_wall" - } - }, - "result": { - "id": "mineralogy:rhyolite_brick_wall", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:rhyolite_wall" + }, + "result": { + "id": "mineralogy:rhyolite_brick_wall", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/rhyolite_relief_axe.json b/src/main/resources/data/mineralogy/recipe/rhyolite_relief_axe.json index ded3536e8..6fd679c6a 100644 --- a/src/main/resources/data/mineralogy/recipe/rhyolite_relief_axe.json +++ b/src/main/resources/data/mineralogy/recipe/rhyolite_relief_axe.json @@ -1,37 +1,19 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:rhyolite_relief_blank" - }, - { - "item": "mineralogy:rhyolite_relief_blank" - }, - { - "item": "mineralogy:rhyolite_relief_blank" - }, - { - "item": "mineralogy:rhyolite_relief_blank" - }, - { - "item": "mineralogy:rhyolite_relief_blank" - }, - { - "item": "mineralogy:rhyolite_relief_blank" - }, - { - "item": "mineralogy:rhyolite_relief_blank" - }, - { - "item": "mineralogy:rhyolite_relief_blank" - }, - { - "item": "minecraft:stone_axe" - } - ], - "result": { - "id": "mineralogy:rhyolite_relief_axe", - "count": 8 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:rhyolite_relief_blank", + "mineralogy:rhyolite_relief_blank", + "mineralogy:rhyolite_relief_blank", + "mineralogy:rhyolite_relief_blank", + "mineralogy:rhyolite_relief_blank", + "mineralogy:rhyolite_relief_blank", + "mineralogy:rhyolite_relief_blank", + "mineralogy:rhyolite_relief_blank", + "minecraft:stone_axe" + ], + "result": { + "id": "mineralogy:rhyolite_relief_axe", + "count": 8 + } } diff --git a/src/main/resources/data/mineralogy/recipe/rhyolite_relief_blank.json b/src/main/resources/data/mineralogy/recipe/rhyolite_relief_blank.json index 709aeeb1a..26edc7804 100644 --- a/src/main/resources/data/mineralogy/recipe/rhyolite_relief_blank.json +++ b/src/main/resources/data/mineralogy/recipe/rhyolite_relief_blank.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx", - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:rhyolite_smooth" - } - }, - "result": { - "id": "mineralogy:rhyolite_relief_blank", - "count": 16 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx", + "xxx" + ], + "key": { + "x": "mineralogy:rhyolite_smooth" + }, + "result": { + "id": "mineralogy:rhyolite_relief_blank", + "count": 16 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/rhyolite_relief_cross.json b/src/main/resources/data/mineralogy/recipe/rhyolite_relief_cross.json index c2b1c5ff3..54895d36f 100644 --- a/src/main/resources/data/mineralogy/recipe/rhyolite_relief_cross.json +++ b/src/main/resources/data/mineralogy/recipe/rhyolite_relief_cross.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x x", - " ", - "x x" - ], - "key": { - "x": { - "item": "mineralogy:rhyolite_relief_blank" - } - }, - "result": { - "id": "mineralogy:rhyolite_relief_cross", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x x", + " ", + "x x" + ], + "key": { + "x": "mineralogy:rhyolite_relief_blank" + }, + "result": { + "id": "mineralogy:rhyolite_relief_cross", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/rhyolite_relief_hammer.json b/src/main/resources/data/mineralogy/recipe/rhyolite_relief_hammer.json index 51ccf4a74..904225d55 100644 --- a/src/main/resources/data/mineralogy/recipe/rhyolite_relief_hammer.json +++ b/src/main/resources/data/mineralogy/recipe/rhyolite_relief_hammer.json @@ -1,25 +1,19 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "zxz", - "zyz", - "zzz" - ], - "key": { - "x": { - "item": "mineralogy:rhyolite_smooth" - }, - "y": { - "item": "minecraft:stick" - }, - "z": { - "item": "mineralogy:rhyolite_relief_blank" - } - }, - "result": { - "id": "mineralogy:rhyolite_relief_hammer", - "count": 7 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "zxz", + "zyz", + "zzz" + ], + "key": { + "x": "mineralogy:rhyolite_smooth", + "y": "minecraft:stick", + "z": "mineralogy:rhyolite_relief_blank" + }, + "result": { + "id": "mineralogy:rhyolite_relief_hammer", + "count": 7 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/rhyolite_relief_hoe.json b/src/main/resources/data/mineralogy/recipe/rhyolite_relief_hoe.json index 8c4cc7539..7a8f8e58f 100644 --- a/src/main/resources/data/mineralogy/recipe/rhyolite_relief_hoe.json +++ b/src/main/resources/data/mineralogy/recipe/rhyolite_relief_hoe.json @@ -1,37 +1,19 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:rhyolite_relief_blank" - }, - { - "item": "mineralogy:rhyolite_relief_blank" - }, - { - "item": "mineralogy:rhyolite_relief_blank" - }, - { - "item": "mineralogy:rhyolite_relief_blank" - }, - { - "item": "mineralogy:rhyolite_relief_blank" - }, - { - "item": "mineralogy:rhyolite_relief_blank" - }, - { - "item": "mineralogy:rhyolite_relief_blank" - }, - { - "item": "mineralogy:rhyolite_relief_blank" - }, - { - "item": "minecraft:stone_hoe" - } - ], - "result": { - "id": "mineralogy:rhyolite_relief_hoe", - "count": 8 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:rhyolite_relief_blank", + "mineralogy:rhyolite_relief_blank", + "mineralogy:rhyolite_relief_blank", + "mineralogy:rhyolite_relief_blank", + "mineralogy:rhyolite_relief_blank", + "mineralogy:rhyolite_relief_blank", + "mineralogy:rhyolite_relief_blank", + "mineralogy:rhyolite_relief_blank", + "minecraft:stone_hoe" + ], + "result": { + "id": "mineralogy:rhyolite_relief_hoe", + "count": 8 + } } diff --git a/src/main/resources/data/mineralogy/recipe/rhyolite_relief_horizontal.json b/src/main/resources/data/mineralogy/recipe/rhyolite_relief_horizontal.json index 1d7e89acb..71446d27a 100644 --- a/src/main/resources/data/mineralogy/recipe/rhyolite_relief_horizontal.json +++ b/src/main/resources/data/mineralogy/recipe/rhyolite_relief_horizontal.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:rhyolite_relief_blank" - } - }, - "result": { - "id": "mineralogy:rhyolite_relief_horizontal", - "count": 3 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:rhyolite_relief_blank" + }, + "result": { + "id": "mineralogy:rhyolite_relief_horizontal", + "count": 3 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/rhyolite_relief_i.json b/src/main/resources/data/mineralogy/recipe/rhyolite_relief_i.json index 5a2b40fdd..835f89d6a 100644 --- a/src/main/resources/data/mineralogy/recipe/rhyolite_relief_i.json +++ b/src/main/resources/data/mineralogy/recipe/rhyolite_relief_i.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - " x ", - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:rhyolite_relief_blank" - } - }, - "result": { - "id": "mineralogy:rhyolite_relief_i", - "count": 7 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + " x ", + "xxx" + ], + "key": { + "x": "mineralogy:rhyolite_relief_blank" + }, + "result": { + "id": "mineralogy:rhyolite_relief_i", + "count": 7 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/rhyolite_relief_left.json b/src/main/resources/data/mineralogy/recipe/rhyolite_relief_left.json index 0ca3bbfae..4be04ef7b 100644 --- a/src/main/resources/data/mineralogy/recipe/rhyolite_relief_left.json +++ b/src/main/resources/data/mineralogy/recipe/rhyolite_relief_left.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - " x ", - " x" - ], - "key": { - "x": { - "item": "mineralogy:rhyolite_relief_blank" - } - }, - "result": { - "id": "mineralogy:rhyolite_relief_left", - "count": 3 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + " x ", + " x" + ], + "key": { + "x": "mineralogy:rhyolite_relief_blank" + }, + "result": { + "id": "mineralogy:rhyolite_relief_left", + "count": 3 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/rhyolite_relief_pickaxe.json b/src/main/resources/data/mineralogy/recipe/rhyolite_relief_pickaxe.json index d7678f981..dfe0d5095 100644 --- a/src/main/resources/data/mineralogy/recipe/rhyolite_relief_pickaxe.json +++ b/src/main/resources/data/mineralogy/recipe/rhyolite_relief_pickaxe.json @@ -1,37 +1,19 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:rhyolite_relief_blank" - }, - { - "item": "mineralogy:rhyolite_relief_blank" - }, - { - "item": "mineralogy:rhyolite_relief_blank" - }, - { - "item": "mineralogy:rhyolite_relief_blank" - }, - { - "item": "mineralogy:rhyolite_relief_blank" - }, - { - "item": "mineralogy:rhyolite_relief_blank" - }, - { - "item": "mineralogy:rhyolite_relief_blank" - }, - { - "item": "mineralogy:rhyolite_relief_blank" - }, - { - "item": "minecraft:stone_pickaxe" - } - ], - "result": { - "id": "mineralogy:rhyolite_relief_pickaxe", - "count": 8 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:rhyolite_relief_blank", + "mineralogy:rhyolite_relief_blank", + "mineralogy:rhyolite_relief_blank", + "mineralogy:rhyolite_relief_blank", + "mineralogy:rhyolite_relief_blank", + "mineralogy:rhyolite_relief_blank", + "mineralogy:rhyolite_relief_blank", + "mineralogy:rhyolite_relief_blank", + "minecraft:stone_pickaxe" + ], + "result": { + "id": "mineralogy:rhyolite_relief_pickaxe", + "count": 8 + } } diff --git a/src/main/resources/data/mineralogy/recipe/rhyolite_relief_plus.json b/src/main/resources/data/mineralogy/recipe/rhyolite_relief_plus.json index b5c8ef73c..f45045d9b 100644 --- a/src/main/resources/data/mineralogy/recipe/rhyolite_relief_plus.json +++ b/src/main/resources/data/mineralogy/recipe/rhyolite_relief_plus.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - " x ", - "xxx", - " x " - ], - "key": { - "x": { - "item": "mineralogy:rhyolite_relief_blank" - } - }, - "result": { - "id": "mineralogy:rhyolite_relief_plus", - "count": 5 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + " x ", + "xxx", + " x " + ], + "key": { + "x": "mineralogy:rhyolite_relief_blank" + }, + "result": { + "id": "mineralogy:rhyolite_relief_plus", + "count": 5 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/rhyolite_relief_right.json b/src/main/resources/data/mineralogy/recipe/rhyolite_relief_right.json index 964bf062d..6c00dd66e 100644 --- a/src/main/resources/data/mineralogy/recipe/rhyolite_relief_right.json +++ b/src/main/resources/data/mineralogy/recipe/rhyolite_relief_right.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:rhyolite_relief_left" - }, - { - "item": "mineralogy:rhyolite_relief_left" - } - ], - "result": { - "id": "mineralogy:rhyolite_relief_right", - "count": 2 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:rhyolite_relief_left", + "mineralogy:rhyolite_relief_left" + ], + "result": { + "id": "mineralogy:rhyolite_relief_right", + "count": 2 + } } diff --git a/src/main/resources/data/mineralogy/recipe/rhyolite_relief_sword.json b/src/main/resources/data/mineralogy/recipe/rhyolite_relief_sword.json index 41b6dc6a7..1d3487d8f 100644 --- a/src/main/resources/data/mineralogy/recipe/rhyolite_relief_sword.json +++ b/src/main/resources/data/mineralogy/recipe/rhyolite_relief_sword.json @@ -1,37 +1,19 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:rhyolite_relief_blank" - }, - { - "item": "mineralogy:rhyolite_relief_blank" - }, - { - "item": "mineralogy:rhyolite_relief_blank" - }, - { - "item": "mineralogy:rhyolite_relief_blank" - }, - { - "item": "mineralogy:rhyolite_relief_blank" - }, - { - "item": "mineralogy:rhyolite_relief_blank" - }, - { - "item": "mineralogy:rhyolite_relief_blank" - }, - { - "item": "mineralogy:rhyolite_relief_blank" - }, - { - "item": "minecraft:stone_sword" - } - ], - "result": { - "id": "mineralogy:rhyolite_relief_sword", - "count": 8 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:rhyolite_relief_blank", + "mineralogy:rhyolite_relief_blank", + "mineralogy:rhyolite_relief_blank", + "mineralogy:rhyolite_relief_blank", + "mineralogy:rhyolite_relief_blank", + "mineralogy:rhyolite_relief_blank", + "mineralogy:rhyolite_relief_blank", + "mineralogy:rhyolite_relief_blank", + "minecraft:stone_sword" + ], + "result": { + "id": "mineralogy:rhyolite_relief_sword", + "count": 8 + } } diff --git a/src/main/resources/data/mineralogy/recipe/rhyolite_relief_vertical.json b/src/main/resources/data/mineralogy/recipe/rhyolite_relief_vertical.json index 77e369034..21826da32 100644 --- a/src/main/resources/data/mineralogy/recipe/rhyolite_relief_vertical.json +++ b/src/main/resources/data/mineralogy/recipe/rhyolite_relief_vertical.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x", - "x", - "x" - ], - "key": { - "x": { - "item": "mineralogy:rhyolite_relief_blank" - } - }, - "result": { - "id": "mineralogy:rhyolite_relief_vertical", - "count": 3 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x", + "x", + "x" + ], + "key": { + "x": "mineralogy:rhyolite_relief_blank" + }, + "result": { + "id": "mineralogy:rhyolite_relief_vertical", + "count": 3 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/rhyolite_slab.json b/src/main/resources/data/mineralogy/recipe/rhyolite_slab.json index e4956e806..8f21facd3 100644 --- a/src/main/resources/data/mineralogy/recipe/rhyolite_slab.json +++ b/src/main/resources/data/mineralogy/recipe/rhyolite_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:rhyolite" - } - }, - "result": { - "id": "mineralogy:rhyolite_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:rhyolite" + }, + "result": { + "id": "mineralogy:rhyolite_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/rhyolite_smooth.json b/src/main/resources/data/mineralogy/recipe/rhyolite_smooth.json index 2c957bee3..0a720888a 100644 --- a/src/main/resources/data/mineralogy/recipe/rhyolite_smooth.json +++ b/src/main/resources/data/mineralogy/recipe/rhyolite_smooth.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "tag": "mineralogy:stones/rhyolite" - }, - { - "item": "minecraft:sand" - } - ], - "result": { - "id": "mineralogy:rhyolite_smooth", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "#mineralogy:stones/rhyolite", + "minecraft:sand" + ], + "result": { + "id": "mineralogy:rhyolite_smooth", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/rhyolite_smooth_brick.json b/src/main/resources/data/mineralogy/recipe/rhyolite_smooth_brick.json index 479dcaa46..7540a4c08 100644 --- a/src/main/resources/data/mineralogy/recipe/rhyolite_smooth_brick.json +++ b/src/main/resources/data/mineralogy/recipe/rhyolite_smooth_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/rhyolite/smooth" - } - }, - "result": { - "id": "mineralogy:rhyolite_smooth_brick", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "#mineralogy:stones/rhyolite/smooth" + }, + "result": { + "id": "mineralogy:rhyolite_smooth_brick", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/rhyolite_smooth_brick_furnace.json b/src/main/resources/data/mineralogy/recipe/rhyolite_smooth_brick_furnace.json index a7b8ce2d7..15ecf625c 100644 --- a/src/main/resources/data/mineralogy/recipe/rhyolite_smooth_brick_furnace.json +++ b/src/main/resources/data/mineralogy/recipe/rhyolite_smooth_brick_furnace.json @@ -1,22 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "xxx", - "xyx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:slabs/rhyolite/smooth_brick" - }, - "y": { - "item": "minecraft:furnace" - } - }, - "result": { - "id": "mineralogy:rhyolite_smooth_brick_furnace", - "count": 1 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "xxx", + "xyx", + "xxx" + ], + "key": { + "x": "#mineralogy:slabs/rhyolite/smooth_brick", + "y": "minecraft:furnace" + }, + "result": { + "id": "mineralogy:rhyolite_smooth_brick_furnace", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/rhyolite_smooth_brick_slab.json b/src/main/resources/data/mineralogy/recipe/rhyolite_smooth_brick_slab.json index b4b4b56f2..3b8b972b7 100644 --- a/src/main/resources/data/mineralogy/recipe/rhyolite_smooth_brick_slab.json +++ b/src/main/resources/data/mineralogy/recipe/rhyolite_smooth_brick_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:rhyolite_smooth_brick" - } - }, - "result": { - "id": "mineralogy:rhyolite_smooth_brick_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:rhyolite_smooth_brick" + }, + "result": { + "id": "mineralogy:rhyolite_smooth_brick_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/rhyolite_smooth_brick_stairs.json b/src/main/resources/data/mineralogy/recipe/rhyolite_smooth_brick_stairs.json index eeb408177..5b0d2a52b 100644 --- a/src/main/resources/data/mineralogy/recipe/rhyolite_smooth_brick_stairs.json +++ b/src/main/resources/data/mineralogy/recipe/rhyolite_smooth_brick_stairs.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - "xx ", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/rhyolite/smooth_brick" - } - }, - "result": { - "id": "mineralogy:rhyolite_smooth_brick_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + "xx ", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/rhyolite/smooth_brick" + }, + "result": { + "id": "mineralogy:rhyolite_smooth_brick_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/rhyolite_smooth_brick_wall.json b/src/main/resources/data/mineralogy/recipe/rhyolite_smooth_brick_wall.json index c5db8f78f..e6042bf95 100644 --- a/src/main/resources/data/mineralogy/recipe/rhyolite_smooth_brick_wall.json +++ b/src/main/resources/data/mineralogy/recipe/rhyolite_smooth_brick_wall.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/rhyolite/smooth_brick" - } - }, - "result": { - "id": "mineralogy:rhyolite_smooth_brick_wall", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/rhyolite/smooth_brick" + }, + "result": { + "id": "mineralogy:rhyolite_smooth_brick_wall", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/rhyolite_smooth_furnace.json b/src/main/resources/data/mineralogy/recipe/rhyolite_smooth_furnace.json index 5db3264d2..be10613a2 100644 --- a/src/main/resources/data/mineralogy/recipe/rhyolite_smooth_furnace.json +++ b/src/main/resources/data/mineralogy/recipe/rhyolite_smooth_furnace.json @@ -1,22 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "xxx", - "xyx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:slabs/rhyolite/smooth" - }, - "y": { - "item": "minecraft:furnace" - } - }, - "result": { - "id": "mineralogy:rhyolite_smooth_furnace", - "count": 1 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "xxx", + "xyx", + "xxx" + ], + "key": { + "x": "#mineralogy:slabs/rhyolite/smooth", + "y": "minecraft:furnace" + }, + "result": { + "id": "mineralogy:rhyolite_smooth_furnace", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/rhyolite_smooth_slab.json b/src/main/resources/data/mineralogy/recipe/rhyolite_smooth_slab.json index 243d05598..2f83f78d4 100644 --- a/src/main/resources/data/mineralogy/recipe/rhyolite_smooth_slab.json +++ b/src/main/resources/data/mineralogy/recipe/rhyolite_smooth_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:rhyolite_smooth" - } - }, - "result": { - "id": "mineralogy:rhyolite_smooth_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:rhyolite_smooth" + }, + "result": { + "id": "mineralogy:rhyolite_smooth_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/rhyolite_smooth_stairs.json b/src/main/resources/data/mineralogy/recipe/rhyolite_smooth_stairs.json index 41e67d51c..67834326f 100644 --- a/src/main/resources/data/mineralogy/recipe/rhyolite_smooth_stairs.json +++ b/src/main/resources/data/mineralogy/recipe/rhyolite_smooth_stairs.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - "xx ", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/rhyolite/smooth" - } - }, - "result": { - "id": "mineralogy:rhyolite_smooth_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + "xx ", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/rhyolite/smooth" + }, + "result": { + "id": "mineralogy:rhyolite_smooth_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/rhyolite_smooth_wall.json b/src/main/resources/data/mineralogy/recipe/rhyolite_smooth_wall.json index 016146ff0..e81836371 100644 --- a/src/main/resources/data/mineralogy/recipe/rhyolite_smooth_wall.json +++ b/src/main/resources/data/mineralogy/recipe/rhyolite_smooth_wall.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/rhyolite/smooth" - } - }, - "result": { - "id": "mineralogy:rhyolite_smooth_wall", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/rhyolite/smooth" + }, + "result": { + "id": "mineralogy:rhyolite_smooth_wall", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/rhyolite_stairs.json b/src/main/resources/data/mineralogy/recipe/rhyolite_stairs.json index d1bac45e5..70ada7b6c 100644 --- a/src/main/resources/data/mineralogy/recipe/rhyolite_stairs.json +++ b/src/main/resources/data/mineralogy/recipe/rhyolite_stairs.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - "xx ", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/rhyolite" - } - }, - "result": { - "id": "mineralogy:rhyolite_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + "xx ", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/rhyolite" + }, + "result": { + "id": "mineralogy:rhyolite_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/rhyolite_to_stone.json b/src/main/resources/data/mineralogy/recipe/rhyolite_to_stone.json index e9ac9d471..2f7dd6bbb 100644 --- a/src/main/resources/data/mineralogy/recipe/rhyolite_to_stone.json +++ b/src/main/resources/data/mineralogy/recipe/rhyolite_to_stone.json @@ -1,12 +1,10 @@ { - "type": "minecraft:smelting", - "category": "blocks", - "ingredient": { - "item": "mineralogy:rhyolite" - }, - "result": { - "id": "minecraft:stone" - }, - "experience": 0.1, - "cookingtime": 200 + "type": "minecraft:smelting", + "category": "blocks", + "ingredient": "mineralogy:rhyolite", + "result": { + "id": "minecraft:stone" + }, + "experience": 0.1, + "cookingtime": 200 } diff --git a/src/main/resources/data/mineralogy/recipe/rhyolite_wall.json b/src/main/resources/data/mineralogy/recipe/rhyolite_wall.json index 88dd519cb..b6d14e352 100644 --- a/src/main/resources/data/mineralogy/recipe/rhyolite_wall.json +++ b/src/main/resources/data/mineralogy/recipe/rhyolite_wall.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/rhyolite" - } - }, - "result": { - "id": "mineralogy:rhyolite_wall", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/rhyolite" + }, + "result": { + "id": "mineralogy:rhyolite_wall", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/rock_salt.json b/src/main/resources/data/mineralogy/recipe/rock_salt.json index 796c0d808..434823328 100644 --- a/src/main/resources/data/mineralogy/recipe/rock_salt.json +++ b/src/main/resources/data/mineralogy/recipe/rock_salt.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "tag": "c:dusts/rock_salt" - } - }, - "result": { - "id": "mineralogy:rock_salt", - "count": 1 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "#c:dusts/rock_salt" + }, + "result": { + "id": "mineralogy:rock_salt", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/rock_salt_brick.json b/src/main/resources/data/mineralogy/recipe/rock_salt_brick.json index 1ea101f4f..3254b6f06 100644 --- a/src/main/resources/data/mineralogy/recipe/rock_salt_brick.json +++ b/src/main/resources/data/mineralogy/recipe/rock_salt_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/rock_salt" - } - }, - "result": { - "id": "mineralogy:rock_salt_brick", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "#mineralogy:stones/rock_salt" + }, + "result": { + "id": "mineralogy:rock_salt_brick", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/rock_salt_brick_block_polishing.json b/src/main/resources/data/mineralogy/recipe/rock_salt_brick_block_polishing.json index 05c77e8ce..511ee794d 100644 --- a/src/main/resources/data/mineralogy/recipe/rock_salt_brick_block_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/rock_salt_brick_block_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:rock_salt_brick" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:rock_salt_smooth_brick", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:rock_salt_brick", + "#c:sands" + ], + "result": { + "id": "mineralogy:rock_salt_smooth_brick", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/rock_salt_brick_furnace.json b/src/main/resources/data/mineralogy/recipe/rock_salt_brick_furnace.json index bb7be47df..ebe45d37b 100644 --- a/src/main/resources/data/mineralogy/recipe/rock_salt_brick_furnace.json +++ b/src/main/resources/data/mineralogy/recipe/rock_salt_brick_furnace.json @@ -1,22 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "xxx", - "xyx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:slabs/rock_salt/brick" - }, - "y": { - "item": "minecraft:furnace" - } - }, - "result": { - "id": "mineralogy:rock_salt_brick_furnace", - "count": 1 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "xxx", + "xyx", + "xxx" + ], + "key": { + "x": "#mineralogy:slabs/rock_salt/brick", + "y": "minecraft:furnace" + }, + "result": { + "id": "mineralogy:rock_salt_brick_furnace", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/rock_salt_brick_slab.json b/src/main/resources/data/mineralogy/recipe/rock_salt_brick_slab.json index ee82d663c..6c578e4ac 100644 --- a/src/main/resources/data/mineralogy/recipe/rock_salt_brick_slab.json +++ b/src/main/resources/data/mineralogy/recipe/rock_salt_brick_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:rock_salt_brick" - } - }, - "result": { - "id": "mineralogy:rock_salt_brick_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:rock_salt_brick" + }, + "result": { + "id": "mineralogy:rock_salt_brick_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/rock_salt_brick_slab_polishing.json b/src/main/resources/data/mineralogy/recipe/rock_salt_brick_slab_polishing.json index 9ab8970c7..894547647 100644 --- a/src/main/resources/data/mineralogy/recipe/rock_salt_brick_slab_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/rock_salt_brick_slab_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:rock_salt_brick_slab" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:rock_salt_smooth_brick_slab", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:rock_salt_brick_slab", + "#c:sands" + ], + "result": { + "id": "mineralogy:rock_salt_smooth_brick_slab", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/rock_salt_brick_slab_recombination.json b/src/main/resources/data/mineralogy/recipe/rock_salt_brick_slab_recombination.json index 184c2b77a..403ae50e9 100644 --- a/src/main/resources/data/mineralogy/recipe/rock_salt_brick_slab_recombination.json +++ b/src/main/resources/data/mineralogy/recipe/rock_salt_brick_slab_recombination.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:rock_salt_brick_slab" - }, - { - "item": "mineralogy:rock_salt_brick_slab" - } - ], - "result": { - "id": "mineralogy:rock_salt_brick", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:rock_salt_brick_slab", + "mineralogy:rock_salt_brick_slab" + ], + "result": { + "id": "mineralogy:rock_salt_brick", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/rock_salt_brick_stairs.json b/src/main/resources/data/mineralogy/recipe/rock_salt_brick_stairs.json index ffc42c98a..a2f79d4ab 100644 --- a/src/main/resources/data/mineralogy/recipe/rock_salt_brick_stairs.json +++ b/src/main/resources/data/mineralogy/recipe/rock_salt_brick_stairs.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - "xx ", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/rock_salt/brick" - } - }, - "result": { - "id": "mineralogy:rock_salt_brick_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + "xx ", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/rock_salt/brick" + }, + "result": { + "id": "mineralogy:rock_salt_brick_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/rock_salt_brick_stairs_polishing.json b/src/main/resources/data/mineralogy/recipe/rock_salt_brick_stairs_polishing.json index 40d6c36cc..81409cad2 100644 --- a/src/main/resources/data/mineralogy/recipe/rock_salt_brick_stairs_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/rock_salt_brick_stairs_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:rock_salt_brick_stairs" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:rock_salt_smooth_brick_stairs", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:rock_salt_brick_stairs", + "#c:sands" + ], + "result": { + "id": "mineralogy:rock_salt_smooth_brick_stairs", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/rock_salt_brick_wall.json b/src/main/resources/data/mineralogy/recipe/rock_salt_brick_wall.json index ef80dddd5..db1abb58f 100644 --- a/src/main/resources/data/mineralogy/recipe/rock_salt_brick_wall.json +++ b/src/main/resources/data/mineralogy/recipe/rock_salt_brick_wall.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/rock_salt/brick" - } - }, - "result": { - "id": "mineralogy:rock_salt_brick_wall", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/rock_salt/brick" + }, + "result": { + "id": "mineralogy:rock_salt_brick_wall", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/rock_salt_brick_wall_polishing.json b/src/main/resources/data/mineralogy/recipe/rock_salt_brick_wall_polishing.json index a670d2721..44bf36364 100644 --- a/src/main/resources/data/mineralogy/recipe/rock_salt_brick_wall_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/rock_salt_brick_wall_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:rock_salt_brick_wall" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:rock_salt_smooth_brick_wall", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:rock_salt_brick_wall", + "#c:sands" + ], + "result": { + "id": "mineralogy:rock_salt_smooth_brick_wall", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/rock_salt_cobblestone.json b/src/main/resources/data/mineralogy/recipe/rock_salt_cobblestone.json index 66ee589e6..fc033d5b7 100644 --- a/src/main/resources/data/mineralogy/recipe/rock_salt_cobblestone.json +++ b/src/main/resources/data/mineralogy/recipe/rock_salt_cobblestone.json @@ -1,22 +1,14 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "tag": "mineralogy:stones/rock_salt" - }, - { - "tag": "mineralogy:stones/rock_salt" - }, - { - "item": "minecraft:gravel" - }, - { - "item": "minecraft:gravel" - } - ], - "result": { - "id": "minecraft:cobblestone", - "count": 4 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "#mineralogy:stones/rock_salt", + "#mineralogy:stones/rock_salt", + "minecraft:gravel", + "minecraft:gravel" + ], + "result": { + "id": "minecraft:cobblestone", + "count": 4 + } } diff --git a/src/main/resources/data/mineralogy/recipe/rock_salt_dust.json b/src/main/resources/data/mineralogy/recipe/rock_salt_dust.json index 6977f41eb..6e3d12bb7 100644 --- a/src/main/resources/data/mineralogy/recipe/rock_salt_dust.json +++ b/src/main/resources/data/mineralogy/recipe/rock_salt_dust.json @@ -1,13 +1,11 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "tag": "c:storage_blocks/rock_salt" - } - ], - "result": { - "id": "mineralogy:rock_salt_dust", - "count": 4 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "#c:storage_blocks/rock_salt" + ], + "result": { + "id": "mineralogy:rock_salt_dust", + "count": 4 + } } diff --git a/src/main/resources/data/mineralogy/recipe/rock_salt_furnace.json b/src/main/resources/data/mineralogy/recipe/rock_salt_furnace.json index 7f0de8472..1cae5c39a 100644 --- a/src/main/resources/data/mineralogy/recipe/rock_salt_furnace.json +++ b/src/main/resources/data/mineralogy/recipe/rock_salt_furnace.json @@ -1,22 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "xxx", - "xyx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:slabs/rock_salt" - }, - "y": { - "item": "minecraft:furnace" - } - }, - "result": { - "id": "mineralogy:rock_salt_furnace", - "count": 1 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "xxx", + "xyx", + "xxx" + ], + "key": { + "x": "#mineralogy:slabs/rock_salt", + "y": "minecraft:furnace" + }, + "result": { + "id": "mineralogy:rock_salt_furnace", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/rock_salt_polished_brick_slab_recombination.json b/src/main/resources/data/mineralogy/recipe/rock_salt_polished_brick_slab_recombination.json index 045901c07..e471168ca 100644 --- a/src/main/resources/data/mineralogy/recipe/rock_salt_polished_brick_slab_recombination.json +++ b/src/main/resources/data/mineralogy/recipe/rock_salt_polished_brick_slab_recombination.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:rock_salt_smooth_brick_slab" - }, - { - "item": "mineralogy:rock_salt_smooth_brick_slab" - } - ], - "result": { - "id": "mineralogy:rock_salt_smooth_brick", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:rock_salt_smooth_brick_slab", + "mineralogy:rock_salt_smooth_brick_slab" + ], + "result": { + "id": "mineralogy:rock_salt_smooth_brick", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/rock_salt_polished_slab_recombination.json b/src/main/resources/data/mineralogy/recipe/rock_salt_polished_slab_recombination.json index 10dec56a5..4dbf518bc 100644 --- a/src/main/resources/data/mineralogy/recipe/rock_salt_polished_slab_recombination.json +++ b/src/main/resources/data/mineralogy/recipe/rock_salt_polished_slab_recombination.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:rock_salt_smooth_slab" - }, - { - "item": "mineralogy:rock_salt_smooth_slab" - } - ], - "result": { - "id": "mineralogy:rock_salt_smooth", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:rock_salt_smooth_slab", + "mineralogy:rock_salt_smooth_slab" + ], + "result": { + "id": "mineralogy:rock_salt_smooth", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/rock_salt_polished_slabs_to_brick.json b/src/main/resources/data/mineralogy/recipe/rock_salt_polished_slabs_to_brick.json index 4f30dd671..24dd969d6 100644 --- a/src/main/resources/data/mineralogy/recipe/rock_salt_polished_slabs_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/rock_salt_polished_slabs_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:rock_salt_smooth_slab" - } - }, - "result": { - "id": "mineralogy:rock_salt_smooth_brick_slab", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:rock_salt_smooth_slab" + }, + "result": { + "id": "mineralogy:rock_salt_smooth_brick_slab", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/rock_salt_polished_stairs_to_brick.json b/src/main/resources/data/mineralogy/recipe/rock_salt_polished_stairs_to_brick.json index 6fc20b827..046370ee0 100644 --- a/src/main/resources/data/mineralogy/recipe/rock_salt_polished_stairs_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/rock_salt_polished_stairs_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:rock_salt_smooth_stairs" - } - }, - "result": { - "id": "mineralogy:rock_salt_smooth_brick_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:rock_salt_smooth_stairs" + }, + "result": { + "id": "mineralogy:rock_salt_smooth_brick_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/rock_salt_polished_walls_to_brick.json b/src/main/resources/data/mineralogy/recipe/rock_salt_polished_walls_to_brick.json index f2f956b16..046ad8e7c 100644 --- a/src/main/resources/data/mineralogy/recipe/rock_salt_polished_walls_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/rock_salt_polished_walls_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:rock_salt_smooth_wall" - } - }, - "result": { - "id": "mineralogy:rock_salt_smooth_brick_wall", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:rock_salt_smooth_wall" + }, + "result": { + "id": "mineralogy:rock_salt_smooth_brick_wall", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/rock_salt_raw_slab_polishing.json b/src/main/resources/data/mineralogy/recipe/rock_salt_raw_slab_polishing.json index 755e2e066..f29aae4df 100644 --- a/src/main/resources/data/mineralogy/recipe/rock_salt_raw_slab_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/rock_salt_raw_slab_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:rock_salt_slab" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:rock_salt_smooth_slab", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:rock_salt_slab", + "#c:sands" + ], + "result": { + "id": "mineralogy:rock_salt_smooth_slab", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/rock_salt_raw_slab_recombination.json b/src/main/resources/data/mineralogy/recipe/rock_salt_raw_slab_recombination.json index b85c3daee..694e9d86c 100644 --- a/src/main/resources/data/mineralogy/recipe/rock_salt_raw_slab_recombination.json +++ b/src/main/resources/data/mineralogy/recipe/rock_salt_raw_slab_recombination.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:rock_salt_slab" - }, - { - "item": "mineralogy:rock_salt_slab" - } - ], - "result": { - "id": "mineralogy:rock_salt", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:rock_salt_slab", + "mineralogy:rock_salt_slab" + ], + "result": { + "id": "mineralogy:rock_salt", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/rock_salt_raw_slabs_to_brick.json b/src/main/resources/data/mineralogy/recipe/rock_salt_raw_slabs_to_brick.json index 6c2c0a4d0..75e315809 100644 --- a/src/main/resources/data/mineralogy/recipe/rock_salt_raw_slabs_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/rock_salt_raw_slabs_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:rock_salt_slab" - } - }, - "result": { - "id": "mineralogy:rock_salt_brick_slab", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:rock_salt_slab" + }, + "result": { + "id": "mineralogy:rock_salt_brick_slab", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/rock_salt_raw_stairs_polishing.json b/src/main/resources/data/mineralogy/recipe/rock_salt_raw_stairs_polishing.json index 2c5211826..1da8441f0 100644 --- a/src/main/resources/data/mineralogy/recipe/rock_salt_raw_stairs_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/rock_salt_raw_stairs_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:rock_salt_stairs" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:rock_salt_smooth_stairs", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:rock_salt_stairs", + "#c:sands" + ], + "result": { + "id": "mineralogy:rock_salt_smooth_stairs", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/rock_salt_raw_stairs_to_brick.json b/src/main/resources/data/mineralogy/recipe/rock_salt_raw_stairs_to_brick.json index 42002a8c2..f2b36b0d2 100644 --- a/src/main/resources/data/mineralogy/recipe/rock_salt_raw_stairs_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/rock_salt_raw_stairs_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:rock_salt_stairs" - } - }, - "result": { - "id": "mineralogy:rock_salt_brick_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:rock_salt_stairs" + }, + "result": { + "id": "mineralogy:rock_salt_brick_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/rock_salt_raw_wall_polishing.json b/src/main/resources/data/mineralogy/recipe/rock_salt_raw_wall_polishing.json index 68d558ea6..8edc34b25 100644 --- a/src/main/resources/data/mineralogy/recipe/rock_salt_raw_wall_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/rock_salt_raw_wall_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:rock_salt_wall" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:rock_salt_smooth_wall", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:rock_salt_wall", + "#c:sands" + ], + "result": { + "id": "mineralogy:rock_salt_smooth_wall", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/rock_salt_raw_walls_to_brick.json b/src/main/resources/data/mineralogy/recipe/rock_salt_raw_walls_to_brick.json index d6996ebdf..66634b21a 100644 --- a/src/main/resources/data/mineralogy/recipe/rock_salt_raw_walls_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/rock_salt_raw_walls_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:rock_salt_wall" - } - }, - "result": { - "id": "mineralogy:rock_salt_brick_wall", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:rock_salt_wall" + }, + "result": { + "id": "mineralogy:rock_salt_brick_wall", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/rock_salt_relief_axe.json b/src/main/resources/data/mineralogy/recipe/rock_salt_relief_axe.json index c8790f6ac..a1ea4aa41 100644 --- a/src/main/resources/data/mineralogy/recipe/rock_salt_relief_axe.json +++ b/src/main/resources/data/mineralogy/recipe/rock_salt_relief_axe.json @@ -1,37 +1,19 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:rock_salt_relief_blank" - }, - { - "item": "mineralogy:rock_salt_relief_blank" - }, - { - "item": "mineralogy:rock_salt_relief_blank" - }, - { - "item": "mineralogy:rock_salt_relief_blank" - }, - { - "item": "mineralogy:rock_salt_relief_blank" - }, - { - "item": "mineralogy:rock_salt_relief_blank" - }, - { - "item": "mineralogy:rock_salt_relief_blank" - }, - { - "item": "mineralogy:rock_salt_relief_blank" - }, - { - "item": "minecraft:stone_axe" - } - ], - "result": { - "id": "mineralogy:rock_salt_relief_axe", - "count": 8 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:rock_salt_relief_blank", + "mineralogy:rock_salt_relief_blank", + "mineralogy:rock_salt_relief_blank", + "mineralogy:rock_salt_relief_blank", + "mineralogy:rock_salt_relief_blank", + "mineralogy:rock_salt_relief_blank", + "mineralogy:rock_salt_relief_blank", + "mineralogy:rock_salt_relief_blank", + "minecraft:stone_axe" + ], + "result": { + "id": "mineralogy:rock_salt_relief_axe", + "count": 8 + } } diff --git a/src/main/resources/data/mineralogy/recipe/rock_salt_relief_blank.json b/src/main/resources/data/mineralogy/recipe/rock_salt_relief_blank.json index 30c716ab1..3268a5f94 100644 --- a/src/main/resources/data/mineralogy/recipe/rock_salt_relief_blank.json +++ b/src/main/resources/data/mineralogy/recipe/rock_salt_relief_blank.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx", - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:rock_salt_smooth" - } - }, - "result": { - "id": "mineralogy:rock_salt_relief_blank", - "count": 16 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx", + "xxx" + ], + "key": { + "x": "mineralogy:rock_salt_smooth" + }, + "result": { + "id": "mineralogy:rock_salt_relief_blank", + "count": 16 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/rock_salt_relief_cross.json b/src/main/resources/data/mineralogy/recipe/rock_salt_relief_cross.json index f184d0d2a..d2217bae6 100644 --- a/src/main/resources/data/mineralogy/recipe/rock_salt_relief_cross.json +++ b/src/main/resources/data/mineralogy/recipe/rock_salt_relief_cross.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x x", - " ", - "x x" - ], - "key": { - "x": { - "item": "mineralogy:rock_salt_relief_blank" - } - }, - "result": { - "id": "mineralogy:rock_salt_relief_cross", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x x", + " ", + "x x" + ], + "key": { + "x": "mineralogy:rock_salt_relief_blank" + }, + "result": { + "id": "mineralogy:rock_salt_relief_cross", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/rock_salt_relief_hammer.json b/src/main/resources/data/mineralogy/recipe/rock_salt_relief_hammer.json index 06adc96ec..e15abb0b1 100644 --- a/src/main/resources/data/mineralogy/recipe/rock_salt_relief_hammer.json +++ b/src/main/resources/data/mineralogy/recipe/rock_salt_relief_hammer.json @@ -1,25 +1,19 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "zxz", - "zyz", - "zzz" - ], - "key": { - "x": { - "item": "mineralogy:rock_salt_smooth" - }, - "y": { - "item": "minecraft:stick" - }, - "z": { - "item": "mineralogy:rock_salt_relief_blank" - } - }, - "result": { - "id": "mineralogy:rock_salt_relief_hammer", - "count": 7 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "zxz", + "zyz", + "zzz" + ], + "key": { + "x": "mineralogy:rock_salt_smooth", + "y": "minecraft:stick", + "z": "mineralogy:rock_salt_relief_blank" + }, + "result": { + "id": "mineralogy:rock_salt_relief_hammer", + "count": 7 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/rock_salt_relief_hoe.json b/src/main/resources/data/mineralogy/recipe/rock_salt_relief_hoe.json index f0b3971c3..0932ffa04 100644 --- a/src/main/resources/data/mineralogy/recipe/rock_salt_relief_hoe.json +++ b/src/main/resources/data/mineralogy/recipe/rock_salt_relief_hoe.json @@ -1,37 +1,19 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:rock_salt_relief_blank" - }, - { - "item": "mineralogy:rock_salt_relief_blank" - }, - { - "item": "mineralogy:rock_salt_relief_blank" - }, - { - "item": "mineralogy:rock_salt_relief_blank" - }, - { - "item": "mineralogy:rock_salt_relief_blank" - }, - { - "item": "mineralogy:rock_salt_relief_blank" - }, - { - "item": "mineralogy:rock_salt_relief_blank" - }, - { - "item": "mineralogy:rock_salt_relief_blank" - }, - { - "item": "minecraft:stone_hoe" - } - ], - "result": { - "id": "mineralogy:rock_salt_relief_hoe", - "count": 8 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:rock_salt_relief_blank", + "mineralogy:rock_salt_relief_blank", + "mineralogy:rock_salt_relief_blank", + "mineralogy:rock_salt_relief_blank", + "mineralogy:rock_salt_relief_blank", + "mineralogy:rock_salt_relief_blank", + "mineralogy:rock_salt_relief_blank", + "mineralogy:rock_salt_relief_blank", + "minecraft:stone_hoe" + ], + "result": { + "id": "mineralogy:rock_salt_relief_hoe", + "count": 8 + } } diff --git a/src/main/resources/data/mineralogy/recipe/rock_salt_relief_horizontal.json b/src/main/resources/data/mineralogy/recipe/rock_salt_relief_horizontal.json index 9e6b04b44..dce33e1ad 100644 --- a/src/main/resources/data/mineralogy/recipe/rock_salt_relief_horizontal.json +++ b/src/main/resources/data/mineralogy/recipe/rock_salt_relief_horizontal.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:rock_salt_relief_blank" - } - }, - "result": { - "id": "mineralogy:rock_salt_relief_horizontal", - "count": 3 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:rock_salt_relief_blank" + }, + "result": { + "id": "mineralogy:rock_salt_relief_horizontal", + "count": 3 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/rock_salt_relief_i.json b/src/main/resources/data/mineralogy/recipe/rock_salt_relief_i.json index 06f8ac73e..eb304b091 100644 --- a/src/main/resources/data/mineralogy/recipe/rock_salt_relief_i.json +++ b/src/main/resources/data/mineralogy/recipe/rock_salt_relief_i.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - " x ", - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:rock_salt_relief_blank" - } - }, - "result": { - "id": "mineralogy:rock_salt_relief_i", - "count": 7 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + " x ", + "xxx" + ], + "key": { + "x": "mineralogy:rock_salt_relief_blank" + }, + "result": { + "id": "mineralogy:rock_salt_relief_i", + "count": 7 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/rock_salt_relief_left.json b/src/main/resources/data/mineralogy/recipe/rock_salt_relief_left.json index 35cc24dfb..acafa9b81 100644 --- a/src/main/resources/data/mineralogy/recipe/rock_salt_relief_left.json +++ b/src/main/resources/data/mineralogy/recipe/rock_salt_relief_left.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - " x ", - " x" - ], - "key": { - "x": { - "item": "mineralogy:rock_salt_relief_blank" - } - }, - "result": { - "id": "mineralogy:rock_salt_relief_left", - "count": 3 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + " x ", + " x" + ], + "key": { + "x": "mineralogy:rock_salt_relief_blank" + }, + "result": { + "id": "mineralogy:rock_salt_relief_left", + "count": 3 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/rock_salt_relief_pickaxe.json b/src/main/resources/data/mineralogy/recipe/rock_salt_relief_pickaxe.json index b285b0da2..d8d146f94 100644 --- a/src/main/resources/data/mineralogy/recipe/rock_salt_relief_pickaxe.json +++ b/src/main/resources/data/mineralogy/recipe/rock_salt_relief_pickaxe.json @@ -1,37 +1,19 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:rock_salt_relief_blank" - }, - { - "item": "mineralogy:rock_salt_relief_blank" - }, - { - "item": "mineralogy:rock_salt_relief_blank" - }, - { - "item": "mineralogy:rock_salt_relief_blank" - }, - { - "item": "mineralogy:rock_salt_relief_blank" - }, - { - "item": "mineralogy:rock_salt_relief_blank" - }, - { - "item": "mineralogy:rock_salt_relief_blank" - }, - { - "item": "mineralogy:rock_salt_relief_blank" - }, - { - "item": "minecraft:stone_pickaxe" - } - ], - "result": { - "id": "mineralogy:rock_salt_relief_pickaxe", - "count": 8 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:rock_salt_relief_blank", + "mineralogy:rock_salt_relief_blank", + "mineralogy:rock_salt_relief_blank", + "mineralogy:rock_salt_relief_blank", + "mineralogy:rock_salt_relief_blank", + "mineralogy:rock_salt_relief_blank", + "mineralogy:rock_salt_relief_blank", + "mineralogy:rock_salt_relief_blank", + "minecraft:stone_pickaxe" + ], + "result": { + "id": "mineralogy:rock_salt_relief_pickaxe", + "count": 8 + } } diff --git a/src/main/resources/data/mineralogy/recipe/rock_salt_relief_plus.json b/src/main/resources/data/mineralogy/recipe/rock_salt_relief_plus.json index 23991883c..c89a2ed6d 100644 --- a/src/main/resources/data/mineralogy/recipe/rock_salt_relief_plus.json +++ b/src/main/resources/data/mineralogy/recipe/rock_salt_relief_plus.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - " x ", - "xxx", - " x " - ], - "key": { - "x": { - "item": "mineralogy:rock_salt_relief_blank" - } - }, - "result": { - "id": "mineralogy:rock_salt_relief_plus", - "count": 5 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + " x ", + "xxx", + " x " + ], + "key": { + "x": "mineralogy:rock_salt_relief_blank" + }, + "result": { + "id": "mineralogy:rock_salt_relief_plus", + "count": 5 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/rock_salt_relief_right.json b/src/main/resources/data/mineralogy/recipe/rock_salt_relief_right.json index 7f51c7c33..09a4b846d 100644 --- a/src/main/resources/data/mineralogy/recipe/rock_salt_relief_right.json +++ b/src/main/resources/data/mineralogy/recipe/rock_salt_relief_right.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:rock_salt_relief_left" - }, - { - "item": "mineralogy:rock_salt_relief_left" - } - ], - "result": { - "id": "mineralogy:rock_salt_relief_right", - "count": 2 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:rock_salt_relief_left", + "mineralogy:rock_salt_relief_left" + ], + "result": { + "id": "mineralogy:rock_salt_relief_right", + "count": 2 + } } diff --git a/src/main/resources/data/mineralogy/recipe/rock_salt_relief_sword.json b/src/main/resources/data/mineralogy/recipe/rock_salt_relief_sword.json index ea21e67cb..d1a23c1b5 100644 --- a/src/main/resources/data/mineralogy/recipe/rock_salt_relief_sword.json +++ b/src/main/resources/data/mineralogy/recipe/rock_salt_relief_sword.json @@ -1,37 +1,19 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:rock_salt_relief_blank" - }, - { - "item": "mineralogy:rock_salt_relief_blank" - }, - { - "item": "mineralogy:rock_salt_relief_blank" - }, - { - "item": "mineralogy:rock_salt_relief_blank" - }, - { - "item": "mineralogy:rock_salt_relief_blank" - }, - { - "item": "mineralogy:rock_salt_relief_blank" - }, - { - "item": "mineralogy:rock_salt_relief_blank" - }, - { - "item": "mineralogy:rock_salt_relief_blank" - }, - { - "item": "minecraft:stone_sword" - } - ], - "result": { - "id": "mineralogy:rock_salt_relief_sword", - "count": 8 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:rock_salt_relief_blank", + "mineralogy:rock_salt_relief_blank", + "mineralogy:rock_salt_relief_blank", + "mineralogy:rock_salt_relief_blank", + "mineralogy:rock_salt_relief_blank", + "mineralogy:rock_salt_relief_blank", + "mineralogy:rock_salt_relief_blank", + "mineralogy:rock_salt_relief_blank", + "minecraft:stone_sword" + ], + "result": { + "id": "mineralogy:rock_salt_relief_sword", + "count": 8 + } } diff --git a/src/main/resources/data/mineralogy/recipe/rock_salt_relief_vertical.json b/src/main/resources/data/mineralogy/recipe/rock_salt_relief_vertical.json index c34d1512b..cd5e285ec 100644 --- a/src/main/resources/data/mineralogy/recipe/rock_salt_relief_vertical.json +++ b/src/main/resources/data/mineralogy/recipe/rock_salt_relief_vertical.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x", - "x", - "x" - ], - "key": { - "x": { - "item": "mineralogy:rock_salt_relief_blank" - } - }, - "result": { - "id": "mineralogy:rock_salt_relief_vertical", - "count": 3 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x", + "x", + "x" + ], + "key": { + "x": "mineralogy:rock_salt_relief_blank" + }, + "result": { + "id": "mineralogy:rock_salt_relief_vertical", + "count": 3 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/rock_salt_slab.json b/src/main/resources/data/mineralogy/recipe/rock_salt_slab.json index 27c9a2d9e..14980b889 100644 --- a/src/main/resources/data/mineralogy/recipe/rock_salt_slab.json +++ b/src/main/resources/data/mineralogy/recipe/rock_salt_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:rock_salt" - } - }, - "result": { - "id": "mineralogy:rock_salt_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:rock_salt" + }, + "result": { + "id": "mineralogy:rock_salt_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/rock_salt_smooth.json b/src/main/resources/data/mineralogy/recipe/rock_salt_smooth.json index c32c5676c..ffc97f67c 100644 --- a/src/main/resources/data/mineralogy/recipe/rock_salt_smooth.json +++ b/src/main/resources/data/mineralogy/recipe/rock_salt_smooth.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "tag": "mineralogy:stones/rock_salt" - }, - { - "item": "minecraft:sand" - } - ], - "result": { - "id": "mineralogy:rock_salt_smooth", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "#mineralogy:stones/rock_salt", + "minecraft:sand" + ], + "result": { + "id": "mineralogy:rock_salt_smooth", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/rock_salt_smooth_brick.json b/src/main/resources/data/mineralogy/recipe/rock_salt_smooth_brick.json index 09e770339..7b2b34407 100644 --- a/src/main/resources/data/mineralogy/recipe/rock_salt_smooth_brick.json +++ b/src/main/resources/data/mineralogy/recipe/rock_salt_smooth_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/rock_salt/smooth" - } - }, - "result": { - "id": "mineralogy:rock_salt_smooth_brick", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "#mineralogy:stones/rock_salt/smooth" + }, + "result": { + "id": "mineralogy:rock_salt_smooth_brick", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/rock_salt_smooth_brick_furnace.json b/src/main/resources/data/mineralogy/recipe/rock_salt_smooth_brick_furnace.json index 73c13e198..5e7202ed7 100644 --- a/src/main/resources/data/mineralogy/recipe/rock_salt_smooth_brick_furnace.json +++ b/src/main/resources/data/mineralogy/recipe/rock_salt_smooth_brick_furnace.json @@ -1,22 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "xxx", - "xyx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:slabs/rock_salt/smooth_brick" - }, - "y": { - "item": "minecraft:furnace" - } - }, - "result": { - "id": "mineralogy:rock_salt_smooth_brick_furnace", - "count": 1 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "xxx", + "xyx", + "xxx" + ], + "key": { + "x": "#mineralogy:slabs/rock_salt/smooth_brick", + "y": "minecraft:furnace" + }, + "result": { + "id": "mineralogy:rock_salt_smooth_brick_furnace", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/rock_salt_smooth_brick_slab.json b/src/main/resources/data/mineralogy/recipe/rock_salt_smooth_brick_slab.json index fb1689e08..7be0c0c27 100644 --- a/src/main/resources/data/mineralogy/recipe/rock_salt_smooth_brick_slab.json +++ b/src/main/resources/data/mineralogy/recipe/rock_salt_smooth_brick_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:rock_salt_smooth_brick" - } - }, - "result": { - "id": "mineralogy:rock_salt_smooth_brick_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:rock_salt_smooth_brick" + }, + "result": { + "id": "mineralogy:rock_salt_smooth_brick_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/rock_salt_smooth_brick_stairs.json b/src/main/resources/data/mineralogy/recipe/rock_salt_smooth_brick_stairs.json index 230583210..87c0aac9e 100644 --- a/src/main/resources/data/mineralogy/recipe/rock_salt_smooth_brick_stairs.json +++ b/src/main/resources/data/mineralogy/recipe/rock_salt_smooth_brick_stairs.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - "xx ", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/rock_salt/smooth_brick" - } - }, - "result": { - "id": "mineralogy:rock_salt_smooth_brick_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + "xx ", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/rock_salt/smooth_brick" + }, + "result": { + "id": "mineralogy:rock_salt_smooth_brick_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/rock_salt_smooth_brick_wall.json b/src/main/resources/data/mineralogy/recipe/rock_salt_smooth_brick_wall.json index f58551f58..857af0b7b 100644 --- a/src/main/resources/data/mineralogy/recipe/rock_salt_smooth_brick_wall.json +++ b/src/main/resources/data/mineralogy/recipe/rock_salt_smooth_brick_wall.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/rock_salt/smooth_brick" - } - }, - "result": { - "id": "mineralogy:rock_salt_smooth_brick_wall", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/rock_salt/smooth_brick" + }, + "result": { + "id": "mineralogy:rock_salt_smooth_brick_wall", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/rock_salt_smooth_furnace.json b/src/main/resources/data/mineralogy/recipe/rock_salt_smooth_furnace.json index fd9e6f1e2..b496d355d 100644 --- a/src/main/resources/data/mineralogy/recipe/rock_salt_smooth_furnace.json +++ b/src/main/resources/data/mineralogy/recipe/rock_salt_smooth_furnace.json @@ -1,22 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "xxx", - "xyx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:slabs/rock_salt/smooth" - }, - "y": { - "item": "minecraft:furnace" - } - }, - "result": { - "id": "mineralogy:rock_salt_smooth_furnace", - "count": 1 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "xxx", + "xyx", + "xxx" + ], + "key": { + "x": "#mineralogy:slabs/rock_salt/smooth", + "y": "minecraft:furnace" + }, + "result": { + "id": "mineralogy:rock_salt_smooth_furnace", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/rock_salt_smooth_slab.json b/src/main/resources/data/mineralogy/recipe/rock_salt_smooth_slab.json index 6b12568af..8a8757a6b 100644 --- a/src/main/resources/data/mineralogy/recipe/rock_salt_smooth_slab.json +++ b/src/main/resources/data/mineralogy/recipe/rock_salt_smooth_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:rock_salt_smooth" - } - }, - "result": { - "id": "mineralogy:rock_salt_smooth_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:rock_salt_smooth" + }, + "result": { + "id": "mineralogy:rock_salt_smooth_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/rock_salt_smooth_stairs.json b/src/main/resources/data/mineralogy/recipe/rock_salt_smooth_stairs.json index 6c89a633a..5a6041ffa 100644 --- a/src/main/resources/data/mineralogy/recipe/rock_salt_smooth_stairs.json +++ b/src/main/resources/data/mineralogy/recipe/rock_salt_smooth_stairs.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - "xx ", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/rock_salt/smooth" - } - }, - "result": { - "id": "mineralogy:rock_salt_smooth_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + "xx ", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/rock_salt/smooth" + }, + "result": { + "id": "mineralogy:rock_salt_smooth_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/rock_salt_smooth_wall.json b/src/main/resources/data/mineralogy/recipe/rock_salt_smooth_wall.json index 3fda50903..8b55d6444 100644 --- a/src/main/resources/data/mineralogy/recipe/rock_salt_smooth_wall.json +++ b/src/main/resources/data/mineralogy/recipe/rock_salt_smooth_wall.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/rock_salt/smooth" - } - }, - "result": { - "id": "mineralogy:rock_salt_smooth_wall", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/rock_salt/smooth" + }, + "result": { + "id": "mineralogy:rock_salt_smooth_wall", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/rock_salt_stairs.json b/src/main/resources/data/mineralogy/recipe/rock_salt_stairs.json index 32b9749e1..7afd7855d 100644 --- a/src/main/resources/data/mineralogy/recipe/rock_salt_stairs.json +++ b/src/main/resources/data/mineralogy/recipe/rock_salt_stairs.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - "xx ", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/rock_salt" - } - }, - "result": { - "id": "mineralogy:rock_salt_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + "xx ", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/rock_salt" + }, + "result": { + "id": "mineralogy:rock_salt_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/rock_salt_to_stone.json b/src/main/resources/data/mineralogy/recipe/rock_salt_to_stone.json index bd2d8cd33..f90817ada 100644 --- a/src/main/resources/data/mineralogy/recipe/rock_salt_to_stone.json +++ b/src/main/resources/data/mineralogy/recipe/rock_salt_to_stone.json @@ -1,12 +1,10 @@ { - "type": "minecraft:smelting", - "category": "blocks", - "ingredient": { - "item": "mineralogy:rock_salt" - }, - "result": { - "id": "minecraft:stone" - }, - "experience": 0.1, - "cookingtime": 200 + "type": "minecraft:smelting", + "category": "blocks", + "ingredient": "mineralogy:rock_salt", + "result": { + "id": "minecraft:stone" + }, + "experience": 0.1, + "cookingtime": 200 } diff --git a/src/main/resources/data/mineralogy/recipe/rock_salt_wall.json b/src/main/resources/data/mineralogy/recipe/rock_salt_wall.json index 9786564d2..6e144e818 100644 --- a/src/main/resources/data/mineralogy/recipe/rock_salt_wall.json +++ b/src/main/resources/data/mineralogy/recipe/rock_salt_wall.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/rock_salt" - } - }, - "result": { - "id": "mineralogy:rock_salt_wall", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/rock_salt" + }, + "result": { + "id": "mineralogy:rock_salt_wall", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/rocksaltlamp.json b/src/main/resources/data/mineralogy/recipe/rocksaltlamp.json index fb78762d6..7e0144604 100644 --- a/src/main/resources/data/mineralogy/recipe/rocksaltlamp.json +++ b/src/main/resources/data/mineralogy/recipe/rocksaltlamp.json @@ -1,25 +1,19 @@ { - "neoforge:conditions": [ - { - "type": "mineralogy:config", - "flag": "ENABLE_ROCK_SALT_LAMPS" - } - ], - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:rock_salt" - }, - { - "item": "minecraft:torch" - }, - { - "item": "minecraft:iron_ingot" - } - ], - "result": { - "id": "mineralogy:rocksaltlamp", - "count": 1 - } + "neoforge:conditions": [ + { + "type": "mineralogy:config", + "flag": "ENABLE_ROCK_SALT_LAMPS" + } + ], + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:rock_salt", + "minecraft:torch", + "minecraft:iron_ingot" + ], + "result": { + "id": "mineralogy:rocksaltlamp", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/rocksaltstreetlamp.json b/src/main/resources/data/mineralogy/recipe/rocksaltstreetlamp.json index a1a0fe8b2..f17d2c6f2 100644 --- a/src/main/resources/data/mineralogy/recipe/rocksaltstreetlamp.json +++ b/src/main/resources/data/mineralogy/recipe/rocksaltstreetlamp.json @@ -1,28 +1,24 @@ { - "neoforge:conditions": [ - { - "type": "mineralogy:config", - "flag": "ENABLE_ROCK_SALT_LAMPS" - } - ], - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x", - "y", - "y" - ], - "key": { - "x": { - "tag": "c:lamps/rock_salt" - }, - "y": { - "item": "minecraft:iron_ingot" - } - }, - "result": { - "id": "mineralogy:rocksaltstreetlamp", - "count": 1 - }, - "show_notification": true + "neoforge:conditions": [ + { + "type": "mineralogy:config", + "flag": "ENABLE_ROCK_SALT_LAMPS" + } + ], + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x", + "y", + "y" + ], + "key": { + "x": "#c:lamps/rock_salt", + "y": "minecraft:iron_ingot" + }, + "result": { + "id": "mineralogy:rocksaltstreetlamp", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/schist_brick.json b/src/main/resources/data/mineralogy/recipe/schist_brick.json index 467163539..08762c913 100644 --- a/src/main/resources/data/mineralogy/recipe/schist_brick.json +++ b/src/main/resources/data/mineralogy/recipe/schist_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/schist" - } - }, - "result": { - "id": "mineralogy:schist_brick", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "#mineralogy:stones/schist" + }, + "result": { + "id": "mineralogy:schist_brick", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/schist_brick_block_polishing.json b/src/main/resources/data/mineralogy/recipe/schist_brick_block_polishing.json index 8b67d0dec..2cbf36fc4 100644 --- a/src/main/resources/data/mineralogy/recipe/schist_brick_block_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/schist_brick_block_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:schist_brick" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:schist_smooth_brick", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:schist_brick", + "#c:sands" + ], + "result": { + "id": "mineralogy:schist_smooth_brick", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/schist_brick_furnace.json b/src/main/resources/data/mineralogy/recipe/schist_brick_furnace.json index f6023e338..7ee654296 100644 --- a/src/main/resources/data/mineralogy/recipe/schist_brick_furnace.json +++ b/src/main/resources/data/mineralogy/recipe/schist_brick_furnace.json @@ -1,22 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "xxx", - "xyx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:slabs/schist/brick" - }, - "y": { - "item": "minecraft:furnace" - } - }, - "result": { - "id": "mineralogy:schist_brick_furnace", - "count": 1 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "xxx", + "xyx", + "xxx" + ], + "key": { + "x": "#mineralogy:slabs/schist/brick", + "y": "minecraft:furnace" + }, + "result": { + "id": "mineralogy:schist_brick_furnace", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/schist_brick_slab.json b/src/main/resources/data/mineralogy/recipe/schist_brick_slab.json index 2ead919c4..5a43bc603 100644 --- a/src/main/resources/data/mineralogy/recipe/schist_brick_slab.json +++ b/src/main/resources/data/mineralogy/recipe/schist_brick_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:schist_brick" - } - }, - "result": { - "id": "mineralogy:schist_brick_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:schist_brick" + }, + "result": { + "id": "mineralogy:schist_brick_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/schist_brick_slab_polishing.json b/src/main/resources/data/mineralogy/recipe/schist_brick_slab_polishing.json index b9dc113c2..beed214f3 100644 --- a/src/main/resources/data/mineralogy/recipe/schist_brick_slab_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/schist_brick_slab_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:schist_brick_slab" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:schist_smooth_brick_slab", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:schist_brick_slab", + "#c:sands" + ], + "result": { + "id": "mineralogy:schist_smooth_brick_slab", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/schist_brick_slab_recombination.json b/src/main/resources/data/mineralogy/recipe/schist_brick_slab_recombination.json index 28d0f9ab6..8ad0f2b01 100644 --- a/src/main/resources/data/mineralogy/recipe/schist_brick_slab_recombination.json +++ b/src/main/resources/data/mineralogy/recipe/schist_brick_slab_recombination.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:schist_brick_slab" - }, - { - "item": "mineralogy:schist_brick_slab" - } - ], - "result": { - "id": "mineralogy:schist_brick", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:schist_brick_slab", + "mineralogy:schist_brick_slab" + ], + "result": { + "id": "mineralogy:schist_brick", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/schist_brick_stairs.json b/src/main/resources/data/mineralogy/recipe/schist_brick_stairs.json index 13f1bdab3..09c295ae7 100644 --- a/src/main/resources/data/mineralogy/recipe/schist_brick_stairs.json +++ b/src/main/resources/data/mineralogy/recipe/schist_brick_stairs.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - "xx ", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/schist/brick" - } - }, - "result": { - "id": "mineralogy:schist_brick_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + "xx ", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/schist/brick" + }, + "result": { + "id": "mineralogy:schist_brick_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/schist_brick_stairs_polishing.json b/src/main/resources/data/mineralogy/recipe/schist_brick_stairs_polishing.json index e7a97264b..2159a91c5 100644 --- a/src/main/resources/data/mineralogy/recipe/schist_brick_stairs_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/schist_brick_stairs_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:schist_brick_stairs" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:schist_smooth_brick_stairs", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:schist_brick_stairs", + "#c:sands" + ], + "result": { + "id": "mineralogy:schist_smooth_brick_stairs", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/schist_brick_wall.json b/src/main/resources/data/mineralogy/recipe/schist_brick_wall.json index 28fa0c90b..2ab969b12 100644 --- a/src/main/resources/data/mineralogy/recipe/schist_brick_wall.json +++ b/src/main/resources/data/mineralogy/recipe/schist_brick_wall.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/schist/brick" - } - }, - "result": { - "id": "mineralogy:schist_brick_wall", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/schist/brick" + }, + "result": { + "id": "mineralogy:schist_brick_wall", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/schist_brick_wall_polishing.json b/src/main/resources/data/mineralogy/recipe/schist_brick_wall_polishing.json index 204985bfd..be48cdc28 100644 --- a/src/main/resources/data/mineralogy/recipe/schist_brick_wall_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/schist_brick_wall_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:schist_brick_wall" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:schist_smooth_brick_wall", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:schist_brick_wall", + "#c:sands" + ], + "result": { + "id": "mineralogy:schist_smooth_brick_wall", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/schist_cobblestone.json b/src/main/resources/data/mineralogy/recipe/schist_cobblestone.json index 79e827355..418f283b1 100644 --- a/src/main/resources/data/mineralogy/recipe/schist_cobblestone.json +++ b/src/main/resources/data/mineralogy/recipe/schist_cobblestone.json @@ -1,22 +1,14 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "tag": "mineralogy:stones/schist" - }, - { - "tag": "mineralogy:stones/schist" - }, - { - "item": "minecraft:gravel" - }, - { - "item": "minecraft:gravel" - } - ], - "result": { - "id": "minecraft:cobblestone", - "count": 4 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "#mineralogy:stones/schist", + "#mineralogy:stones/schist", + "minecraft:gravel", + "minecraft:gravel" + ], + "result": { + "id": "minecraft:cobblestone", + "count": 4 + } } diff --git a/src/main/resources/data/mineralogy/recipe/schist_furnace.json b/src/main/resources/data/mineralogy/recipe/schist_furnace.json index 97f3efdff..01036fe3e 100644 --- a/src/main/resources/data/mineralogy/recipe/schist_furnace.json +++ b/src/main/resources/data/mineralogy/recipe/schist_furnace.json @@ -1,22 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "xxx", - "xyx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:slabs/schist" - }, - "y": { - "item": "minecraft:furnace" - } - }, - "result": { - "id": "mineralogy:schist_furnace", - "count": 1 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "xxx", + "xyx", + "xxx" + ], + "key": { + "x": "#mineralogy:slabs/schist", + "y": "minecraft:furnace" + }, + "result": { + "id": "mineralogy:schist_furnace", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/schist_polished_brick_slab_recombination.json b/src/main/resources/data/mineralogy/recipe/schist_polished_brick_slab_recombination.json index b7771aac8..dec295890 100644 --- a/src/main/resources/data/mineralogy/recipe/schist_polished_brick_slab_recombination.json +++ b/src/main/resources/data/mineralogy/recipe/schist_polished_brick_slab_recombination.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:schist_smooth_brick_slab" - }, - { - "item": "mineralogy:schist_smooth_brick_slab" - } - ], - "result": { - "id": "mineralogy:schist_smooth_brick", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:schist_smooth_brick_slab", + "mineralogy:schist_smooth_brick_slab" + ], + "result": { + "id": "mineralogy:schist_smooth_brick", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/schist_polished_slab_recombination.json b/src/main/resources/data/mineralogy/recipe/schist_polished_slab_recombination.json index 27668aabb..64781509c 100644 --- a/src/main/resources/data/mineralogy/recipe/schist_polished_slab_recombination.json +++ b/src/main/resources/data/mineralogy/recipe/schist_polished_slab_recombination.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:schist_smooth_slab" - }, - { - "item": "mineralogy:schist_smooth_slab" - } - ], - "result": { - "id": "mineralogy:schist_smooth", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:schist_smooth_slab", + "mineralogy:schist_smooth_slab" + ], + "result": { + "id": "mineralogy:schist_smooth", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/schist_polished_slabs_to_brick.json b/src/main/resources/data/mineralogy/recipe/schist_polished_slabs_to_brick.json index e6de042a7..1493d8ad7 100644 --- a/src/main/resources/data/mineralogy/recipe/schist_polished_slabs_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/schist_polished_slabs_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:schist_smooth_slab" - } - }, - "result": { - "id": "mineralogy:schist_smooth_brick_slab", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:schist_smooth_slab" + }, + "result": { + "id": "mineralogy:schist_smooth_brick_slab", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/schist_polished_stairs_to_brick.json b/src/main/resources/data/mineralogy/recipe/schist_polished_stairs_to_brick.json index e0bce5f52..bff2dd3af 100644 --- a/src/main/resources/data/mineralogy/recipe/schist_polished_stairs_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/schist_polished_stairs_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:schist_smooth_stairs" - } - }, - "result": { - "id": "mineralogy:schist_smooth_brick_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:schist_smooth_stairs" + }, + "result": { + "id": "mineralogy:schist_smooth_brick_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/schist_polished_walls_to_brick.json b/src/main/resources/data/mineralogy/recipe/schist_polished_walls_to_brick.json index f3e353d75..4c9127052 100644 --- a/src/main/resources/data/mineralogy/recipe/schist_polished_walls_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/schist_polished_walls_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:schist_smooth_wall" - } - }, - "result": { - "id": "mineralogy:schist_smooth_brick_wall", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:schist_smooth_wall" + }, + "result": { + "id": "mineralogy:schist_smooth_brick_wall", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/schist_raw_slab_polishing.json b/src/main/resources/data/mineralogy/recipe/schist_raw_slab_polishing.json index 8d1c3c9fb..5a0f292fe 100644 --- a/src/main/resources/data/mineralogy/recipe/schist_raw_slab_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/schist_raw_slab_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:schist_slab" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:schist_smooth_slab", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:schist_slab", + "#c:sands" + ], + "result": { + "id": "mineralogy:schist_smooth_slab", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/schist_raw_slab_recombination.json b/src/main/resources/data/mineralogy/recipe/schist_raw_slab_recombination.json index 9cb9f77d9..0e1e7c73f 100644 --- a/src/main/resources/data/mineralogy/recipe/schist_raw_slab_recombination.json +++ b/src/main/resources/data/mineralogy/recipe/schist_raw_slab_recombination.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:schist_slab" - }, - { - "item": "mineralogy:schist_slab" - } - ], - "result": { - "id": "mineralogy:schist", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:schist_slab", + "mineralogy:schist_slab" + ], + "result": { + "id": "mineralogy:schist", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/schist_raw_slabs_to_brick.json b/src/main/resources/data/mineralogy/recipe/schist_raw_slabs_to_brick.json index cd99dc52f..b29bea354 100644 --- a/src/main/resources/data/mineralogy/recipe/schist_raw_slabs_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/schist_raw_slabs_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:schist_slab" - } - }, - "result": { - "id": "mineralogy:schist_brick_slab", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:schist_slab" + }, + "result": { + "id": "mineralogy:schist_brick_slab", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/schist_raw_stairs_polishing.json b/src/main/resources/data/mineralogy/recipe/schist_raw_stairs_polishing.json index 53cc4bffe..985c681cb 100644 --- a/src/main/resources/data/mineralogy/recipe/schist_raw_stairs_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/schist_raw_stairs_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:schist_stairs" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:schist_smooth_stairs", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:schist_stairs", + "#c:sands" + ], + "result": { + "id": "mineralogy:schist_smooth_stairs", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/schist_raw_stairs_to_brick.json b/src/main/resources/data/mineralogy/recipe/schist_raw_stairs_to_brick.json index 2427aacf7..44c47eda0 100644 --- a/src/main/resources/data/mineralogy/recipe/schist_raw_stairs_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/schist_raw_stairs_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:schist_stairs" - } - }, - "result": { - "id": "mineralogy:schist_brick_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:schist_stairs" + }, + "result": { + "id": "mineralogy:schist_brick_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/schist_raw_wall_polishing.json b/src/main/resources/data/mineralogy/recipe/schist_raw_wall_polishing.json index fb3f04b0e..b16e40510 100644 --- a/src/main/resources/data/mineralogy/recipe/schist_raw_wall_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/schist_raw_wall_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:schist_wall" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:schist_smooth_wall", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:schist_wall", + "#c:sands" + ], + "result": { + "id": "mineralogy:schist_smooth_wall", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/schist_raw_walls_to_brick.json b/src/main/resources/data/mineralogy/recipe/schist_raw_walls_to_brick.json index 89be8e145..479a3432f 100644 --- a/src/main/resources/data/mineralogy/recipe/schist_raw_walls_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/schist_raw_walls_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:schist_wall" - } - }, - "result": { - "id": "mineralogy:schist_brick_wall", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:schist_wall" + }, + "result": { + "id": "mineralogy:schist_brick_wall", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/schist_relief_axe.json b/src/main/resources/data/mineralogy/recipe/schist_relief_axe.json index b03a2db20..1cb1c4d4b 100644 --- a/src/main/resources/data/mineralogy/recipe/schist_relief_axe.json +++ b/src/main/resources/data/mineralogy/recipe/schist_relief_axe.json @@ -1,37 +1,19 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:schist_relief_blank" - }, - { - "item": "mineralogy:schist_relief_blank" - }, - { - "item": "mineralogy:schist_relief_blank" - }, - { - "item": "mineralogy:schist_relief_blank" - }, - { - "item": "mineralogy:schist_relief_blank" - }, - { - "item": "mineralogy:schist_relief_blank" - }, - { - "item": "mineralogy:schist_relief_blank" - }, - { - "item": "mineralogy:schist_relief_blank" - }, - { - "item": "minecraft:stone_axe" - } - ], - "result": { - "id": "mineralogy:schist_relief_axe", - "count": 8 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:schist_relief_blank", + "mineralogy:schist_relief_blank", + "mineralogy:schist_relief_blank", + "mineralogy:schist_relief_blank", + "mineralogy:schist_relief_blank", + "mineralogy:schist_relief_blank", + "mineralogy:schist_relief_blank", + "mineralogy:schist_relief_blank", + "minecraft:stone_axe" + ], + "result": { + "id": "mineralogy:schist_relief_axe", + "count": 8 + } } diff --git a/src/main/resources/data/mineralogy/recipe/schist_relief_blank.json b/src/main/resources/data/mineralogy/recipe/schist_relief_blank.json index c1ab086dc..c02c25060 100644 --- a/src/main/resources/data/mineralogy/recipe/schist_relief_blank.json +++ b/src/main/resources/data/mineralogy/recipe/schist_relief_blank.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx", - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:schist_smooth" - } - }, - "result": { - "id": "mineralogy:schist_relief_blank", - "count": 16 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx", + "xxx" + ], + "key": { + "x": "mineralogy:schist_smooth" + }, + "result": { + "id": "mineralogy:schist_relief_blank", + "count": 16 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/schist_relief_cross.json b/src/main/resources/data/mineralogy/recipe/schist_relief_cross.json index 9d4e375c3..29c5eca5d 100644 --- a/src/main/resources/data/mineralogy/recipe/schist_relief_cross.json +++ b/src/main/resources/data/mineralogy/recipe/schist_relief_cross.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x x", - " ", - "x x" - ], - "key": { - "x": { - "item": "mineralogy:schist_relief_blank" - } - }, - "result": { - "id": "mineralogy:schist_relief_cross", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x x", + " ", + "x x" + ], + "key": { + "x": "mineralogy:schist_relief_blank" + }, + "result": { + "id": "mineralogy:schist_relief_cross", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/schist_relief_hammer.json b/src/main/resources/data/mineralogy/recipe/schist_relief_hammer.json index 6f4d28698..26b768e31 100644 --- a/src/main/resources/data/mineralogy/recipe/schist_relief_hammer.json +++ b/src/main/resources/data/mineralogy/recipe/schist_relief_hammer.json @@ -1,25 +1,19 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "zxz", - "zyz", - "zzz" - ], - "key": { - "x": { - "item": "mineralogy:schist_smooth" - }, - "y": { - "item": "minecraft:stick" - }, - "z": { - "item": "mineralogy:schist_relief_blank" - } - }, - "result": { - "id": "mineralogy:schist_relief_hammer", - "count": 7 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "zxz", + "zyz", + "zzz" + ], + "key": { + "x": "mineralogy:schist_smooth", + "y": "minecraft:stick", + "z": "mineralogy:schist_relief_blank" + }, + "result": { + "id": "mineralogy:schist_relief_hammer", + "count": 7 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/schist_relief_hoe.json b/src/main/resources/data/mineralogy/recipe/schist_relief_hoe.json index 0fbefa01a..ed26b38b1 100644 --- a/src/main/resources/data/mineralogy/recipe/schist_relief_hoe.json +++ b/src/main/resources/data/mineralogy/recipe/schist_relief_hoe.json @@ -1,37 +1,19 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:schist_relief_blank" - }, - { - "item": "mineralogy:schist_relief_blank" - }, - { - "item": "mineralogy:schist_relief_blank" - }, - { - "item": "mineralogy:schist_relief_blank" - }, - { - "item": "mineralogy:schist_relief_blank" - }, - { - "item": "mineralogy:schist_relief_blank" - }, - { - "item": "mineralogy:schist_relief_blank" - }, - { - "item": "mineralogy:schist_relief_blank" - }, - { - "item": "minecraft:stone_hoe" - } - ], - "result": { - "id": "mineralogy:schist_relief_hoe", - "count": 8 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:schist_relief_blank", + "mineralogy:schist_relief_blank", + "mineralogy:schist_relief_blank", + "mineralogy:schist_relief_blank", + "mineralogy:schist_relief_blank", + "mineralogy:schist_relief_blank", + "mineralogy:schist_relief_blank", + "mineralogy:schist_relief_blank", + "minecraft:stone_hoe" + ], + "result": { + "id": "mineralogy:schist_relief_hoe", + "count": 8 + } } diff --git a/src/main/resources/data/mineralogy/recipe/schist_relief_horizontal.json b/src/main/resources/data/mineralogy/recipe/schist_relief_horizontal.json index 08cbd44d3..8ba2221ab 100644 --- a/src/main/resources/data/mineralogy/recipe/schist_relief_horizontal.json +++ b/src/main/resources/data/mineralogy/recipe/schist_relief_horizontal.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:schist_relief_blank" - } - }, - "result": { - "id": "mineralogy:schist_relief_horizontal", - "count": 3 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:schist_relief_blank" + }, + "result": { + "id": "mineralogy:schist_relief_horizontal", + "count": 3 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/schist_relief_i.json b/src/main/resources/data/mineralogy/recipe/schist_relief_i.json index 0cfe23562..2675589c3 100644 --- a/src/main/resources/data/mineralogy/recipe/schist_relief_i.json +++ b/src/main/resources/data/mineralogy/recipe/schist_relief_i.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - " x ", - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:schist_relief_blank" - } - }, - "result": { - "id": "mineralogy:schist_relief_i", - "count": 7 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + " x ", + "xxx" + ], + "key": { + "x": "mineralogy:schist_relief_blank" + }, + "result": { + "id": "mineralogy:schist_relief_i", + "count": 7 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/schist_relief_left.json b/src/main/resources/data/mineralogy/recipe/schist_relief_left.json index 705ed99f3..72b8e911d 100644 --- a/src/main/resources/data/mineralogy/recipe/schist_relief_left.json +++ b/src/main/resources/data/mineralogy/recipe/schist_relief_left.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - " x ", - " x" - ], - "key": { - "x": { - "item": "mineralogy:schist_relief_blank" - } - }, - "result": { - "id": "mineralogy:schist_relief_left", - "count": 3 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + " x ", + " x" + ], + "key": { + "x": "mineralogy:schist_relief_blank" + }, + "result": { + "id": "mineralogy:schist_relief_left", + "count": 3 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/schist_relief_pickaxe.json b/src/main/resources/data/mineralogy/recipe/schist_relief_pickaxe.json index a5693e37d..6b1d89166 100644 --- a/src/main/resources/data/mineralogy/recipe/schist_relief_pickaxe.json +++ b/src/main/resources/data/mineralogy/recipe/schist_relief_pickaxe.json @@ -1,37 +1,19 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:schist_relief_blank" - }, - { - "item": "mineralogy:schist_relief_blank" - }, - { - "item": "mineralogy:schist_relief_blank" - }, - { - "item": "mineralogy:schist_relief_blank" - }, - { - "item": "mineralogy:schist_relief_blank" - }, - { - "item": "mineralogy:schist_relief_blank" - }, - { - "item": "mineralogy:schist_relief_blank" - }, - { - "item": "mineralogy:schist_relief_blank" - }, - { - "item": "minecraft:stone_pickaxe" - } - ], - "result": { - "id": "mineralogy:schist_relief_pickaxe", - "count": 8 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:schist_relief_blank", + "mineralogy:schist_relief_blank", + "mineralogy:schist_relief_blank", + "mineralogy:schist_relief_blank", + "mineralogy:schist_relief_blank", + "mineralogy:schist_relief_blank", + "mineralogy:schist_relief_blank", + "mineralogy:schist_relief_blank", + "minecraft:stone_pickaxe" + ], + "result": { + "id": "mineralogy:schist_relief_pickaxe", + "count": 8 + } } diff --git a/src/main/resources/data/mineralogy/recipe/schist_relief_plus.json b/src/main/resources/data/mineralogy/recipe/schist_relief_plus.json index 6e0287a1b..1d9903416 100644 --- a/src/main/resources/data/mineralogy/recipe/schist_relief_plus.json +++ b/src/main/resources/data/mineralogy/recipe/schist_relief_plus.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - " x ", - "xxx", - " x " - ], - "key": { - "x": { - "item": "mineralogy:schist_relief_blank" - } - }, - "result": { - "id": "mineralogy:schist_relief_plus", - "count": 5 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + " x ", + "xxx", + " x " + ], + "key": { + "x": "mineralogy:schist_relief_blank" + }, + "result": { + "id": "mineralogy:schist_relief_plus", + "count": 5 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/schist_relief_right.json b/src/main/resources/data/mineralogy/recipe/schist_relief_right.json index ebcfb224c..9cc46cb22 100644 --- a/src/main/resources/data/mineralogy/recipe/schist_relief_right.json +++ b/src/main/resources/data/mineralogy/recipe/schist_relief_right.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:schist_relief_left" - }, - { - "item": "mineralogy:schist_relief_left" - } - ], - "result": { - "id": "mineralogy:schist_relief_right", - "count": 2 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:schist_relief_left", + "mineralogy:schist_relief_left" + ], + "result": { + "id": "mineralogy:schist_relief_right", + "count": 2 + } } diff --git a/src/main/resources/data/mineralogy/recipe/schist_relief_sword.json b/src/main/resources/data/mineralogy/recipe/schist_relief_sword.json index 619ce449e..5d01b6a45 100644 --- a/src/main/resources/data/mineralogy/recipe/schist_relief_sword.json +++ b/src/main/resources/data/mineralogy/recipe/schist_relief_sword.json @@ -1,37 +1,19 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:schist_relief_blank" - }, - { - "item": "mineralogy:schist_relief_blank" - }, - { - "item": "mineralogy:schist_relief_blank" - }, - { - "item": "mineralogy:schist_relief_blank" - }, - { - "item": "mineralogy:schist_relief_blank" - }, - { - "item": "mineralogy:schist_relief_blank" - }, - { - "item": "mineralogy:schist_relief_blank" - }, - { - "item": "mineralogy:schist_relief_blank" - }, - { - "item": "minecraft:stone_sword" - } - ], - "result": { - "id": "mineralogy:schist_relief_sword", - "count": 8 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:schist_relief_blank", + "mineralogy:schist_relief_blank", + "mineralogy:schist_relief_blank", + "mineralogy:schist_relief_blank", + "mineralogy:schist_relief_blank", + "mineralogy:schist_relief_blank", + "mineralogy:schist_relief_blank", + "mineralogy:schist_relief_blank", + "minecraft:stone_sword" + ], + "result": { + "id": "mineralogy:schist_relief_sword", + "count": 8 + } } diff --git a/src/main/resources/data/mineralogy/recipe/schist_relief_vertical.json b/src/main/resources/data/mineralogy/recipe/schist_relief_vertical.json index 314462202..0c013fd12 100644 --- a/src/main/resources/data/mineralogy/recipe/schist_relief_vertical.json +++ b/src/main/resources/data/mineralogy/recipe/schist_relief_vertical.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x", - "x", - "x" - ], - "key": { - "x": { - "item": "mineralogy:schist_relief_blank" - } - }, - "result": { - "id": "mineralogy:schist_relief_vertical", - "count": 3 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x", + "x", + "x" + ], + "key": { + "x": "mineralogy:schist_relief_blank" + }, + "result": { + "id": "mineralogy:schist_relief_vertical", + "count": 3 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/schist_slab.json b/src/main/resources/data/mineralogy/recipe/schist_slab.json index a20a4a050..2d079a89b 100644 --- a/src/main/resources/data/mineralogy/recipe/schist_slab.json +++ b/src/main/resources/data/mineralogy/recipe/schist_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:schist" - } - }, - "result": { - "id": "mineralogy:schist_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:schist" + }, + "result": { + "id": "mineralogy:schist_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/schist_smooth.json b/src/main/resources/data/mineralogy/recipe/schist_smooth.json index 95aaf555d..1122cdd05 100644 --- a/src/main/resources/data/mineralogy/recipe/schist_smooth.json +++ b/src/main/resources/data/mineralogy/recipe/schist_smooth.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "tag": "mineralogy:stones/schist" - }, - { - "item": "minecraft:sand" - } - ], - "result": { - "id": "mineralogy:schist_smooth", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "#mineralogy:stones/schist", + "minecraft:sand" + ], + "result": { + "id": "mineralogy:schist_smooth", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/schist_smooth_brick.json b/src/main/resources/data/mineralogy/recipe/schist_smooth_brick.json index 3451deb72..d6c65e0e5 100644 --- a/src/main/resources/data/mineralogy/recipe/schist_smooth_brick.json +++ b/src/main/resources/data/mineralogy/recipe/schist_smooth_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/schist/smooth" - } - }, - "result": { - "id": "mineralogy:schist_smooth_brick", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "#mineralogy:stones/schist/smooth" + }, + "result": { + "id": "mineralogy:schist_smooth_brick", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/schist_smooth_brick_furnace.json b/src/main/resources/data/mineralogy/recipe/schist_smooth_brick_furnace.json index 3db5cae12..d760a5682 100644 --- a/src/main/resources/data/mineralogy/recipe/schist_smooth_brick_furnace.json +++ b/src/main/resources/data/mineralogy/recipe/schist_smooth_brick_furnace.json @@ -1,22 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "xxx", - "xyx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:slabs/schist/smooth_brick" - }, - "y": { - "item": "minecraft:furnace" - } - }, - "result": { - "id": "mineralogy:schist_smooth_brick_furnace", - "count": 1 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "xxx", + "xyx", + "xxx" + ], + "key": { + "x": "#mineralogy:slabs/schist/smooth_brick", + "y": "minecraft:furnace" + }, + "result": { + "id": "mineralogy:schist_smooth_brick_furnace", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/schist_smooth_brick_slab.json b/src/main/resources/data/mineralogy/recipe/schist_smooth_brick_slab.json index 3c765fb2f..7394b5de8 100644 --- a/src/main/resources/data/mineralogy/recipe/schist_smooth_brick_slab.json +++ b/src/main/resources/data/mineralogy/recipe/schist_smooth_brick_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:schist_smooth_brick" - } - }, - "result": { - "id": "mineralogy:schist_smooth_brick_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:schist_smooth_brick" + }, + "result": { + "id": "mineralogy:schist_smooth_brick_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/schist_smooth_brick_stairs.json b/src/main/resources/data/mineralogy/recipe/schist_smooth_brick_stairs.json index 42305bbe5..7a9ee4c2f 100644 --- a/src/main/resources/data/mineralogy/recipe/schist_smooth_brick_stairs.json +++ b/src/main/resources/data/mineralogy/recipe/schist_smooth_brick_stairs.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - "xx ", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/schist/smooth_brick" - } - }, - "result": { - "id": "mineralogy:schist_smooth_brick_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + "xx ", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/schist/smooth_brick" + }, + "result": { + "id": "mineralogy:schist_smooth_brick_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/schist_smooth_brick_wall.json b/src/main/resources/data/mineralogy/recipe/schist_smooth_brick_wall.json index 1e7603fc2..77ef7140b 100644 --- a/src/main/resources/data/mineralogy/recipe/schist_smooth_brick_wall.json +++ b/src/main/resources/data/mineralogy/recipe/schist_smooth_brick_wall.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/schist/smooth_brick" - } - }, - "result": { - "id": "mineralogy:schist_smooth_brick_wall", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/schist/smooth_brick" + }, + "result": { + "id": "mineralogy:schist_smooth_brick_wall", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/schist_smooth_furnace.json b/src/main/resources/data/mineralogy/recipe/schist_smooth_furnace.json index c3a27e52a..01c0529e0 100644 --- a/src/main/resources/data/mineralogy/recipe/schist_smooth_furnace.json +++ b/src/main/resources/data/mineralogy/recipe/schist_smooth_furnace.json @@ -1,22 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "xxx", - "xyx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:slabs/schist/smooth" - }, - "y": { - "item": "minecraft:furnace" - } - }, - "result": { - "id": "mineralogy:schist_smooth_furnace", - "count": 1 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "xxx", + "xyx", + "xxx" + ], + "key": { + "x": "#mineralogy:slabs/schist/smooth", + "y": "minecraft:furnace" + }, + "result": { + "id": "mineralogy:schist_smooth_furnace", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/schist_smooth_slab.json b/src/main/resources/data/mineralogy/recipe/schist_smooth_slab.json index 4c72f75e3..e532fbcd1 100644 --- a/src/main/resources/data/mineralogy/recipe/schist_smooth_slab.json +++ b/src/main/resources/data/mineralogy/recipe/schist_smooth_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:schist_smooth" - } - }, - "result": { - "id": "mineralogy:schist_smooth_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:schist_smooth" + }, + "result": { + "id": "mineralogy:schist_smooth_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/schist_smooth_stairs.json b/src/main/resources/data/mineralogy/recipe/schist_smooth_stairs.json index ed9dcf856..89a952664 100644 --- a/src/main/resources/data/mineralogy/recipe/schist_smooth_stairs.json +++ b/src/main/resources/data/mineralogy/recipe/schist_smooth_stairs.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - "xx ", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/schist/smooth" - } - }, - "result": { - "id": "mineralogy:schist_smooth_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + "xx ", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/schist/smooth" + }, + "result": { + "id": "mineralogy:schist_smooth_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/schist_smooth_wall.json b/src/main/resources/data/mineralogy/recipe/schist_smooth_wall.json index efde99051..61b7784ba 100644 --- a/src/main/resources/data/mineralogy/recipe/schist_smooth_wall.json +++ b/src/main/resources/data/mineralogy/recipe/schist_smooth_wall.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/schist/smooth" - } - }, - "result": { - "id": "mineralogy:schist_smooth_wall", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/schist/smooth" + }, + "result": { + "id": "mineralogy:schist_smooth_wall", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/schist_stairs.json b/src/main/resources/data/mineralogy/recipe/schist_stairs.json index 4779fc9f5..de412040f 100644 --- a/src/main/resources/data/mineralogy/recipe/schist_stairs.json +++ b/src/main/resources/data/mineralogy/recipe/schist_stairs.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - "xx ", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/schist" - } - }, - "result": { - "id": "mineralogy:schist_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + "xx ", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/schist" + }, + "result": { + "id": "mineralogy:schist_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/schist_to_stone.json b/src/main/resources/data/mineralogy/recipe/schist_to_stone.json index ee3c705ab..284fee57c 100644 --- a/src/main/resources/data/mineralogy/recipe/schist_to_stone.json +++ b/src/main/resources/data/mineralogy/recipe/schist_to_stone.json @@ -1,12 +1,10 @@ { - "type": "minecraft:smelting", - "category": "blocks", - "ingredient": { - "item": "mineralogy:schist" - }, - "result": { - "id": "minecraft:stone" - }, - "experience": 0.1, - "cookingtime": 200 + "type": "minecraft:smelting", + "category": "blocks", + "ingredient": "mineralogy:schist", + "result": { + "id": "minecraft:stone" + }, + "experience": 0.1, + "cookingtime": 200 } diff --git a/src/main/resources/data/mineralogy/recipe/schist_wall.json b/src/main/resources/data/mineralogy/recipe/schist_wall.json index 748090d56..e02a26321 100644 --- a/src/main/resources/data/mineralogy/recipe/schist_wall.json +++ b/src/main/resources/data/mineralogy/recipe/schist_wall.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/schist" - } - }, - "result": { - "id": "mineralogy:schist_wall", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/schist" + }, + "result": { + "id": "mineralogy:schist_wall", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/scoria_brick.json b/src/main/resources/data/mineralogy/recipe/scoria_brick.json index 6e028c062..7d80233fb 100644 --- a/src/main/resources/data/mineralogy/recipe/scoria_brick.json +++ b/src/main/resources/data/mineralogy/recipe/scoria_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/scoria" - } - }, - "result": { - "id": "mineralogy:scoria_brick", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "#mineralogy:stones/scoria" + }, + "result": { + "id": "mineralogy:scoria_brick", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/scoria_brick_block_polishing.json b/src/main/resources/data/mineralogy/recipe/scoria_brick_block_polishing.json index 299986f2f..099efef55 100644 --- a/src/main/resources/data/mineralogy/recipe/scoria_brick_block_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/scoria_brick_block_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:scoria_brick" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:scoria_smooth_brick", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:scoria_brick", + "#c:sands" + ], + "result": { + "id": "mineralogy:scoria_smooth_brick", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/scoria_brick_furnace.json b/src/main/resources/data/mineralogy/recipe/scoria_brick_furnace.json index 561aa1bd3..c05f8b189 100644 --- a/src/main/resources/data/mineralogy/recipe/scoria_brick_furnace.json +++ b/src/main/resources/data/mineralogy/recipe/scoria_brick_furnace.json @@ -1,22 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "xxx", - "xyx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:slabs/scoria/brick" - }, - "y": { - "item": "minecraft:furnace" - } - }, - "result": { - "id": "mineralogy:scoria_brick_furnace", - "count": 1 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "xxx", + "xyx", + "xxx" + ], + "key": { + "x": "#mineralogy:slabs/scoria/brick", + "y": "minecraft:furnace" + }, + "result": { + "id": "mineralogy:scoria_brick_furnace", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/scoria_brick_slab.json b/src/main/resources/data/mineralogy/recipe/scoria_brick_slab.json index 4658f60d1..891924986 100644 --- a/src/main/resources/data/mineralogy/recipe/scoria_brick_slab.json +++ b/src/main/resources/data/mineralogy/recipe/scoria_brick_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:scoria_brick" - } - }, - "result": { - "id": "mineralogy:scoria_brick_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:scoria_brick" + }, + "result": { + "id": "mineralogy:scoria_brick_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/scoria_brick_slab_polishing.json b/src/main/resources/data/mineralogy/recipe/scoria_brick_slab_polishing.json index ca691e42d..1edfe2ff5 100644 --- a/src/main/resources/data/mineralogy/recipe/scoria_brick_slab_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/scoria_brick_slab_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:scoria_brick_slab" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:scoria_smooth_brick_slab", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:scoria_brick_slab", + "#c:sands" + ], + "result": { + "id": "mineralogy:scoria_smooth_brick_slab", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/scoria_brick_slab_recombination.json b/src/main/resources/data/mineralogy/recipe/scoria_brick_slab_recombination.json index abf152a09..9f46814cb 100644 --- a/src/main/resources/data/mineralogy/recipe/scoria_brick_slab_recombination.json +++ b/src/main/resources/data/mineralogy/recipe/scoria_brick_slab_recombination.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:scoria_brick_slab" - }, - { - "item": "mineralogy:scoria_brick_slab" - } - ], - "result": { - "id": "mineralogy:scoria_brick", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:scoria_brick_slab", + "mineralogy:scoria_brick_slab" + ], + "result": { + "id": "mineralogy:scoria_brick", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/scoria_brick_stairs.json b/src/main/resources/data/mineralogy/recipe/scoria_brick_stairs.json index 57dc2821a..0dee15426 100644 --- a/src/main/resources/data/mineralogy/recipe/scoria_brick_stairs.json +++ b/src/main/resources/data/mineralogy/recipe/scoria_brick_stairs.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - "xx ", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/scoria/brick" - } - }, - "result": { - "id": "mineralogy:scoria_brick_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + "xx ", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/scoria/brick" + }, + "result": { + "id": "mineralogy:scoria_brick_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/scoria_brick_stairs_polishing.json b/src/main/resources/data/mineralogy/recipe/scoria_brick_stairs_polishing.json index 3e0cc7a41..0d3e17162 100644 --- a/src/main/resources/data/mineralogy/recipe/scoria_brick_stairs_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/scoria_brick_stairs_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:scoria_brick_stairs" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:scoria_smooth_brick_stairs", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:scoria_brick_stairs", + "#c:sands" + ], + "result": { + "id": "mineralogy:scoria_smooth_brick_stairs", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/scoria_brick_wall.json b/src/main/resources/data/mineralogy/recipe/scoria_brick_wall.json index 916b495be..eb71a3b7d 100644 --- a/src/main/resources/data/mineralogy/recipe/scoria_brick_wall.json +++ b/src/main/resources/data/mineralogy/recipe/scoria_brick_wall.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/scoria/brick" - } - }, - "result": { - "id": "mineralogy:scoria_brick_wall", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/scoria/brick" + }, + "result": { + "id": "mineralogy:scoria_brick_wall", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/scoria_brick_wall_polishing.json b/src/main/resources/data/mineralogy/recipe/scoria_brick_wall_polishing.json index ba4f27aef..df83f2b65 100644 --- a/src/main/resources/data/mineralogy/recipe/scoria_brick_wall_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/scoria_brick_wall_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:scoria_brick_wall" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:scoria_smooth_brick_wall", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:scoria_brick_wall", + "#c:sands" + ], + "result": { + "id": "mineralogy:scoria_smooth_brick_wall", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/scoria_cobblestone.json b/src/main/resources/data/mineralogy/recipe/scoria_cobblestone.json index 3a56f8a65..dfee9ba0a 100644 --- a/src/main/resources/data/mineralogy/recipe/scoria_cobblestone.json +++ b/src/main/resources/data/mineralogy/recipe/scoria_cobblestone.json @@ -1,22 +1,14 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "tag": "mineralogy:stones/scoria" - }, - { - "tag": "mineralogy:stones/scoria" - }, - { - "item": "minecraft:gravel" - }, - { - "item": "minecraft:gravel" - } - ], - "result": { - "id": "minecraft:cobblestone", - "count": 4 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "#mineralogy:stones/scoria", + "#mineralogy:stones/scoria", + "minecraft:gravel", + "minecraft:gravel" + ], + "result": { + "id": "minecraft:cobblestone", + "count": 4 + } } diff --git a/src/main/resources/data/mineralogy/recipe/scoria_furnace.json b/src/main/resources/data/mineralogy/recipe/scoria_furnace.json index ef2b105e3..a8e9d76a1 100644 --- a/src/main/resources/data/mineralogy/recipe/scoria_furnace.json +++ b/src/main/resources/data/mineralogy/recipe/scoria_furnace.json @@ -1,22 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "xxx", - "xyx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:slabs/scoria" - }, - "y": { - "item": "minecraft:furnace" - } - }, - "result": { - "id": "mineralogy:scoria_furnace", - "count": 1 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "xxx", + "xyx", + "xxx" + ], + "key": { + "x": "#mineralogy:slabs/scoria", + "y": "minecraft:furnace" + }, + "result": { + "id": "mineralogy:scoria_furnace", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/scoria_polished_brick_slab_recombination.json b/src/main/resources/data/mineralogy/recipe/scoria_polished_brick_slab_recombination.json index b9bb3fbb5..ae5460bc8 100644 --- a/src/main/resources/data/mineralogy/recipe/scoria_polished_brick_slab_recombination.json +++ b/src/main/resources/data/mineralogy/recipe/scoria_polished_brick_slab_recombination.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:scoria_smooth_brick_slab" - }, - { - "item": "mineralogy:scoria_smooth_brick_slab" - } - ], - "result": { - "id": "mineralogy:scoria_smooth_brick", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:scoria_smooth_brick_slab", + "mineralogy:scoria_smooth_brick_slab" + ], + "result": { + "id": "mineralogy:scoria_smooth_brick", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/scoria_polished_slab_recombination.json b/src/main/resources/data/mineralogy/recipe/scoria_polished_slab_recombination.json index a84e92a21..b10202642 100644 --- a/src/main/resources/data/mineralogy/recipe/scoria_polished_slab_recombination.json +++ b/src/main/resources/data/mineralogy/recipe/scoria_polished_slab_recombination.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:scoria_smooth_slab" - }, - { - "item": "mineralogy:scoria_smooth_slab" - } - ], - "result": { - "id": "mineralogy:scoria_smooth", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:scoria_smooth_slab", + "mineralogy:scoria_smooth_slab" + ], + "result": { + "id": "mineralogy:scoria_smooth", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/scoria_polished_slabs_to_brick.json b/src/main/resources/data/mineralogy/recipe/scoria_polished_slabs_to_brick.json index a6c01835c..b220cc170 100644 --- a/src/main/resources/data/mineralogy/recipe/scoria_polished_slabs_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/scoria_polished_slabs_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:scoria_smooth_slab" - } - }, - "result": { - "id": "mineralogy:scoria_smooth_brick_slab", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:scoria_smooth_slab" + }, + "result": { + "id": "mineralogy:scoria_smooth_brick_slab", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/scoria_polished_stairs_to_brick.json b/src/main/resources/data/mineralogy/recipe/scoria_polished_stairs_to_brick.json index 89a6fd8e6..5cefd7b2b 100644 --- a/src/main/resources/data/mineralogy/recipe/scoria_polished_stairs_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/scoria_polished_stairs_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:scoria_smooth_stairs" - } - }, - "result": { - "id": "mineralogy:scoria_smooth_brick_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:scoria_smooth_stairs" + }, + "result": { + "id": "mineralogy:scoria_smooth_brick_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/scoria_polished_walls_to_brick.json b/src/main/resources/data/mineralogy/recipe/scoria_polished_walls_to_brick.json index 87c30e44d..493fa0f63 100644 --- a/src/main/resources/data/mineralogy/recipe/scoria_polished_walls_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/scoria_polished_walls_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:scoria_smooth_wall" - } - }, - "result": { - "id": "mineralogy:scoria_smooth_brick_wall", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:scoria_smooth_wall" + }, + "result": { + "id": "mineralogy:scoria_smooth_brick_wall", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/scoria_raw_slab_polishing.json b/src/main/resources/data/mineralogy/recipe/scoria_raw_slab_polishing.json index 01ee41c76..aa224b42c 100644 --- a/src/main/resources/data/mineralogy/recipe/scoria_raw_slab_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/scoria_raw_slab_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:scoria_slab" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:scoria_smooth_slab", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:scoria_slab", + "#c:sands" + ], + "result": { + "id": "mineralogy:scoria_smooth_slab", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/scoria_raw_slab_recombination.json b/src/main/resources/data/mineralogy/recipe/scoria_raw_slab_recombination.json index 9cc90d610..7430d2bab 100644 --- a/src/main/resources/data/mineralogy/recipe/scoria_raw_slab_recombination.json +++ b/src/main/resources/data/mineralogy/recipe/scoria_raw_slab_recombination.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:scoria_slab" - }, - { - "item": "mineralogy:scoria_slab" - } - ], - "result": { - "id": "mineralogy:scoria", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:scoria_slab", + "mineralogy:scoria_slab" + ], + "result": { + "id": "mineralogy:scoria", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/scoria_raw_slabs_to_brick.json b/src/main/resources/data/mineralogy/recipe/scoria_raw_slabs_to_brick.json index f7c6e1990..116340c4d 100644 --- a/src/main/resources/data/mineralogy/recipe/scoria_raw_slabs_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/scoria_raw_slabs_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:scoria_slab" - } - }, - "result": { - "id": "mineralogy:scoria_brick_slab", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:scoria_slab" + }, + "result": { + "id": "mineralogy:scoria_brick_slab", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/scoria_raw_stairs_polishing.json b/src/main/resources/data/mineralogy/recipe/scoria_raw_stairs_polishing.json index f15c84f77..7c387f2c2 100644 --- a/src/main/resources/data/mineralogy/recipe/scoria_raw_stairs_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/scoria_raw_stairs_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:scoria_stairs" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:scoria_smooth_stairs", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:scoria_stairs", + "#c:sands" + ], + "result": { + "id": "mineralogy:scoria_smooth_stairs", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/scoria_raw_stairs_to_brick.json b/src/main/resources/data/mineralogy/recipe/scoria_raw_stairs_to_brick.json index a9bbeb378..2c6fa3471 100644 --- a/src/main/resources/data/mineralogy/recipe/scoria_raw_stairs_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/scoria_raw_stairs_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:scoria_stairs" - } - }, - "result": { - "id": "mineralogy:scoria_brick_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:scoria_stairs" + }, + "result": { + "id": "mineralogy:scoria_brick_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/scoria_raw_wall_polishing.json b/src/main/resources/data/mineralogy/recipe/scoria_raw_wall_polishing.json index b761eb1a1..e9bf25960 100644 --- a/src/main/resources/data/mineralogy/recipe/scoria_raw_wall_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/scoria_raw_wall_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:scoria_wall" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:scoria_smooth_wall", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:scoria_wall", + "#c:sands" + ], + "result": { + "id": "mineralogy:scoria_smooth_wall", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/scoria_raw_walls_to_brick.json b/src/main/resources/data/mineralogy/recipe/scoria_raw_walls_to_brick.json index d692d799f..e4a7cbd60 100644 --- a/src/main/resources/data/mineralogy/recipe/scoria_raw_walls_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/scoria_raw_walls_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:scoria_wall" - } - }, - "result": { - "id": "mineralogy:scoria_brick_wall", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:scoria_wall" + }, + "result": { + "id": "mineralogy:scoria_brick_wall", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/scoria_relief_axe.json b/src/main/resources/data/mineralogy/recipe/scoria_relief_axe.json index ffa053703..c2baa1a25 100644 --- a/src/main/resources/data/mineralogy/recipe/scoria_relief_axe.json +++ b/src/main/resources/data/mineralogy/recipe/scoria_relief_axe.json @@ -1,37 +1,19 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:scoria_relief_blank" - }, - { - "item": "mineralogy:scoria_relief_blank" - }, - { - "item": "mineralogy:scoria_relief_blank" - }, - { - "item": "mineralogy:scoria_relief_blank" - }, - { - "item": "mineralogy:scoria_relief_blank" - }, - { - "item": "mineralogy:scoria_relief_blank" - }, - { - "item": "mineralogy:scoria_relief_blank" - }, - { - "item": "mineralogy:scoria_relief_blank" - }, - { - "item": "minecraft:stone_axe" - } - ], - "result": { - "id": "mineralogy:scoria_relief_axe", - "count": 8 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:scoria_relief_blank", + "mineralogy:scoria_relief_blank", + "mineralogy:scoria_relief_blank", + "mineralogy:scoria_relief_blank", + "mineralogy:scoria_relief_blank", + "mineralogy:scoria_relief_blank", + "mineralogy:scoria_relief_blank", + "mineralogy:scoria_relief_blank", + "minecraft:stone_axe" + ], + "result": { + "id": "mineralogy:scoria_relief_axe", + "count": 8 + } } diff --git a/src/main/resources/data/mineralogy/recipe/scoria_relief_blank.json b/src/main/resources/data/mineralogy/recipe/scoria_relief_blank.json index 14d809c30..5bbfcf712 100644 --- a/src/main/resources/data/mineralogy/recipe/scoria_relief_blank.json +++ b/src/main/resources/data/mineralogy/recipe/scoria_relief_blank.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx", - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:scoria_smooth" - } - }, - "result": { - "id": "mineralogy:scoria_relief_blank", - "count": 16 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx", + "xxx" + ], + "key": { + "x": "mineralogy:scoria_smooth" + }, + "result": { + "id": "mineralogy:scoria_relief_blank", + "count": 16 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/scoria_relief_cross.json b/src/main/resources/data/mineralogy/recipe/scoria_relief_cross.json index a3ae7a4a0..d2c05d7c4 100644 --- a/src/main/resources/data/mineralogy/recipe/scoria_relief_cross.json +++ b/src/main/resources/data/mineralogy/recipe/scoria_relief_cross.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x x", - " ", - "x x" - ], - "key": { - "x": { - "item": "mineralogy:scoria_relief_blank" - } - }, - "result": { - "id": "mineralogy:scoria_relief_cross", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x x", + " ", + "x x" + ], + "key": { + "x": "mineralogy:scoria_relief_blank" + }, + "result": { + "id": "mineralogy:scoria_relief_cross", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/scoria_relief_hammer.json b/src/main/resources/data/mineralogy/recipe/scoria_relief_hammer.json index 4833a7b62..0baf0abff 100644 --- a/src/main/resources/data/mineralogy/recipe/scoria_relief_hammer.json +++ b/src/main/resources/data/mineralogy/recipe/scoria_relief_hammer.json @@ -1,25 +1,19 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "zxz", - "zyz", - "zzz" - ], - "key": { - "x": { - "item": "mineralogy:scoria_smooth" - }, - "y": { - "item": "minecraft:stick" - }, - "z": { - "item": "mineralogy:scoria_relief_blank" - } - }, - "result": { - "id": "mineralogy:scoria_relief_hammer", - "count": 7 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "zxz", + "zyz", + "zzz" + ], + "key": { + "x": "mineralogy:scoria_smooth", + "y": "minecraft:stick", + "z": "mineralogy:scoria_relief_blank" + }, + "result": { + "id": "mineralogy:scoria_relief_hammer", + "count": 7 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/scoria_relief_hoe.json b/src/main/resources/data/mineralogy/recipe/scoria_relief_hoe.json index 8cebdf985..73586099b 100644 --- a/src/main/resources/data/mineralogy/recipe/scoria_relief_hoe.json +++ b/src/main/resources/data/mineralogy/recipe/scoria_relief_hoe.json @@ -1,37 +1,19 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:scoria_relief_blank" - }, - { - "item": "mineralogy:scoria_relief_blank" - }, - { - "item": "mineralogy:scoria_relief_blank" - }, - { - "item": "mineralogy:scoria_relief_blank" - }, - { - "item": "mineralogy:scoria_relief_blank" - }, - { - "item": "mineralogy:scoria_relief_blank" - }, - { - "item": "mineralogy:scoria_relief_blank" - }, - { - "item": "mineralogy:scoria_relief_blank" - }, - { - "item": "minecraft:stone_hoe" - } - ], - "result": { - "id": "mineralogy:scoria_relief_hoe", - "count": 8 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:scoria_relief_blank", + "mineralogy:scoria_relief_blank", + "mineralogy:scoria_relief_blank", + "mineralogy:scoria_relief_blank", + "mineralogy:scoria_relief_blank", + "mineralogy:scoria_relief_blank", + "mineralogy:scoria_relief_blank", + "mineralogy:scoria_relief_blank", + "minecraft:stone_hoe" + ], + "result": { + "id": "mineralogy:scoria_relief_hoe", + "count": 8 + } } diff --git a/src/main/resources/data/mineralogy/recipe/scoria_relief_horizontal.json b/src/main/resources/data/mineralogy/recipe/scoria_relief_horizontal.json index e7f342432..43eadd24a 100644 --- a/src/main/resources/data/mineralogy/recipe/scoria_relief_horizontal.json +++ b/src/main/resources/data/mineralogy/recipe/scoria_relief_horizontal.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:scoria_relief_blank" - } - }, - "result": { - "id": "mineralogy:scoria_relief_horizontal", - "count": 3 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:scoria_relief_blank" + }, + "result": { + "id": "mineralogy:scoria_relief_horizontal", + "count": 3 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/scoria_relief_i.json b/src/main/resources/data/mineralogy/recipe/scoria_relief_i.json index d7509a58b..2cd23af7f 100644 --- a/src/main/resources/data/mineralogy/recipe/scoria_relief_i.json +++ b/src/main/resources/data/mineralogy/recipe/scoria_relief_i.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - " x ", - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:scoria_relief_blank" - } - }, - "result": { - "id": "mineralogy:scoria_relief_i", - "count": 7 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + " x ", + "xxx" + ], + "key": { + "x": "mineralogy:scoria_relief_blank" + }, + "result": { + "id": "mineralogy:scoria_relief_i", + "count": 7 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/scoria_relief_left.json b/src/main/resources/data/mineralogy/recipe/scoria_relief_left.json index 58140cacf..e30ab4383 100644 --- a/src/main/resources/data/mineralogy/recipe/scoria_relief_left.json +++ b/src/main/resources/data/mineralogy/recipe/scoria_relief_left.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - " x ", - " x" - ], - "key": { - "x": { - "item": "mineralogy:scoria_relief_blank" - } - }, - "result": { - "id": "mineralogy:scoria_relief_left", - "count": 3 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + " x ", + " x" + ], + "key": { + "x": "mineralogy:scoria_relief_blank" + }, + "result": { + "id": "mineralogy:scoria_relief_left", + "count": 3 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/scoria_relief_pickaxe.json b/src/main/resources/data/mineralogy/recipe/scoria_relief_pickaxe.json index dbf367621..5702041c3 100644 --- a/src/main/resources/data/mineralogy/recipe/scoria_relief_pickaxe.json +++ b/src/main/resources/data/mineralogy/recipe/scoria_relief_pickaxe.json @@ -1,37 +1,19 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:scoria_relief_blank" - }, - { - "item": "mineralogy:scoria_relief_blank" - }, - { - "item": "mineralogy:scoria_relief_blank" - }, - { - "item": "mineralogy:scoria_relief_blank" - }, - { - "item": "mineralogy:scoria_relief_blank" - }, - { - "item": "mineralogy:scoria_relief_blank" - }, - { - "item": "mineralogy:scoria_relief_blank" - }, - { - "item": "mineralogy:scoria_relief_blank" - }, - { - "item": "minecraft:stone_pickaxe" - } - ], - "result": { - "id": "mineralogy:scoria_relief_pickaxe", - "count": 8 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:scoria_relief_blank", + "mineralogy:scoria_relief_blank", + "mineralogy:scoria_relief_blank", + "mineralogy:scoria_relief_blank", + "mineralogy:scoria_relief_blank", + "mineralogy:scoria_relief_blank", + "mineralogy:scoria_relief_blank", + "mineralogy:scoria_relief_blank", + "minecraft:stone_pickaxe" + ], + "result": { + "id": "mineralogy:scoria_relief_pickaxe", + "count": 8 + } } diff --git a/src/main/resources/data/mineralogy/recipe/scoria_relief_plus.json b/src/main/resources/data/mineralogy/recipe/scoria_relief_plus.json index 5aecee67d..c06b37ec4 100644 --- a/src/main/resources/data/mineralogy/recipe/scoria_relief_plus.json +++ b/src/main/resources/data/mineralogy/recipe/scoria_relief_plus.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - " x ", - "xxx", - " x " - ], - "key": { - "x": { - "item": "mineralogy:scoria_relief_blank" - } - }, - "result": { - "id": "mineralogy:scoria_relief_plus", - "count": 5 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + " x ", + "xxx", + " x " + ], + "key": { + "x": "mineralogy:scoria_relief_blank" + }, + "result": { + "id": "mineralogy:scoria_relief_plus", + "count": 5 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/scoria_relief_right.json b/src/main/resources/data/mineralogy/recipe/scoria_relief_right.json index 3428c22a5..9ba688153 100644 --- a/src/main/resources/data/mineralogy/recipe/scoria_relief_right.json +++ b/src/main/resources/data/mineralogy/recipe/scoria_relief_right.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:scoria_relief_left" - }, - { - "item": "mineralogy:scoria_relief_left" - } - ], - "result": { - "id": "mineralogy:scoria_relief_right", - "count": 2 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:scoria_relief_left", + "mineralogy:scoria_relief_left" + ], + "result": { + "id": "mineralogy:scoria_relief_right", + "count": 2 + } } diff --git a/src/main/resources/data/mineralogy/recipe/scoria_relief_sword.json b/src/main/resources/data/mineralogy/recipe/scoria_relief_sword.json index 4d058ab9a..a86872624 100644 --- a/src/main/resources/data/mineralogy/recipe/scoria_relief_sword.json +++ b/src/main/resources/data/mineralogy/recipe/scoria_relief_sword.json @@ -1,37 +1,19 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:scoria_relief_blank" - }, - { - "item": "mineralogy:scoria_relief_blank" - }, - { - "item": "mineralogy:scoria_relief_blank" - }, - { - "item": "mineralogy:scoria_relief_blank" - }, - { - "item": "mineralogy:scoria_relief_blank" - }, - { - "item": "mineralogy:scoria_relief_blank" - }, - { - "item": "mineralogy:scoria_relief_blank" - }, - { - "item": "mineralogy:scoria_relief_blank" - }, - { - "item": "minecraft:stone_sword" - } - ], - "result": { - "id": "mineralogy:scoria_relief_sword", - "count": 8 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:scoria_relief_blank", + "mineralogy:scoria_relief_blank", + "mineralogy:scoria_relief_blank", + "mineralogy:scoria_relief_blank", + "mineralogy:scoria_relief_blank", + "mineralogy:scoria_relief_blank", + "mineralogy:scoria_relief_blank", + "mineralogy:scoria_relief_blank", + "minecraft:stone_sword" + ], + "result": { + "id": "mineralogy:scoria_relief_sword", + "count": 8 + } } diff --git a/src/main/resources/data/mineralogy/recipe/scoria_relief_vertical.json b/src/main/resources/data/mineralogy/recipe/scoria_relief_vertical.json index 8a7ed9270..2e21f19d5 100644 --- a/src/main/resources/data/mineralogy/recipe/scoria_relief_vertical.json +++ b/src/main/resources/data/mineralogy/recipe/scoria_relief_vertical.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x", - "x", - "x" - ], - "key": { - "x": { - "item": "mineralogy:scoria_relief_blank" - } - }, - "result": { - "id": "mineralogy:scoria_relief_vertical", - "count": 3 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x", + "x", + "x" + ], + "key": { + "x": "mineralogy:scoria_relief_blank" + }, + "result": { + "id": "mineralogy:scoria_relief_vertical", + "count": 3 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/scoria_slab.json b/src/main/resources/data/mineralogy/recipe/scoria_slab.json index 524d98aaf..fe7a41534 100644 --- a/src/main/resources/data/mineralogy/recipe/scoria_slab.json +++ b/src/main/resources/data/mineralogy/recipe/scoria_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:scoria" - } - }, - "result": { - "id": "mineralogy:scoria_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:scoria" + }, + "result": { + "id": "mineralogy:scoria_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/scoria_smooth.json b/src/main/resources/data/mineralogy/recipe/scoria_smooth.json index 832e1f867..4f4be9287 100644 --- a/src/main/resources/data/mineralogy/recipe/scoria_smooth.json +++ b/src/main/resources/data/mineralogy/recipe/scoria_smooth.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "tag": "mineralogy:stones/scoria" - }, - { - "item": "minecraft:sand" - } - ], - "result": { - "id": "mineralogy:scoria_smooth", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "#mineralogy:stones/scoria", + "minecraft:sand" + ], + "result": { + "id": "mineralogy:scoria_smooth", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/scoria_smooth_brick.json b/src/main/resources/data/mineralogy/recipe/scoria_smooth_brick.json index a566633f4..53b8781c6 100644 --- a/src/main/resources/data/mineralogy/recipe/scoria_smooth_brick.json +++ b/src/main/resources/data/mineralogy/recipe/scoria_smooth_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/scoria/smooth" - } - }, - "result": { - "id": "mineralogy:scoria_smooth_brick", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "#mineralogy:stones/scoria/smooth" + }, + "result": { + "id": "mineralogy:scoria_smooth_brick", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/scoria_smooth_brick_furnace.json b/src/main/resources/data/mineralogy/recipe/scoria_smooth_brick_furnace.json index bf693dc0c..974211de1 100644 --- a/src/main/resources/data/mineralogy/recipe/scoria_smooth_brick_furnace.json +++ b/src/main/resources/data/mineralogy/recipe/scoria_smooth_brick_furnace.json @@ -1,22 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "xxx", - "xyx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:slabs/scoria/smooth_brick" - }, - "y": { - "item": "minecraft:furnace" - } - }, - "result": { - "id": "mineralogy:scoria_smooth_brick_furnace", - "count": 1 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "xxx", + "xyx", + "xxx" + ], + "key": { + "x": "#mineralogy:slabs/scoria/smooth_brick", + "y": "minecraft:furnace" + }, + "result": { + "id": "mineralogy:scoria_smooth_brick_furnace", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/scoria_smooth_brick_slab.json b/src/main/resources/data/mineralogy/recipe/scoria_smooth_brick_slab.json index 1b092fabd..41a728080 100644 --- a/src/main/resources/data/mineralogy/recipe/scoria_smooth_brick_slab.json +++ b/src/main/resources/data/mineralogy/recipe/scoria_smooth_brick_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:scoria_smooth_brick" - } - }, - "result": { - "id": "mineralogy:scoria_smooth_brick_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:scoria_smooth_brick" + }, + "result": { + "id": "mineralogy:scoria_smooth_brick_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/scoria_smooth_brick_stairs.json b/src/main/resources/data/mineralogy/recipe/scoria_smooth_brick_stairs.json index 7728d6a47..9f5b7c85a 100644 --- a/src/main/resources/data/mineralogy/recipe/scoria_smooth_brick_stairs.json +++ b/src/main/resources/data/mineralogy/recipe/scoria_smooth_brick_stairs.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - "xx ", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/scoria/smooth_brick" - } - }, - "result": { - "id": "mineralogy:scoria_smooth_brick_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + "xx ", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/scoria/smooth_brick" + }, + "result": { + "id": "mineralogy:scoria_smooth_brick_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/scoria_smooth_brick_wall.json b/src/main/resources/data/mineralogy/recipe/scoria_smooth_brick_wall.json index 055d9de49..db68e507a 100644 --- a/src/main/resources/data/mineralogy/recipe/scoria_smooth_brick_wall.json +++ b/src/main/resources/data/mineralogy/recipe/scoria_smooth_brick_wall.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/scoria/smooth_brick" - } - }, - "result": { - "id": "mineralogy:scoria_smooth_brick_wall", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/scoria/smooth_brick" + }, + "result": { + "id": "mineralogy:scoria_smooth_brick_wall", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/scoria_smooth_furnace.json b/src/main/resources/data/mineralogy/recipe/scoria_smooth_furnace.json index 40e0879bf..c84788e0d 100644 --- a/src/main/resources/data/mineralogy/recipe/scoria_smooth_furnace.json +++ b/src/main/resources/data/mineralogy/recipe/scoria_smooth_furnace.json @@ -1,22 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "xxx", - "xyx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:slabs/scoria/smooth" - }, - "y": { - "item": "minecraft:furnace" - } - }, - "result": { - "id": "mineralogy:scoria_smooth_furnace", - "count": 1 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "xxx", + "xyx", + "xxx" + ], + "key": { + "x": "#mineralogy:slabs/scoria/smooth", + "y": "minecraft:furnace" + }, + "result": { + "id": "mineralogy:scoria_smooth_furnace", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/scoria_smooth_slab.json b/src/main/resources/data/mineralogy/recipe/scoria_smooth_slab.json index a3ddc21dd..09fb300fc 100644 --- a/src/main/resources/data/mineralogy/recipe/scoria_smooth_slab.json +++ b/src/main/resources/data/mineralogy/recipe/scoria_smooth_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:scoria_smooth" - } - }, - "result": { - "id": "mineralogy:scoria_smooth_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:scoria_smooth" + }, + "result": { + "id": "mineralogy:scoria_smooth_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/scoria_smooth_stairs.json b/src/main/resources/data/mineralogy/recipe/scoria_smooth_stairs.json index 259c5e716..86b288447 100644 --- a/src/main/resources/data/mineralogy/recipe/scoria_smooth_stairs.json +++ b/src/main/resources/data/mineralogy/recipe/scoria_smooth_stairs.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - "xx ", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/scoria/smooth" - } - }, - "result": { - "id": "mineralogy:scoria_smooth_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + "xx ", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/scoria/smooth" + }, + "result": { + "id": "mineralogy:scoria_smooth_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/scoria_smooth_wall.json b/src/main/resources/data/mineralogy/recipe/scoria_smooth_wall.json index e2fd92439..eb8f4c9da 100644 --- a/src/main/resources/data/mineralogy/recipe/scoria_smooth_wall.json +++ b/src/main/resources/data/mineralogy/recipe/scoria_smooth_wall.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/scoria/smooth" - } - }, - "result": { - "id": "mineralogy:scoria_smooth_wall", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/scoria/smooth" + }, + "result": { + "id": "mineralogy:scoria_smooth_wall", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/scoria_stairs.json b/src/main/resources/data/mineralogy/recipe/scoria_stairs.json index 00c81db70..c2b39a019 100644 --- a/src/main/resources/data/mineralogy/recipe/scoria_stairs.json +++ b/src/main/resources/data/mineralogy/recipe/scoria_stairs.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - "xx ", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/scoria" - } - }, - "result": { - "id": "mineralogy:scoria_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + "xx ", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/scoria" + }, + "result": { + "id": "mineralogy:scoria_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/scoria_to_stone.json b/src/main/resources/data/mineralogy/recipe/scoria_to_stone.json index 8ed1a0a8d..a0083d680 100644 --- a/src/main/resources/data/mineralogy/recipe/scoria_to_stone.json +++ b/src/main/resources/data/mineralogy/recipe/scoria_to_stone.json @@ -1,12 +1,10 @@ { - "type": "minecraft:smelting", - "category": "blocks", - "ingredient": { - "item": "mineralogy:scoria" - }, - "result": { - "id": "minecraft:stone" - }, - "experience": 0.1, - "cookingtime": 200 + "type": "minecraft:smelting", + "category": "blocks", + "ingredient": "mineralogy:scoria", + "result": { + "id": "minecraft:stone" + }, + "experience": 0.1, + "cookingtime": 200 } diff --git a/src/main/resources/data/mineralogy/recipe/scoria_wall.json b/src/main/resources/data/mineralogy/recipe/scoria_wall.json index 17ee9662b..2b19437e9 100644 --- a/src/main/resources/data/mineralogy/recipe/scoria_wall.json +++ b/src/main/resources/data/mineralogy/recipe/scoria_wall.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/scoria" - } - }, - "result": { - "id": "mineralogy:scoria_wall", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/scoria" + }, + "result": { + "id": "mineralogy:scoria_wall", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/shale_brick.json b/src/main/resources/data/mineralogy/recipe/shale_brick.json index 43e605c4a..9fb6d7637 100644 --- a/src/main/resources/data/mineralogy/recipe/shale_brick.json +++ b/src/main/resources/data/mineralogy/recipe/shale_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/shale" - } - }, - "result": { - "id": "mineralogy:shale_brick", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "#mineralogy:stones/shale" + }, + "result": { + "id": "mineralogy:shale_brick", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/shale_brick_block_polishing.json b/src/main/resources/data/mineralogy/recipe/shale_brick_block_polishing.json index 004bc5004..f5baade00 100644 --- a/src/main/resources/data/mineralogy/recipe/shale_brick_block_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/shale_brick_block_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:shale_brick" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:shale_smooth_brick", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:shale_brick", + "#c:sands" + ], + "result": { + "id": "mineralogy:shale_smooth_brick", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/shale_brick_furnace.json b/src/main/resources/data/mineralogy/recipe/shale_brick_furnace.json index b1154ea60..032e239da 100644 --- a/src/main/resources/data/mineralogy/recipe/shale_brick_furnace.json +++ b/src/main/resources/data/mineralogy/recipe/shale_brick_furnace.json @@ -1,22 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "xxx", - "xyx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:slabs/shale/brick" - }, - "y": { - "item": "minecraft:furnace" - } - }, - "result": { - "id": "mineralogy:shale_brick_furnace", - "count": 1 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "xxx", + "xyx", + "xxx" + ], + "key": { + "x": "#mineralogy:slabs/shale/brick", + "y": "minecraft:furnace" + }, + "result": { + "id": "mineralogy:shale_brick_furnace", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/shale_brick_slab.json b/src/main/resources/data/mineralogy/recipe/shale_brick_slab.json index 7fa9a76a8..a392a9906 100644 --- a/src/main/resources/data/mineralogy/recipe/shale_brick_slab.json +++ b/src/main/resources/data/mineralogy/recipe/shale_brick_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:shale_brick" - } - }, - "result": { - "id": "mineralogy:shale_brick_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:shale_brick" + }, + "result": { + "id": "mineralogy:shale_brick_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/shale_brick_slab_polishing.json b/src/main/resources/data/mineralogy/recipe/shale_brick_slab_polishing.json index 03e4a6a3c..75a89760b 100644 --- a/src/main/resources/data/mineralogy/recipe/shale_brick_slab_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/shale_brick_slab_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:shale_brick_slab" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:shale_smooth_brick_slab", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:shale_brick_slab", + "#c:sands" + ], + "result": { + "id": "mineralogy:shale_smooth_brick_slab", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/shale_brick_slab_recombination.json b/src/main/resources/data/mineralogy/recipe/shale_brick_slab_recombination.json index 2575a7652..44a5939d5 100644 --- a/src/main/resources/data/mineralogy/recipe/shale_brick_slab_recombination.json +++ b/src/main/resources/data/mineralogy/recipe/shale_brick_slab_recombination.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:shale_brick_slab" - }, - { - "item": "mineralogy:shale_brick_slab" - } - ], - "result": { - "id": "mineralogy:shale_brick", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:shale_brick_slab", + "mineralogy:shale_brick_slab" + ], + "result": { + "id": "mineralogy:shale_brick", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/shale_brick_stairs.json b/src/main/resources/data/mineralogy/recipe/shale_brick_stairs.json index 2634f3878..aae5c6f9d 100644 --- a/src/main/resources/data/mineralogy/recipe/shale_brick_stairs.json +++ b/src/main/resources/data/mineralogy/recipe/shale_brick_stairs.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - "xx ", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/shale/brick" - } - }, - "result": { - "id": "mineralogy:shale_brick_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + "xx ", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/shale/brick" + }, + "result": { + "id": "mineralogy:shale_brick_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/shale_brick_stairs_polishing.json b/src/main/resources/data/mineralogy/recipe/shale_brick_stairs_polishing.json index c9c542b67..b07ff9627 100644 --- a/src/main/resources/data/mineralogy/recipe/shale_brick_stairs_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/shale_brick_stairs_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:shale_brick_stairs" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:shale_smooth_brick_stairs", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:shale_brick_stairs", + "#c:sands" + ], + "result": { + "id": "mineralogy:shale_smooth_brick_stairs", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/shale_brick_wall.json b/src/main/resources/data/mineralogy/recipe/shale_brick_wall.json index 55db39aff..9bf0b97e6 100644 --- a/src/main/resources/data/mineralogy/recipe/shale_brick_wall.json +++ b/src/main/resources/data/mineralogy/recipe/shale_brick_wall.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/shale/brick" - } - }, - "result": { - "id": "mineralogy:shale_brick_wall", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/shale/brick" + }, + "result": { + "id": "mineralogy:shale_brick_wall", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/shale_brick_wall_polishing.json b/src/main/resources/data/mineralogy/recipe/shale_brick_wall_polishing.json index afc4239cf..5884d6201 100644 --- a/src/main/resources/data/mineralogy/recipe/shale_brick_wall_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/shale_brick_wall_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:shale_brick_wall" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:shale_smooth_brick_wall", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:shale_brick_wall", + "#c:sands" + ], + "result": { + "id": "mineralogy:shale_smooth_brick_wall", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/shale_cobblestone.json b/src/main/resources/data/mineralogy/recipe/shale_cobblestone.json index d70dac06a..e4d980b39 100644 --- a/src/main/resources/data/mineralogy/recipe/shale_cobblestone.json +++ b/src/main/resources/data/mineralogy/recipe/shale_cobblestone.json @@ -1,22 +1,14 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "tag": "mineralogy:stones/shale" - }, - { - "tag": "mineralogy:stones/shale" - }, - { - "item": "minecraft:gravel" - }, - { - "item": "minecraft:gravel" - } - ], - "result": { - "id": "minecraft:cobblestone", - "count": 4 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "#mineralogy:stones/shale", + "#mineralogy:stones/shale", + "minecraft:gravel", + "minecraft:gravel" + ], + "result": { + "id": "minecraft:cobblestone", + "count": 4 + } } diff --git a/src/main/resources/data/mineralogy/recipe/shale_furnace.json b/src/main/resources/data/mineralogy/recipe/shale_furnace.json index 93752ac53..8628ed240 100644 --- a/src/main/resources/data/mineralogy/recipe/shale_furnace.json +++ b/src/main/resources/data/mineralogy/recipe/shale_furnace.json @@ -1,22 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "xxx", - "xyx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:slabs/shale" - }, - "y": { - "item": "minecraft:furnace" - } - }, - "result": { - "id": "mineralogy:shale_furnace", - "count": 1 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "xxx", + "xyx", + "xxx" + ], + "key": { + "x": "#mineralogy:slabs/shale", + "y": "minecraft:furnace" + }, + "result": { + "id": "mineralogy:shale_furnace", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/shale_polished_brick_slab_recombination.json b/src/main/resources/data/mineralogy/recipe/shale_polished_brick_slab_recombination.json index 83ce95e07..4216a9966 100644 --- a/src/main/resources/data/mineralogy/recipe/shale_polished_brick_slab_recombination.json +++ b/src/main/resources/data/mineralogy/recipe/shale_polished_brick_slab_recombination.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:shale_smooth_brick_slab" - }, - { - "item": "mineralogy:shale_smooth_brick_slab" - } - ], - "result": { - "id": "mineralogy:shale_smooth_brick", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:shale_smooth_brick_slab", + "mineralogy:shale_smooth_brick_slab" + ], + "result": { + "id": "mineralogy:shale_smooth_brick", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/shale_polished_slab_recombination.json b/src/main/resources/data/mineralogy/recipe/shale_polished_slab_recombination.json index 5c090affc..d566df9a6 100644 --- a/src/main/resources/data/mineralogy/recipe/shale_polished_slab_recombination.json +++ b/src/main/resources/data/mineralogy/recipe/shale_polished_slab_recombination.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:shale_smooth_slab" - }, - { - "item": "mineralogy:shale_smooth_slab" - } - ], - "result": { - "id": "mineralogy:shale_smooth", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:shale_smooth_slab", + "mineralogy:shale_smooth_slab" + ], + "result": { + "id": "mineralogy:shale_smooth", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/shale_polished_slabs_to_brick.json b/src/main/resources/data/mineralogy/recipe/shale_polished_slabs_to_brick.json index 53600a658..cafaaf0e9 100644 --- a/src/main/resources/data/mineralogy/recipe/shale_polished_slabs_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/shale_polished_slabs_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:shale_smooth_slab" - } - }, - "result": { - "id": "mineralogy:shale_smooth_brick_slab", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:shale_smooth_slab" + }, + "result": { + "id": "mineralogy:shale_smooth_brick_slab", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/shale_polished_stairs_to_brick.json b/src/main/resources/data/mineralogy/recipe/shale_polished_stairs_to_brick.json index 7420c6ff1..0dd6b520c 100644 --- a/src/main/resources/data/mineralogy/recipe/shale_polished_stairs_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/shale_polished_stairs_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:shale_smooth_stairs" - } - }, - "result": { - "id": "mineralogy:shale_smooth_brick_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:shale_smooth_stairs" + }, + "result": { + "id": "mineralogy:shale_smooth_brick_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/shale_polished_walls_to_brick.json b/src/main/resources/data/mineralogy/recipe/shale_polished_walls_to_brick.json index b98147365..d2e528e9c 100644 --- a/src/main/resources/data/mineralogy/recipe/shale_polished_walls_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/shale_polished_walls_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:shale_smooth_wall" - } - }, - "result": { - "id": "mineralogy:shale_smooth_brick_wall", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:shale_smooth_wall" + }, + "result": { + "id": "mineralogy:shale_smooth_brick_wall", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/shale_raw_slab_polishing.json b/src/main/resources/data/mineralogy/recipe/shale_raw_slab_polishing.json index b4d8698c3..8d84b5abd 100644 --- a/src/main/resources/data/mineralogy/recipe/shale_raw_slab_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/shale_raw_slab_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:shale_slab" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:shale_smooth_slab", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:shale_slab", + "#c:sands" + ], + "result": { + "id": "mineralogy:shale_smooth_slab", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/shale_raw_slab_recombination.json b/src/main/resources/data/mineralogy/recipe/shale_raw_slab_recombination.json index 8794e6586..bbc9bbdd6 100644 --- a/src/main/resources/data/mineralogy/recipe/shale_raw_slab_recombination.json +++ b/src/main/resources/data/mineralogy/recipe/shale_raw_slab_recombination.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:shale_slab" - }, - { - "item": "mineralogy:shale_slab" - } - ], - "result": { - "id": "mineralogy:shale", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:shale_slab", + "mineralogy:shale_slab" + ], + "result": { + "id": "mineralogy:shale", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/shale_raw_slabs_to_brick.json b/src/main/resources/data/mineralogy/recipe/shale_raw_slabs_to_brick.json index 2303934e7..2b206fa7b 100644 --- a/src/main/resources/data/mineralogy/recipe/shale_raw_slabs_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/shale_raw_slabs_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:shale_slab" - } - }, - "result": { - "id": "mineralogy:shale_brick_slab", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:shale_slab" + }, + "result": { + "id": "mineralogy:shale_brick_slab", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/shale_raw_stairs_polishing.json b/src/main/resources/data/mineralogy/recipe/shale_raw_stairs_polishing.json index 23177192f..5be6927c5 100644 --- a/src/main/resources/data/mineralogy/recipe/shale_raw_stairs_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/shale_raw_stairs_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:shale_stairs" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:shale_smooth_stairs", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:shale_stairs", + "#c:sands" + ], + "result": { + "id": "mineralogy:shale_smooth_stairs", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/shale_raw_stairs_to_brick.json b/src/main/resources/data/mineralogy/recipe/shale_raw_stairs_to_brick.json index 04af0d6e2..68fa5e987 100644 --- a/src/main/resources/data/mineralogy/recipe/shale_raw_stairs_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/shale_raw_stairs_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:shale_stairs" - } - }, - "result": { - "id": "mineralogy:shale_brick_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:shale_stairs" + }, + "result": { + "id": "mineralogy:shale_brick_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/shale_raw_wall_polishing.json b/src/main/resources/data/mineralogy/recipe/shale_raw_wall_polishing.json index b1a50d454..b898efd1f 100644 --- a/src/main/resources/data/mineralogy/recipe/shale_raw_wall_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/shale_raw_wall_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:shale_wall" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:shale_smooth_wall", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:shale_wall", + "#c:sands" + ], + "result": { + "id": "mineralogy:shale_smooth_wall", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/shale_raw_walls_to_brick.json b/src/main/resources/data/mineralogy/recipe/shale_raw_walls_to_brick.json index 214f74806..2bd8c7c1e 100644 --- a/src/main/resources/data/mineralogy/recipe/shale_raw_walls_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/shale_raw_walls_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:shale_wall" - } - }, - "result": { - "id": "mineralogy:shale_brick_wall", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:shale_wall" + }, + "result": { + "id": "mineralogy:shale_brick_wall", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/shale_relief_axe.json b/src/main/resources/data/mineralogy/recipe/shale_relief_axe.json index 5c5c45b04..9f698f7bf 100644 --- a/src/main/resources/data/mineralogy/recipe/shale_relief_axe.json +++ b/src/main/resources/data/mineralogy/recipe/shale_relief_axe.json @@ -1,37 +1,19 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:shale_relief_blank" - }, - { - "item": "mineralogy:shale_relief_blank" - }, - { - "item": "mineralogy:shale_relief_blank" - }, - { - "item": "mineralogy:shale_relief_blank" - }, - { - "item": "mineralogy:shale_relief_blank" - }, - { - "item": "mineralogy:shale_relief_blank" - }, - { - "item": "mineralogy:shale_relief_blank" - }, - { - "item": "mineralogy:shale_relief_blank" - }, - { - "item": "minecraft:stone_axe" - } - ], - "result": { - "id": "mineralogy:shale_relief_axe", - "count": 8 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:shale_relief_blank", + "mineralogy:shale_relief_blank", + "mineralogy:shale_relief_blank", + "mineralogy:shale_relief_blank", + "mineralogy:shale_relief_blank", + "mineralogy:shale_relief_blank", + "mineralogy:shale_relief_blank", + "mineralogy:shale_relief_blank", + "minecraft:stone_axe" + ], + "result": { + "id": "mineralogy:shale_relief_axe", + "count": 8 + } } diff --git a/src/main/resources/data/mineralogy/recipe/shale_relief_blank.json b/src/main/resources/data/mineralogy/recipe/shale_relief_blank.json index 03d6534d4..5738ad5d6 100644 --- a/src/main/resources/data/mineralogy/recipe/shale_relief_blank.json +++ b/src/main/resources/data/mineralogy/recipe/shale_relief_blank.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx", - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:shale_smooth" - } - }, - "result": { - "id": "mineralogy:shale_relief_blank", - "count": 16 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx", + "xxx" + ], + "key": { + "x": "mineralogy:shale_smooth" + }, + "result": { + "id": "mineralogy:shale_relief_blank", + "count": 16 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/shale_relief_cross.json b/src/main/resources/data/mineralogy/recipe/shale_relief_cross.json index 581d93a28..9568ae95b 100644 --- a/src/main/resources/data/mineralogy/recipe/shale_relief_cross.json +++ b/src/main/resources/data/mineralogy/recipe/shale_relief_cross.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x x", - " ", - "x x" - ], - "key": { - "x": { - "item": "mineralogy:shale_relief_blank" - } - }, - "result": { - "id": "mineralogy:shale_relief_cross", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x x", + " ", + "x x" + ], + "key": { + "x": "mineralogy:shale_relief_blank" + }, + "result": { + "id": "mineralogy:shale_relief_cross", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/shale_relief_hammer.json b/src/main/resources/data/mineralogy/recipe/shale_relief_hammer.json index a22cec102..dc48e8f99 100644 --- a/src/main/resources/data/mineralogy/recipe/shale_relief_hammer.json +++ b/src/main/resources/data/mineralogy/recipe/shale_relief_hammer.json @@ -1,25 +1,19 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "zxz", - "zyz", - "zzz" - ], - "key": { - "x": { - "item": "mineralogy:shale_smooth" - }, - "y": { - "item": "minecraft:stick" - }, - "z": { - "item": "mineralogy:shale_relief_blank" - } - }, - "result": { - "id": "mineralogy:shale_relief_hammer", - "count": 7 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "zxz", + "zyz", + "zzz" + ], + "key": { + "x": "mineralogy:shale_smooth", + "y": "minecraft:stick", + "z": "mineralogy:shale_relief_blank" + }, + "result": { + "id": "mineralogy:shale_relief_hammer", + "count": 7 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/shale_relief_hoe.json b/src/main/resources/data/mineralogy/recipe/shale_relief_hoe.json index 1101f065d..6423481ae 100644 --- a/src/main/resources/data/mineralogy/recipe/shale_relief_hoe.json +++ b/src/main/resources/data/mineralogy/recipe/shale_relief_hoe.json @@ -1,37 +1,19 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:shale_relief_blank" - }, - { - "item": "mineralogy:shale_relief_blank" - }, - { - "item": "mineralogy:shale_relief_blank" - }, - { - "item": "mineralogy:shale_relief_blank" - }, - { - "item": "mineralogy:shale_relief_blank" - }, - { - "item": "mineralogy:shale_relief_blank" - }, - { - "item": "mineralogy:shale_relief_blank" - }, - { - "item": "mineralogy:shale_relief_blank" - }, - { - "item": "minecraft:stone_hoe" - } - ], - "result": { - "id": "mineralogy:shale_relief_hoe", - "count": 8 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:shale_relief_blank", + "mineralogy:shale_relief_blank", + "mineralogy:shale_relief_blank", + "mineralogy:shale_relief_blank", + "mineralogy:shale_relief_blank", + "mineralogy:shale_relief_blank", + "mineralogy:shale_relief_blank", + "mineralogy:shale_relief_blank", + "minecraft:stone_hoe" + ], + "result": { + "id": "mineralogy:shale_relief_hoe", + "count": 8 + } } diff --git a/src/main/resources/data/mineralogy/recipe/shale_relief_horizontal.json b/src/main/resources/data/mineralogy/recipe/shale_relief_horizontal.json index e1e6b0ffd..b2db26a48 100644 --- a/src/main/resources/data/mineralogy/recipe/shale_relief_horizontal.json +++ b/src/main/resources/data/mineralogy/recipe/shale_relief_horizontal.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:shale_relief_blank" - } - }, - "result": { - "id": "mineralogy:shale_relief_horizontal", - "count": 3 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:shale_relief_blank" + }, + "result": { + "id": "mineralogy:shale_relief_horizontal", + "count": 3 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/shale_relief_i.json b/src/main/resources/data/mineralogy/recipe/shale_relief_i.json index 74562a9a4..04eb5e026 100644 --- a/src/main/resources/data/mineralogy/recipe/shale_relief_i.json +++ b/src/main/resources/data/mineralogy/recipe/shale_relief_i.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - " x ", - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:shale_relief_blank" - } - }, - "result": { - "id": "mineralogy:shale_relief_i", - "count": 7 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + " x ", + "xxx" + ], + "key": { + "x": "mineralogy:shale_relief_blank" + }, + "result": { + "id": "mineralogy:shale_relief_i", + "count": 7 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/shale_relief_left.json b/src/main/resources/data/mineralogy/recipe/shale_relief_left.json index ea9c6f39a..977b56203 100644 --- a/src/main/resources/data/mineralogy/recipe/shale_relief_left.json +++ b/src/main/resources/data/mineralogy/recipe/shale_relief_left.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - " x ", - " x" - ], - "key": { - "x": { - "item": "mineralogy:shale_relief_blank" - } - }, - "result": { - "id": "mineralogy:shale_relief_left", - "count": 3 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + " x ", + " x" + ], + "key": { + "x": "mineralogy:shale_relief_blank" + }, + "result": { + "id": "mineralogy:shale_relief_left", + "count": 3 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/shale_relief_pickaxe.json b/src/main/resources/data/mineralogy/recipe/shale_relief_pickaxe.json index b2664104e..f32eab688 100644 --- a/src/main/resources/data/mineralogy/recipe/shale_relief_pickaxe.json +++ b/src/main/resources/data/mineralogy/recipe/shale_relief_pickaxe.json @@ -1,37 +1,19 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:shale_relief_blank" - }, - { - "item": "mineralogy:shale_relief_blank" - }, - { - "item": "mineralogy:shale_relief_blank" - }, - { - "item": "mineralogy:shale_relief_blank" - }, - { - "item": "mineralogy:shale_relief_blank" - }, - { - "item": "mineralogy:shale_relief_blank" - }, - { - "item": "mineralogy:shale_relief_blank" - }, - { - "item": "mineralogy:shale_relief_blank" - }, - { - "item": "minecraft:stone_pickaxe" - } - ], - "result": { - "id": "mineralogy:shale_relief_pickaxe", - "count": 8 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:shale_relief_blank", + "mineralogy:shale_relief_blank", + "mineralogy:shale_relief_blank", + "mineralogy:shale_relief_blank", + "mineralogy:shale_relief_blank", + "mineralogy:shale_relief_blank", + "mineralogy:shale_relief_blank", + "mineralogy:shale_relief_blank", + "minecraft:stone_pickaxe" + ], + "result": { + "id": "mineralogy:shale_relief_pickaxe", + "count": 8 + } } diff --git a/src/main/resources/data/mineralogy/recipe/shale_relief_plus.json b/src/main/resources/data/mineralogy/recipe/shale_relief_plus.json index 1488887b0..869297653 100644 --- a/src/main/resources/data/mineralogy/recipe/shale_relief_plus.json +++ b/src/main/resources/data/mineralogy/recipe/shale_relief_plus.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - " x ", - "xxx", - " x " - ], - "key": { - "x": { - "item": "mineralogy:shale_relief_blank" - } - }, - "result": { - "id": "mineralogy:shale_relief_plus", - "count": 5 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + " x ", + "xxx", + " x " + ], + "key": { + "x": "mineralogy:shale_relief_blank" + }, + "result": { + "id": "mineralogy:shale_relief_plus", + "count": 5 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/shale_relief_right.json b/src/main/resources/data/mineralogy/recipe/shale_relief_right.json index 2ab2ad7e8..18c6d4e83 100644 --- a/src/main/resources/data/mineralogy/recipe/shale_relief_right.json +++ b/src/main/resources/data/mineralogy/recipe/shale_relief_right.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:shale_relief_left" - }, - { - "item": "mineralogy:shale_relief_left" - } - ], - "result": { - "id": "mineralogy:shale_relief_right", - "count": 2 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:shale_relief_left", + "mineralogy:shale_relief_left" + ], + "result": { + "id": "mineralogy:shale_relief_right", + "count": 2 + } } diff --git a/src/main/resources/data/mineralogy/recipe/shale_relief_sword.json b/src/main/resources/data/mineralogy/recipe/shale_relief_sword.json index 65c44d50b..66350fc83 100644 --- a/src/main/resources/data/mineralogy/recipe/shale_relief_sword.json +++ b/src/main/resources/data/mineralogy/recipe/shale_relief_sword.json @@ -1,37 +1,19 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:shale_relief_blank" - }, - { - "item": "mineralogy:shale_relief_blank" - }, - { - "item": "mineralogy:shale_relief_blank" - }, - { - "item": "mineralogy:shale_relief_blank" - }, - { - "item": "mineralogy:shale_relief_blank" - }, - { - "item": "mineralogy:shale_relief_blank" - }, - { - "item": "mineralogy:shale_relief_blank" - }, - { - "item": "mineralogy:shale_relief_blank" - }, - { - "item": "minecraft:stone_sword" - } - ], - "result": { - "id": "mineralogy:shale_relief_sword", - "count": 8 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:shale_relief_blank", + "mineralogy:shale_relief_blank", + "mineralogy:shale_relief_blank", + "mineralogy:shale_relief_blank", + "mineralogy:shale_relief_blank", + "mineralogy:shale_relief_blank", + "mineralogy:shale_relief_blank", + "mineralogy:shale_relief_blank", + "minecraft:stone_sword" + ], + "result": { + "id": "mineralogy:shale_relief_sword", + "count": 8 + } } diff --git a/src/main/resources/data/mineralogy/recipe/shale_relief_vertical.json b/src/main/resources/data/mineralogy/recipe/shale_relief_vertical.json index 4ddd66f60..0525a94f8 100644 --- a/src/main/resources/data/mineralogy/recipe/shale_relief_vertical.json +++ b/src/main/resources/data/mineralogy/recipe/shale_relief_vertical.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x", - "x", - "x" - ], - "key": { - "x": { - "item": "mineralogy:shale_relief_blank" - } - }, - "result": { - "id": "mineralogy:shale_relief_vertical", - "count": 3 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x", + "x", + "x" + ], + "key": { + "x": "mineralogy:shale_relief_blank" + }, + "result": { + "id": "mineralogy:shale_relief_vertical", + "count": 3 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/shale_slab.json b/src/main/resources/data/mineralogy/recipe/shale_slab.json index bd36adbf5..85e3287fb 100644 --- a/src/main/resources/data/mineralogy/recipe/shale_slab.json +++ b/src/main/resources/data/mineralogy/recipe/shale_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:shale" - } - }, - "result": { - "id": "mineralogy:shale_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:shale" + }, + "result": { + "id": "mineralogy:shale_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/shale_smooth.json b/src/main/resources/data/mineralogy/recipe/shale_smooth.json index c8e9a2510..287878c6c 100644 --- a/src/main/resources/data/mineralogy/recipe/shale_smooth.json +++ b/src/main/resources/data/mineralogy/recipe/shale_smooth.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "tag": "mineralogy:stones/shale" - }, - { - "item": "minecraft:sand" - } - ], - "result": { - "id": "mineralogy:shale_smooth", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "#mineralogy:stones/shale", + "minecraft:sand" + ], + "result": { + "id": "mineralogy:shale_smooth", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/shale_smooth_brick.json b/src/main/resources/data/mineralogy/recipe/shale_smooth_brick.json index d2019bba1..01136906b 100644 --- a/src/main/resources/data/mineralogy/recipe/shale_smooth_brick.json +++ b/src/main/resources/data/mineralogy/recipe/shale_smooth_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/shale/smooth" - } - }, - "result": { - "id": "mineralogy:shale_smooth_brick", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "#mineralogy:stones/shale/smooth" + }, + "result": { + "id": "mineralogy:shale_smooth_brick", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/shale_smooth_brick_furnace.json b/src/main/resources/data/mineralogy/recipe/shale_smooth_brick_furnace.json index 2056b8afc..c79844027 100644 --- a/src/main/resources/data/mineralogy/recipe/shale_smooth_brick_furnace.json +++ b/src/main/resources/data/mineralogy/recipe/shale_smooth_brick_furnace.json @@ -1,22 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "xxx", - "xyx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:slabs/shale/smooth_brick" - }, - "y": { - "item": "minecraft:furnace" - } - }, - "result": { - "id": "mineralogy:shale_smooth_brick_furnace", - "count": 1 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "xxx", + "xyx", + "xxx" + ], + "key": { + "x": "#mineralogy:slabs/shale/smooth_brick", + "y": "minecraft:furnace" + }, + "result": { + "id": "mineralogy:shale_smooth_brick_furnace", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/shale_smooth_brick_slab.json b/src/main/resources/data/mineralogy/recipe/shale_smooth_brick_slab.json index 69acca17e..d2cb5a423 100644 --- a/src/main/resources/data/mineralogy/recipe/shale_smooth_brick_slab.json +++ b/src/main/resources/data/mineralogy/recipe/shale_smooth_brick_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:shale_smooth_brick" - } - }, - "result": { - "id": "mineralogy:shale_smooth_brick_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:shale_smooth_brick" + }, + "result": { + "id": "mineralogy:shale_smooth_brick_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/shale_smooth_brick_stairs.json b/src/main/resources/data/mineralogy/recipe/shale_smooth_brick_stairs.json index ccf8b1d62..df365985a 100644 --- a/src/main/resources/data/mineralogy/recipe/shale_smooth_brick_stairs.json +++ b/src/main/resources/data/mineralogy/recipe/shale_smooth_brick_stairs.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - "xx ", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/shale/smooth_brick" - } - }, - "result": { - "id": "mineralogy:shale_smooth_brick_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + "xx ", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/shale/smooth_brick" + }, + "result": { + "id": "mineralogy:shale_smooth_brick_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/shale_smooth_brick_wall.json b/src/main/resources/data/mineralogy/recipe/shale_smooth_brick_wall.json index d8c9154e3..bf888622d 100644 --- a/src/main/resources/data/mineralogy/recipe/shale_smooth_brick_wall.json +++ b/src/main/resources/data/mineralogy/recipe/shale_smooth_brick_wall.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/shale/smooth_brick" - } - }, - "result": { - "id": "mineralogy:shale_smooth_brick_wall", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/shale/smooth_brick" + }, + "result": { + "id": "mineralogy:shale_smooth_brick_wall", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/shale_smooth_furnace.json b/src/main/resources/data/mineralogy/recipe/shale_smooth_furnace.json index dcb82c8ff..ecc4fe086 100644 --- a/src/main/resources/data/mineralogy/recipe/shale_smooth_furnace.json +++ b/src/main/resources/data/mineralogy/recipe/shale_smooth_furnace.json @@ -1,22 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "xxx", - "xyx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:slabs/shale/smooth" - }, - "y": { - "item": "minecraft:furnace" - } - }, - "result": { - "id": "mineralogy:shale_smooth_furnace", - "count": 1 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "xxx", + "xyx", + "xxx" + ], + "key": { + "x": "#mineralogy:slabs/shale/smooth", + "y": "minecraft:furnace" + }, + "result": { + "id": "mineralogy:shale_smooth_furnace", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/shale_smooth_slab.json b/src/main/resources/data/mineralogy/recipe/shale_smooth_slab.json index fa360dcdf..dbba60dd7 100644 --- a/src/main/resources/data/mineralogy/recipe/shale_smooth_slab.json +++ b/src/main/resources/data/mineralogy/recipe/shale_smooth_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:shale_smooth" - } - }, - "result": { - "id": "mineralogy:shale_smooth_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:shale_smooth" + }, + "result": { + "id": "mineralogy:shale_smooth_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/shale_smooth_stairs.json b/src/main/resources/data/mineralogy/recipe/shale_smooth_stairs.json index 366894a7f..5931eef8a 100644 --- a/src/main/resources/data/mineralogy/recipe/shale_smooth_stairs.json +++ b/src/main/resources/data/mineralogy/recipe/shale_smooth_stairs.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - "xx ", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/shale/smooth" - } - }, - "result": { - "id": "mineralogy:shale_smooth_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + "xx ", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/shale/smooth" + }, + "result": { + "id": "mineralogy:shale_smooth_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/shale_smooth_wall.json b/src/main/resources/data/mineralogy/recipe/shale_smooth_wall.json index 3e4b885e1..821c22f90 100644 --- a/src/main/resources/data/mineralogy/recipe/shale_smooth_wall.json +++ b/src/main/resources/data/mineralogy/recipe/shale_smooth_wall.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/shale/smooth" - } - }, - "result": { - "id": "mineralogy:shale_smooth_wall", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/shale/smooth" + }, + "result": { + "id": "mineralogy:shale_smooth_wall", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/shale_stairs.json b/src/main/resources/data/mineralogy/recipe/shale_stairs.json index 4cbbad708..70d3a6f33 100644 --- a/src/main/resources/data/mineralogy/recipe/shale_stairs.json +++ b/src/main/resources/data/mineralogy/recipe/shale_stairs.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - "xx ", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/shale" - } - }, - "result": { - "id": "mineralogy:shale_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + "xx ", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/shale" + }, + "result": { + "id": "mineralogy:shale_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/shale_to_stone.json b/src/main/resources/data/mineralogy/recipe/shale_to_stone.json index d33b5f579..376a5cd46 100644 --- a/src/main/resources/data/mineralogy/recipe/shale_to_stone.json +++ b/src/main/resources/data/mineralogy/recipe/shale_to_stone.json @@ -1,12 +1,10 @@ { - "type": "minecraft:smelting", - "category": "blocks", - "ingredient": { - "item": "mineralogy:shale" - }, - "result": { - "id": "minecraft:stone" - }, - "experience": 0.1, - "cookingtime": 200 + "type": "minecraft:smelting", + "category": "blocks", + "ingredient": "mineralogy:shale", + "result": { + "id": "minecraft:stone" + }, + "experience": 0.1, + "cookingtime": 200 } diff --git a/src/main/resources/data/mineralogy/recipe/shale_wall.json b/src/main/resources/data/mineralogy/recipe/shale_wall.json index e035d0d16..efa77c410 100644 --- a/src/main/resources/data/mineralogy/recipe/shale_wall.json +++ b/src/main/resources/data/mineralogy/recipe/shale_wall.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/shale" - } - }, - "result": { - "id": "mineralogy:shale_wall", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/shale" + }, + "result": { + "id": "mineralogy:shale_wall", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/siltstone_brick.json b/src/main/resources/data/mineralogy/recipe/siltstone_brick.json index e2427c2a2..2b1b9a14e 100644 --- a/src/main/resources/data/mineralogy/recipe/siltstone_brick.json +++ b/src/main/resources/data/mineralogy/recipe/siltstone_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/siltstone" - } - }, - "result": { - "id": "mineralogy:siltstone_brick", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "#mineralogy:stones/siltstone" + }, + "result": { + "id": "mineralogy:siltstone_brick", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/siltstone_brick_block_polishing.json b/src/main/resources/data/mineralogy/recipe/siltstone_brick_block_polishing.json index 72343784a..64221f09b 100644 --- a/src/main/resources/data/mineralogy/recipe/siltstone_brick_block_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/siltstone_brick_block_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:siltstone_brick" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:siltstone_smooth_brick", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:siltstone_brick", + "#c:sands" + ], + "result": { + "id": "mineralogy:siltstone_smooth_brick", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/siltstone_brick_furnace.json b/src/main/resources/data/mineralogy/recipe/siltstone_brick_furnace.json index 7da775c4a..cf5771e73 100644 --- a/src/main/resources/data/mineralogy/recipe/siltstone_brick_furnace.json +++ b/src/main/resources/data/mineralogy/recipe/siltstone_brick_furnace.json @@ -1,22 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "xxx", - "xyx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:slabs/siltstone/brick" - }, - "y": { - "item": "minecraft:furnace" - } - }, - "result": { - "id": "mineralogy:siltstone_brick_furnace", - "count": 1 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "xxx", + "xyx", + "xxx" + ], + "key": { + "x": "#mineralogy:slabs/siltstone/brick", + "y": "minecraft:furnace" + }, + "result": { + "id": "mineralogy:siltstone_brick_furnace", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/siltstone_brick_slab.json b/src/main/resources/data/mineralogy/recipe/siltstone_brick_slab.json index 1aa66b2b5..06abf499a 100644 --- a/src/main/resources/data/mineralogy/recipe/siltstone_brick_slab.json +++ b/src/main/resources/data/mineralogy/recipe/siltstone_brick_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:siltstone_brick" - } - }, - "result": { - "id": "mineralogy:siltstone_brick_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:siltstone_brick" + }, + "result": { + "id": "mineralogy:siltstone_brick_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/siltstone_brick_slab_polishing.json b/src/main/resources/data/mineralogy/recipe/siltstone_brick_slab_polishing.json index 402a4f059..73b75afe0 100644 --- a/src/main/resources/data/mineralogy/recipe/siltstone_brick_slab_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/siltstone_brick_slab_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:siltstone_brick_slab" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:siltstone_smooth_brick_slab", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:siltstone_brick_slab", + "#c:sands" + ], + "result": { + "id": "mineralogy:siltstone_smooth_brick_slab", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/siltstone_brick_slab_recombination.json b/src/main/resources/data/mineralogy/recipe/siltstone_brick_slab_recombination.json index 8355b5914..86bd02f34 100644 --- a/src/main/resources/data/mineralogy/recipe/siltstone_brick_slab_recombination.json +++ b/src/main/resources/data/mineralogy/recipe/siltstone_brick_slab_recombination.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:siltstone_brick_slab" - }, - { - "item": "mineralogy:siltstone_brick_slab" - } - ], - "result": { - "id": "mineralogy:siltstone_brick", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:siltstone_brick_slab", + "mineralogy:siltstone_brick_slab" + ], + "result": { + "id": "mineralogy:siltstone_brick", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/siltstone_brick_stairs.json b/src/main/resources/data/mineralogy/recipe/siltstone_brick_stairs.json index da80a452e..50abbf8e6 100644 --- a/src/main/resources/data/mineralogy/recipe/siltstone_brick_stairs.json +++ b/src/main/resources/data/mineralogy/recipe/siltstone_brick_stairs.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - "xx ", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/siltstone/brick" - } - }, - "result": { - "id": "mineralogy:siltstone_brick_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + "xx ", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/siltstone/brick" + }, + "result": { + "id": "mineralogy:siltstone_brick_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/siltstone_brick_stairs_polishing.json b/src/main/resources/data/mineralogy/recipe/siltstone_brick_stairs_polishing.json index 8294bb6c8..69da23ce4 100644 --- a/src/main/resources/data/mineralogy/recipe/siltstone_brick_stairs_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/siltstone_brick_stairs_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:siltstone_brick_stairs" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:siltstone_smooth_brick_stairs", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:siltstone_brick_stairs", + "#c:sands" + ], + "result": { + "id": "mineralogy:siltstone_smooth_brick_stairs", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/siltstone_brick_wall.json b/src/main/resources/data/mineralogy/recipe/siltstone_brick_wall.json index 30e6a753b..88a61e943 100644 --- a/src/main/resources/data/mineralogy/recipe/siltstone_brick_wall.json +++ b/src/main/resources/data/mineralogy/recipe/siltstone_brick_wall.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/siltstone/brick" - } - }, - "result": { - "id": "mineralogy:siltstone_brick_wall", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/siltstone/brick" + }, + "result": { + "id": "mineralogy:siltstone_brick_wall", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/siltstone_brick_wall_polishing.json b/src/main/resources/data/mineralogy/recipe/siltstone_brick_wall_polishing.json index 216e96787..aa4acbc25 100644 --- a/src/main/resources/data/mineralogy/recipe/siltstone_brick_wall_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/siltstone_brick_wall_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:siltstone_brick_wall" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:siltstone_smooth_brick_wall", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:siltstone_brick_wall", + "#c:sands" + ], + "result": { + "id": "mineralogy:siltstone_smooth_brick_wall", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/siltstone_cobblestone.json b/src/main/resources/data/mineralogy/recipe/siltstone_cobblestone.json index 1d35bbb38..f2727db2c 100644 --- a/src/main/resources/data/mineralogy/recipe/siltstone_cobblestone.json +++ b/src/main/resources/data/mineralogy/recipe/siltstone_cobblestone.json @@ -1,22 +1,14 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "tag": "mineralogy:stones/siltstone" - }, - { - "tag": "mineralogy:stones/siltstone" - }, - { - "item": "minecraft:gravel" - }, - { - "item": "minecraft:gravel" - } - ], - "result": { - "id": "minecraft:cobblestone", - "count": 4 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "#mineralogy:stones/siltstone", + "#mineralogy:stones/siltstone", + "minecraft:gravel", + "minecraft:gravel" + ], + "result": { + "id": "minecraft:cobblestone", + "count": 4 + } } diff --git a/src/main/resources/data/mineralogy/recipe/siltstone_furnace.json b/src/main/resources/data/mineralogy/recipe/siltstone_furnace.json index 60252465c..ebdd3fa5e 100644 --- a/src/main/resources/data/mineralogy/recipe/siltstone_furnace.json +++ b/src/main/resources/data/mineralogy/recipe/siltstone_furnace.json @@ -1,22 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "xxx", - "xyx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:slabs/siltstone" - }, - "y": { - "item": "minecraft:furnace" - } - }, - "result": { - "id": "mineralogy:siltstone_furnace", - "count": 1 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "xxx", + "xyx", + "xxx" + ], + "key": { + "x": "#mineralogy:slabs/siltstone", + "y": "minecraft:furnace" + }, + "result": { + "id": "mineralogy:siltstone_furnace", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/siltstone_polished_brick_slab_recombination.json b/src/main/resources/data/mineralogy/recipe/siltstone_polished_brick_slab_recombination.json index 27b3506cf..1e32a182b 100644 --- a/src/main/resources/data/mineralogy/recipe/siltstone_polished_brick_slab_recombination.json +++ b/src/main/resources/data/mineralogy/recipe/siltstone_polished_brick_slab_recombination.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:siltstone_smooth_brick_slab" - }, - { - "item": "mineralogy:siltstone_smooth_brick_slab" - } - ], - "result": { - "id": "mineralogy:siltstone_smooth_brick", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:siltstone_smooth_brick_slab", + "mineralogy:siltstone_smooth_brick_slab" + ], + "result": { + "id": "mineralogy:siltstone_smooth_brick", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/siltstone_polished_slab_recombination.json b/src/main/resources/data/mineralogy/recipe/siltstone_polished_slab_recombination.json index 605a94b4e..229b08d42 100644 --- a/src/main/resources/data/mineralogy/recipe/siltstone_polished_slab_recombination.json +++ b/src/main/resources/data/mineralogy/recipe/siltstone_polished_slab_recombination.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:siltstone_smooth_slab" - }, - { - "item": "mineralogy:siltstone_smooth_slab" - } - ], - "result": { - "id": "mineralogy:siltstone_smooth", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:siltstone_smooth_slab", + "mineralogy:siltstone_smooth_slab" + ], + "result": { + "id": "mineralogy:siltstone_smooth", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/siltstone_polished_slabs_to_brick.json b/src/main/resources/data/mineralogy/recipe/siltstone_polished_slabs_to_brick.json index e6ce15d2c..138157413 100644 --- a/src/main/resources/data/mineralogy/recipe/siltstone_polished_slabs_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/siltstone_polished_slabs_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:siltstone_smooth_slab" - } - }, - "result": { - "id": "mineralogy:siltstone_smooth_brick_slab", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:siltstone_smooth_slab" + }, + "result": { + "id": "mineralogy:siltstone_smooth_brick_slab", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/siltstone_polished_stairs_to_brick.json b/src/main/resources/data/mineralogy/recipe/siltstone_polished_stairs_to_brick.json index 846f1a9ff..ffb6589d7 100644 --- a/src/main/resources/data/mineralogy/recipe/siltstone_polished_stairs_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/siltstone_polished_stairs_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:siltstone_smooth_stairs" - } - }, - "result": { - "id": "mineralogy:siltstone_smooth_brick_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:siltstone_smooth_stairs" + }, + "result": { + "id": "mineralogy:siltstone_smooth_brick_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/siltstone_polished_walls_to_brick.json b/src/main/resources/data/mineralogy/recipe/siltstone_polished_walls_to_brick.json index 8bfb7a9c7..be89fe2e4 100644 --- a/src/main/resources/data/mineralogy/recipe/siltstone_polished_walls_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/siltstone_polished_walls_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:siltstone_smooth_wall" - } - }, - "result": { - "id": "mineralogy:siltstone_smooth_brick_wall", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:siltstone_smooth_wall" + }, + "result": { + "id": "mineralogy:siltstone_smooth_brick_wall", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/siltstone_raw_slab_polishing.json b/src/main/resources/data/mineralogy/recipe/siltstone_raw_slab_polishing.json index ad464f9f2..1b345030e 100644 --- a/src/main/resources/data/mineralogy/recipe/siltstone_raw_slab_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/siltstone_raw_slab_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:siltstone_slab" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:siltstone_smooth_slab", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:siltstone_slab", + "#c:sands" + ], + "result": { + "id": "mineralogy:siltstone_smooth_slab", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/siltstone_raw_slab_recombination.json b/src/main/resources/data/mineralogy/recipe/siltstone_raw_slab_recombination.json index 5bedb0645..7ba7664da 100644 --- a/src/main/resources/data/mineralogy/recipe/siltstone_raw_slab_recombination.json +++ b/src/main/resources/data/mineralogy/recipe/siltstone_raw_slab_recombination.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:siltstone_slab" - }, - { - "item": "mineralogy:siltstone_slab" - } - ], - "result": { - "id": "mineralogy:siltstone", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:siltstone_slab", + "mineralogy:siltstone_slab" + ], + "result": { + "id": "mineralogy:siltstone", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/siltstone_raw_slabs_to_brick.json b/src/main/resources/data/mineralogy/recipe/siltstone_raw_slabs_to_brick.json index 39d4d38a4..edd95d88a 100644 --- a/src/main/resources/data/mineralogy/recipe/siltstone_raw_slabs_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/siltstone_raw_slabs_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:siltstone_slab" - } - }, - "result": { - "id": "mineralogy:siltstone_brick_slab", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:siltstone_slab" + }, + "result": { + "id": "mineralogy:siltstone_brick_slab", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/siltstone_raw_stairs_polishing.json b/src/main/resources/data/mineralogy/recipe/siltstone_raw_stairs_polishing.json index 72c667c88..e3fd53561 100644 --- a/src/main/resources/data/mineralogy/recipe/siltstone_raw_stairs_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/siltstone_raw_stairs_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:siltstone_stairs" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:siltstone_smooth_stairs", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:siltstone_stairs", + "#c:sands" + ], + "result": { + "id": "mineralogy:siltstone_smooth_stairs", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/siltstone_raw_stairs_to_brick.json b/src/main/resources/data/mineralogy/recipe/siltstone_raw_stairs_to_brick.json index ec3497c25..4402f863f 100644 --- a/src/main/resources/data/mineralogy/recipe/siltstone_raw_stairs_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/siltstone_raw_stairs_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:siltstone_stairs" - } - }, - "result": { - "id": "mineralogy:siltstone_brick_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:siltstone_stairs" + }, + "result": { + "id": "mineralogy:siltstone_brick_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/siltstone_raw_wall_polishing.json b/src/main/resources/data/mineralogy/recipe/siltstone_raw_wall_polishing.json index 444515797..261886d8d 100644 --- a/src/main/resources/data/mineralogy/recipe/siltstone_raw_wall_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/siltstone_raw_wall_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:siltstone_wall" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:siltstone_smooth_wall", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:siltstone_wall", + "#c:sands" + ], + "result": { + "id": "mineralogy:siltstone_smooth_wall", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/siltstone_raw_walls_to_brick.json b/src/main/resources/data/mineralogy/recipe/siltstone_raw_walls_to_brick.json index d11bea75e..ffbe73b48 100644 --- a/src/main/resources/data/mineralogy/recipe/siltstone_raw_walls_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/siltstone_raw_walls_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:siltstone_wall" - } - }, - "result": { - "id": "mineralogy:siltstone_brick_wall", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:siltstone_wall" + }, + "result": { + "id": "mineralogy:siltstone_brick_wall", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/siltstone_relief_axe.json b/src/main/resources/data/mineralogy/recipe/siltstone_relief_axe.json index e6c4b89f5..ec85f36c9 100644 --- a/src/main/resources/data/mineralogy/recipe/siltstone_relief_axe.json +++ b/src/main/resources/data/mineralogy/recipe/siltstone_relief_axe.json @@ -1,37 +1,19 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:siltstone_relief_blank" - }, - { - "item": "mineralogy:siltstone_relief_blank" - }, - { - "item": "mineralogy:siltstone_relief_blank" - }, - { - "item": "mineralogy:siltstone_relief_blank" - }, - { - "item": "mineralogy:siltstone_relief_blank" - }, - { - "item": "mineralogy:siltstone_relief_blank" - }, - { - "item": "mineralogy:siltstone_relief_blank" - }, - { - "item": "mineralogy:siltstone_relief_blank" - }, - { - "item": "minecraft:stone_axe" - } - ], - "result": { - "id": "mineralogy:siltstone_relief_axe", - "count": 8 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:siltstone_relief_blank", + "mineralogy:siltstone_relief_blank", + "mineralogy:siltstone_relief_blank", + "mineralogy:siltstone_relief_blank", + "mineralogy:siltstone_relief_blank", + "mineralogy:siltstone_relief_blank", + "mineralogy:siltstone_relief_blank", + "mineralogy:siltstone_relief_blank", + "minecraft:stone_axe" + ], + "result": { + "id": "mineralogy:siltstone_relief_axe", + "count": 8 + } } diff --git a/src/main/resources/data/mineralogy/recipe/siltstone_relief_blank.json b/src/main/resources/data/mineralogy/recipe/siltstone_relief_blank.json index fc6901ce8..ae3b48aba 100644 --- a/src/main/resources/data/mineralogy/recipe/siltstone_relief_blank.json +++ b/src/main/resources/data/mineralogy/recipe/siltstone_relief_blank.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx", - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:siltstone_smooth" - } - }, - "result": { - "id": "mineralogy:siltstone_relief_blank", - "count": 16 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx", + "xxx" + ], + "key": { + "x": "mineralogy:siltstone_smooth" + }, + "result": { + "id": "mineralogy:siltstone_relief_blank", + "count": 16 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/siltstone_relief_cross.json b/src/main/resources/data/mineralogy/recipe/siltstone_relief_cross.json index d36a311d5..765882850 100644 --- a/src/main/resources/data/mineralogy/recipe/siltstone_relief_cross.json +++ b/src/main/resources/data/mineralogy/recipe/siltstone_relief_cross.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x x", - " ", - "x x" - ], - "key": { - "x": { - "item": "mineralogy:siltstone_relief_blank" - } - }, - "result": { - "id": "mineralogy:siltstone_relief_cross", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x x", + " ", + "x x" + ], + "key": { + "x": "mineralogy:siltstone_relief_blank" + }, + "result": { + "id": "mineralogy:siltstone_relief_cross", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/siltstone_relief_hammer.json b/src/main/resources/data/mineralogy/recipe/siltstone_relief_hammer.json index 51d3041c9..ca3a15295 100644 --- a/src/main/resources/data/mineralogy/recipe/siltstone_relief_hammer.json +++ b/src/main/resources/data/mineralogy/recipe/siltstone_relief_hammer.json @@ -1,25 +1,19 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "zxz", - "zyz", - "zzz" - ], - "key": { - "x": { - "item": "mineralogy:siltstone_smooth" - }, - "y": { - "item": "minecraft:stick" - }, - "z": { - "item": "mineralogy:siltstone_relief_blank" - } - }, - "result": { - "id": "mineralogy:siltstone_relief_hammer", - "count": 7 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "zxz", + "zyz", + "zzz" + ], + "key": { + "x": "mineralogy:siltstone_smooth", + "y": "minecraft:stick", + "z": "mineralogy:siltstone_relief_blank" + }, + "result": { + "id": "mineralogy:siltstone_relief_hammer", + "count": 7 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/siltstone_relief_hoe.json b/src/main/resources/data/mineralogy/recipe/siltstone_relief_hoe.json index 6486a3377..8f2438ac7 100644 --- a/src/main/resources/data/mineralogy/recipe/siltstone_relief_hoe.json +++ b/src/main/resources/data/mineralogy/recipe/siltstone_relief_hoe.json @@ -1,37 +1,19 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:siltstone_relief_blank" - }, - { - "item": "mineralogy:siltstone_relief_blank" - }, - { - "item": "mineralogy:siltstone_relief_blank" - }, - { - "item": "mineralogy:siltstone_relief_blank" - }, - { - "item": "mineralogy:siltstone_relief_blank" - }, - { - "item": "mineralogy:siltstone_relief_blank" - }, - { - "item": "mineralogy:siltstone_relief_blank" - }, - { - "item": "mineralogy:siltstone_relief_blank" - }, - { - "item": "minecraft:stone_hoe" - } - ], - "result": { - "id": "mineralogy:siltstone_relief_hoe", - "count": 8 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:siltstone_relief_blank", + "mineralogy:siltstone_relief_blank", + "mineralogy:siltstone_relief_blank", + "mineralogy:siltstone_relief_blank", + "mineralogy:siltstone_relief_blank", + "mineralogy:siltstone_relief_blank", + "mineralogy:siltstone_relief_blank", + "mineralogy:siltstone_relief_blank", + "minecraft:stone_hoe" + ], + "result": { + "id": "mineralogy:siltstone_relief_hoe", + "count": 8 + } } diff --git a/src/main/resources/data/mineralogy/recipe/siltstone_relief_horizontal.json b/src/main/resources/data/mineralogy/recipe/siltstone_relief_horizontal.json index c3b94d514..b935ffc1d 100644 --- a/src/main/resources/data/mineralogy/recipe/siltstone_relief_horizontal.json +++ b/src/main/resources/data/mineralogy/recipe/siltstone_relief_horizontal.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:siltstone_relief_blank" - } - }, - "result": { - "id": "mineralogy:siltstone_relief_horizontal", - "count": 3 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:siltstone_relief_blank" + }, + "result": { + "id": "mineralogy:siltstone_relief_horizontal", + "count": 3 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/siltstone_relief_i.json b/src/main/resources/data/mineralogy/recipe/siltstone_relief_i.json index 3e6a83b24..7e898e0f8 100644 --- a/src/main/resources/data/mineralogy/recipe/siltstone_relief_i.json +++ b/src/main/resources/data/mineralogy/recipe/siltstone_relief_i.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - " x ", - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:siltstone_relief_blank" - } - }, - "result": { - "id": "mineralogy:siltstone_relief_i", - "count": 7 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + " x ", + "xxx" + ], + "key": { + "x": "mineralogy:siltstone_relief_blank" + }, + "result": { + "id": "mineralogy:siltstone_relief_i", + "count": 7 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/siltstone_relief_left.json b/src/main/resources/data/mineralogy/recipe/siltstone_relief_left.json index 972539d72..b70818fa4 100644 --- a/src/main/resources/data/mineralogy/recipe/siltstone_relief_left.json +++ b/src/main/resources/data/mineralogy/recipe/siltstone_relief_left.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - " x ", - " x" - ], - "key": { - "x": { - "item": "mineralogy:siltstone_relief_blank" - } - }, - "result": { - "id": "mineralogy:siltstone_relief_left", - "count": 3 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + " x ", + " x" + ], + "key": { + "x": "mineralogy:siltstone_relief_blank" + }, + "result": { + "id": "mineralogy:siltstone_relief_left", + "count": 3 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/siltstone_relief_pickaxe.json b/src/main/resources/data/mineralogy/recipe/siltstone_relief_pickaxe.json index 10b93ff18..db882fd55 100644 --- a/src/main/resources/data/mineralogy/recipe/siltstone_relief_pickaxe.json +++ b/src/main/resources/data/mineralogy/recipe/siltstone_relief_pickaxe.json @@ -1,37 +1,19 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:siltstone_relief_blank" - }, - { - "item": "mineralogy:siltstone_relief_blank" - }, - { - "item": "mineralogy:siltstone_relief_blank" - }, - { - "item": "mineralogy:siltstone_relief_blank" - }, - { - "item": "mineralogy:siltstone_relief_blank" - }, - { - "item": "mineralogy:siltstone_relief_blank" - }, - { - "item": "mineralogy:siltstone_relief_blank" - }, - { - "item": "mineralogy:siltstone_relief_blank" - }, - { - "item": "minecraft:stone_pickaxe" - } - ], - "result": { - "id": "mineralogy:siltstone_relief_pickaxe", - "count": 8 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:siltstone_relief_blank", + "mineralogy:siltstone_relief_blank", + "mineralogy:siltstone_relief_blank", + "mineralogy:siltstone_relief_blank", + "mineralogy:siltstone_relief_blank", + "mineralogy:siltstone_relief_blank", + "mineralogy:siltstone_relief_blank", + "mineralogy:siltstone_relief_blank", + "minecraft:stone_pickaxe" + ], + "result": { + "id": "mineralogy:siltstone_relief_pickaxe", + "count": 8 + } } diff --git a/src/main/resources/data/mineralogy/recipe/siltstone_relief_plus.json b/src/main/resources/data/mineralogy/recipe/siltstone_relief_plus.json index fbd5ced1a..a6c030db6 100644 --- a/src/main/resources/data/mineralogy/recipe/siltstone_relief_plus.json +++ b/src/main/resources/data/mineralogy/recipe/siltstone_relief_plus.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - " x ", - "xxx", - " x " - ], - "key": { - "x": { - "item": "mineralogy:siltstone_relief_blank" - } - }, - "result": { - "id": "mineralogy:siltstone_relief_plus", - "count": 5 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + " x ", + "xxx", + " x " + ], + "key": { + "x": "mineralogy:siltstone_relief_blank" + }, + "result": { + "id": "mineralogy:siltstone_relief_plus", + "count": 5 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/siltstone_relief_right.json b/src/main/resources/data/mineralogy/recipe/siltstone_relief_right.json index a18855c87..bcb2b1dbc 100644 --- a/src/main/resources/data/mineralogy/recipe/siltstone_relief_right.json +++ b/src/main/resources/data/mineralogy/recipe/siltstone_relief_right.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:siltstone_relief_left" - }, - { - "item": "mineralogy:siltstone_relief_left" - } - ], - "result": { - "id": "mineralogy:siltstone_relief_right", - "count": 2 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:siltstone_relief_left", + "mineralogy:siltstone_relief_left" + ], + "result": { + "id": "mineralogy:siltstone_relief_right", + "count": 2 + } } diff --git a/src/main/resources/data/mineralogy/recipe/siltstone_relief_sword.json b/src/main/resources/data/mineralogy/recipe/siltstone_relief_sword.json index 75e698ccf..35c2709e6 100644 --- a/src/main/resources/data/mineralogy/recipe/siltstone_relief_sword.json +++ b/src/main/resources/data/mineralogy/recipe/siltstone_relief_sword.json @@ -1,37 +1,19 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:siltstone_relief_blank" - }, - { - "item": "mineralogy:siltstone_relief_blank" - }, - { - "item": "mineralogy:siltstone_relief_blank" - }, - { - "item": "mineralogy:siltstone_relief_blank" - }, - { - "item": "mineralogy:siltstone_relief_blank" - }, - { - "item": "mineralogy:siltstone_relief_blank" - }, - { - "item": "mineralogy:siltstone_relief_blank" - }, - { - "item": "mineralogy:siltstone_relief_blank" - }, - { - "item": "minecraft:stone_sword" - } - ], - "result": { - "id": "mineralogy:siltstone_relief_sword", - "count": 8 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:siltstone_relief_blank", + "mineralogy:siltstone_relief_blank", + "mineralogy:siltstone_relief_blank", + "mineralogy:siltstone_relief_blank", + "mineralogy:siltstone_relief_blank", + "mineralogy:siltstone_relief_blank", + "mineralogy:siltstone_relief_blank", + "mineralogy:siltstone_relief_blank", + "minecraft:stone_sword" + ], + "result": { + "id": "mineralogy:siltstone_relief_sword", + "count": 8 + } } diff --git a/src/main/resources/data/mineralogy/recipe/siltstone_relief_vertical.json b/src/main/resources/data/mineralogy/recipe/siltstone_relief_vertical.json index 8054a3ad0..238cbbd06 100644 --- a/src/main/resources/data/mineralogy/recipe/siltstone_relief_vertical.json +++ b/src/main/resources/data/mineralogy/recipe/siltstone_relief_vertical.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x", - "x", - "x" - ], - "key": { - "x": { - "item": "mineralogy:siltstone_relief_blank" - } - }, - "result": { - "id": "mineralogy:siltstone_relief_vertical", - "count": 3 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x", + "x", + "x" + ], + "key": { + "x": "mineralogy:siltstone_relief_blank" + }, + "result": { + "id": "mineralogy:siltstone_relief_vertical", + "count": 3 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/siltstone_slab.json b/src/main/resources/data/mineralogy/recipe/siltstone_slab.json index ed9123ec5..d868399a5 100644 --- a/src/main/resources/data/mineralogy/recipe/siltstone_slab.json +++ b/src/main/resources/data/mineralogy/recipe/siltstone_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:siltstone" - } - }, - "result": { - "id": "mineralogy:siltstone_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:siltstone" + }, + "result": { + "id": "mineralogy:siltstone_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/siltstone_smooth.json b/src/main/resources/data/mineralogy/recipe/siltstone_smooth.json index 8f59ff9fb..c6922aaef 100644 --- a/src/main/resources/data/mineralogy/recipe/siltstone_smooth.json +++ b/src/main/resources/data/mineralogy/recipe/siltstone_smooth.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "tag": "mineralogy:stones/siltstone" - }, - { - "item": "minecraft:sand" - } - ], - "result": { - "id": "mineralogy:siltstone_smooth", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "#mineralogy:stones/siltstone", + "minecraft:sand" + ], + "result": { + "id": "mineralogy:siltstone_smooth", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/siltstone_smooth_brick.json b/src/main/resources/data/mineralogy/recipe/siltstone_smooth_brick.json index 55163adf9..011ef1abc 100644 --- a/src/main/resources/data/mineralogy/recipe/siltstone_smooth_brick.json +++ b/src/main/resources/data/mineralogy/recipe/siltstone_smooth_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/siltstone/smooth" - } - }, - "result": { - "id": "mineralogy:siltstone_smooth_brick", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "#mineralogy:stones/siltstone/smooth" + }, + "result": { + "id": "mineralogy:siltstone_smooth_brick", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/siltstone_smooth_brick_furnace.json b/src/main/resources/data/mineralogy/recipe/siltstone_smooth_brick_furnace.json index 577cbc81a..99e266c9a 100644 --- a/src/main/resources/data/mineralogy/recipe/siltstone_smooth_brick_furnace.json +++ b/src/main/resources/data/mineralogy/recipe/siltstone_smooth_brick_furnace.json @@ -1,22 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "xxx", - "xyx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:slabs/siltstone/smooth_brick" - }, - "y": { - "item": "minecraft:furnace" - } - }, - "result": { - "id": "mineralogy:siltstone_smooth_brick_furnace", - "count": 1 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "xxx", + "xyx", + "xxx" + ], + "key": { + "x": "#mineralogy:slabs/siltstone/smooth_brick", + "y": "minecraft:furnace" + }, + "result": { + "id": "mineralogy:siltstone_smooth_brick_furnace", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/siltstone_smooth_brick_slab.json b/src/main/resources/data/mineralogy/recipe/siltstone_smooth_brick_slab.json index ec79b8c0d..7977b1c15 100644 --- a/src/main/resources/data/mineralogy/recipe/siltstone_smooth_brick_slab.json +++ b/src/main/resources/data/mineralogy/recipe/siltstone_smooth_brick_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:siltstone_smooth_brick" - } - }, - "result": { - "id": "mineralogy:siltstone_smooth_brick_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:siltstone_smooth_brick" + }, + "result": { + "id": "mineralogy:siltstone_smooth_brick_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/siltstone_smooth_brick_stairs.json b/src/main/resources/data/mineralogy/recipe/siltstone_smooth_brick_stairs.json index 871831e89..1d7ac3c3d 100644 --- a/src/main/resources/data/mineralogy/recipe/siltstone_smooth_brick_stairs.json +++ b/src/main/resources/data/mineralogy/recipe/siltstone_smooth_brick_stairs.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - "xx ", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/siltstone/smooth_brick" - } - }, - "result": { - "id": "mineralogy:siltstone_smooth_brick_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + "xx ", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/siltstone/smooth_brick" + }, + "result": { + "id": "mineralogy:siltstone_smooth_brick_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/siltstone_smooth_brick_wall.json b/src/main/resources/data/mineralogy/recipe/siltstone_smooth_brick_wall.json index 1f391b8a4..4a2ed81e3 100644 --- a/src/main/resources/data/mineralogy/recipe/siltstone_smooth_brick_wall.json +++ b/src/main/resources/data/mineralogy/recipe/siltstone_smooth_brick_wall.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/siltstone/smooth_brick" - } - }, - "result": { - "id": "mineralogy:siltstone_smooth_brick_wall", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/siltstone/smooth_brick" + }, + "result": { + "id": "mineralogy:siltstone_smooth_brick_wall", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/siltstone_smooth_furnace.json b/src/main/resources/data/mineralogy/recipe/siltstone_smooth_furnace.json index d5ee442da..bf372db43 100644 --- a/src/main/resources/data/mineralogy/recipe/siltstone_smooth_furnace.json +++ b/src/main/resources/data/mineralogy/recipe/siltstone_smooth_furnace.json @@ -1,22 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "xxx", - "xyx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:slabs/siltstone/smooth" - }, - "y": { - "item": "minecraft:furnace" - } - }, - "result": { - "id": "mineralogy:siltstone_smooth_furnace", - "count": 1 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "xxx", + "xyx", + "xxx" + ], + "key": { + "x": "#mineralogy:slabs/siltstone/smooth", + "y": "minecraft:furnace" + }, + "result": { + "id": "mineralogy:siltstone_smooth_furnace", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/siltstone_smooth_slab.json b/src/main/resources/data/mineralogy/recipe/siltstone_smooth_slab.json index 9bea852fb..129d8e2ac 100644 --- a/src/main/resources/data/mineralogy/recipe/siltstone_smooth_slab.json +++ b/src/main/resources/data/mineralogy/recipe/siltstone_smooth_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:siltstone_smooth" - } - }, - "result": { - "id": "mineralogy:siltstone_smooth_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:siltstone_smooth" + }, + "result": { + "id": "mineralogy:siltstone_smooth_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/siltstone_smooth_stairs.json b/src/main/resources/data/mineralogy/recipe/siltstone_smooth_stairs.json index 5552aaab9..a8866bb40 100644 --- a/src/main/resources/data/mineralogy/recipe/siltstone_smooth_stairs.json +++ b/src/main/resources/data/mineralogy/recipe/siltstone_smooth_stairs.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - "xx ", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/siltstone/smooth" - } - }, - "result": { - "id": "mineralogy:siltstone_smooth_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + "xx ", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/siltstone/smooth" + }, + "result": { + "id": "mineralogy:siltstone_smooth_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/siltstone_smooth_wall.json b/src/main/resources/data/mineralogy/recipe/siltstone_smooth_wall.json index c532e3f4b..c2ef0f2f5 100644 --- a/src/main/resources/data/mineralogy/recipe/siltstone_smooth_wall.json +++ b/src/main/resources/data/mineralogy/recipe/siltstone_smooth_wall.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/siltstone/smooth" - } - }, - "result": { - "id": "mineralogy:siltstone_smooth_wall", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/siltstone/smooth" + }, + "result": { + "id": "mineralogy:siltstone_smooth_wall", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/siltstone_stairs.json b/src/main/resources/data/mineralogy/recipe/siltstone_stairs.json index fbbc83e3a..cdc63914f 100644 --- a/src/main/resources/data/mineralogy/recipe/siltstone_stairs.json +++ b/src/main/resources/data/mineralogy/recipe/siltstone_stairs.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - "xx ", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/siltstone" - } - }, - "result": { - "id": "mineralogy:siltstone_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + "xx ", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/siltstone" + }, + "result": { + "id": "mineralogy:siltstone_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/siltstone_to_stone.json b/src/main/resources/data/mineralogy/recipe/siltstone_to_stone.json index 301942ef0..ca860f501 100644 --- a/src/main/resources/data/mineralogy/recipe/siltstone_to_stone.json +++ b/src/main/resources/data/mineralogy/recipe/siltstone_to_stone.json @@ -1,12 +1,10 @@ { - "type": "minecraft:smelting", - "category": "blocks", - "ingredient": { - "item": "mineralogy:siltstone" - }, - "result": { - "id": "minecraft:stone" - }, - "experience": 0.1, - "cookingtime": 200 + "type": "minecraft:smelting", + "category": "blocks", + "ingredient": "mineralogy:siltstone", + "result": { + "id": "minecraft:stone" + }, + "experience": 0.1, + "cookingtime": 200 } diff --git a/src/main/resources/data/mineralogy/recipe/siltstone_wall.json b/src/main/resources/data/mineralogy/recipe/siltstone_wall.json index 200032c5f..1b0877773 100644 --- a/src/main/resources/data/mineralogy/recipe/siltstone_wall.json +++ b/src/main/resources/data/mineralogy/recipe/siltstone_wall.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/siltstone" - } - }, - "result": { - "id": "mineralogy:siltstone_wall", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/siltstone" + }, + "result": { + "id": "mineralogy:siltstone_wall", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/slate_brick.json b/src/main/resources/data/mineralogy/recipe/slate_brick.json index 2b591e1dc..7b9f049d5 100644 --- a/src/main/resources/data/mineralogy/recipe/slate_brick.json +++ b/src/main/resources/data/mineralogy/recipe/slate_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/slate" - } - }, - "result": { - "id": "mineralogy:slate_brick", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "#mineralogy:stones/slate" + }, + "result": { + "id": "mineralogy:slate_brick", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/slate_brick_block_polishing.json b/src/main/resources/data/mineralogy/recipe/slate_brick_block_polishing.json index 1ee4bf376..9742c2308 100644 --- a/src/main/resources/data/mineralogy/recipe/slate_brick_block_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/slate_brick_block_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:slate_brick" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:slate_smooth_brick", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:slate_brick", + "#c:sands" + ], + "result": { + "id": "mineralogy:slate_smooth_brick", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/slate_brick_furnace.json b/src/main/resources/data/mineralogy/recipe/slate_brick_furnace.json index 23fdf8182..b569a246b 100644 --- a/src/main/resources/data/mineralogy/recipe/slate_brick_furnace.json +++ b/src/main/resources/data/mineralogy/recipe/slate_brick_furnace.json @@ -1,22 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "xxx", - "xyx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:slabs/slate/brick" - }, - "y": { - "item": "minecraft:furnace" - } - }, - "result": { - "id": "mineralogy:slate_brick_furnace", - "count": 1 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "xxx", + "xyx", + "xxx" + ], + "key": { + "x": "#mineralogy:slabs/slate/brick", + "y": "minecraft:furnace" + }, + "result": { + "id": "mineralogy:slate_brick_furnace", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/slate_brick_slab.json b/src/main/resources/data/mineralogy/recipe/slate_brick_slab.json index d0a021c3a..04a648f45 100644 --- a/src/main/resources/data/mineralogy/recipe/slate_brick_slab.json +++ b/src/main/resources/data/mineralogy/recipe/slate_brick_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:slate_brick" - } - }, - "result": { - "id": "mineralogy:slate_brick_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:slate_brick" + }, + "result": { + "id": "mineralogy:slate_brick_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/slate_brick_slab_polishing.json b/src/main/resources/data/mineralogy/recipe/slate_brick_slab_polishing.json index fadad9dd7..a79ee9cd4 100644 --- a/src/main/resources/data/mineralogy/recipe/slate_brick_slab_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/slate_brick_slab_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:slate_brick_slab" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:slate_smooth_brick_slab", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:slate_brick_slab", + "#c:sands" + ], + "result": { + "id": "mineralogy:slate_smooth_brick_slab", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/slate_brick_slab_recombination.json b/src/main/resources/data/mineralogy/recipe/slate_brick_slab_recombination.json index 27c373587..ef5ea3ec4 100644 --- a/src/main/resources/data/mineralogy/recipe/slate_brick_slab_recombination.json +++ b/src/main/resources/data/mineralogy/recipe/slate_brick_slab_recombination.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:slate_brick_slab" - }, - { - "item": "mineralogy:slate_brick_slab" - } - ], - "result": { - "id": "mineralogy:slate_brick", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:slate_brick_slab", + "mineralogy:slate_brick_slab" + ], + "result": { + "id": "mineralogy:slate_brick", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/slate_brick_stairs.json b/src/main/resources/data/mineralogy/recipe/slate_brick_stairs.json index c1add3e14..54c1eb965 100644 --- a/src/main/resources/data/mineralogy/recipe/slate_brick_stairs.json +++ b/src/main/resources/data/mineralogy/recipe/slate_brick_stairs.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - "xx ", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/slate/brick" - } - }, - "result": { - "id": "mineralogy:slate_brick_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + "xx ", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/slate/brick" + }, + "result": { + "id": "mineralogy:slate_brick_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/slate_brick_stairs_polishing.json b/src/main/resources/data/mineralogy/recipe/slate_brick_stairs_polishing.json index 2a0b0c51b..4ee0af4b9 100644 --- a/src/main/resources/data/mineralogy/recipe/slate_brick_stairs_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/slate_brick_stairs_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:slate_brick_stairs" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:slate_smooth_brick_stairs", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:slate_brick_stairs", + "#c:sands" + ], + "result": { + "id": "mineralogy:slate_smooth_brick_stairs", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/slate_brick_wall.json b/src/main/resources/data/mineralogy/recipe/slate_brick_wall.json index a2e592a20..3ace0d00e 100644 --- a/src/main/resources/data/mineralogy/recipe/slate_brick_wall.json +++ b/src/main/resources/data/mineralogy/recipe/slate_brick_wall.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/slate/brick" - } - }, - "result": { - "id": "mineralogy:slate_brick_wall", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/slate/brick" + }, + "result": { + "id": "mineralogy:slate_brick_wall", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/slate_brick_wall_polishing.json b/src/main/resources/data/mineralogy/recipe/slate_brick_wall_polishing.json index 02fdf0941..bd50a1ef9 100644 --- a/src/main/resources/data/mineralogy/recipe/slate_brick_wall_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/slate_brick_wall_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:slate_brick_wall" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:slate_smooth_brick_wall", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:slate_brick_wall", + "#c:sands" + ], + "result": { + "id": "mineralogy:slate_smooth_brick_wall", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/slate_cobblestone.json b/src/main/resources/data/mineralogy/recipe/slate_cobblestone.json index e91742d65..8e79bc7ec 100644 --- a/src/main/resources/data/mineralogy/recipe/slate_cobblestone.json +++ b/src/main/resources/data/mineralogy/recipe/slate_cobblestone.json @@ -1,22 +1,14 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "tag": "mineralogy:stones/slate" - }, - { - "tag": "mineralogy:stones/slate" - }, - { - "item": "minecraft:gravel" - }, - { - "item": "minecraft:gravel" - } - ], - "result": { - "id": "minecraft:cobblestone", - "count": 4 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "#mineralogy:stones/slate", + "#mineralogy:stones/slate", + "minecraft:gravel", + "minecraft:gravel" + ], + "result": { + "id": "minecraft:cobblestone", + "count": 4 + } } diff --git a/src/main/resources/data/mineralogy/recipe/slate_furnace.json b/src/main/resources/data/mineralogy/recipe/slate_furnace.json index 71de3af67..9f73b2dac 100644 --- a/src/main/resources/data/mineralogy/recipe/slate_furnace.json +++ b/src/main/resources/data/mineralogy/recipe/slate_furnace.json @@ -1,22 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "xxx", - "xyx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:slabs/slate" - }, - "y": { - "item": "minecraft:furnace" - } - }, - "result": { - "id": "mineralogy:slate_furnace", - "count": 1 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "xxx", + "xyx", + "xxx" + ], + "key": { + "x": "#mineralogy:slabs/slate", + "y": "minecraft:furnace" + }, + "result": { + "id": "mineralogy:slate_furnace", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/slate_polished_brick_slab_recombination.json b/src/main/resources/data/mineralogy/recipe/slate_polished_brick_slab_recombination.json index 13795bcb3..5ec816089 100644 --- a/src/main/resources/data/mineralogy/recipe/slate_polished_brick_slab_recombination.json +++ b/src/main/resources/data/mineralogy/recipe/slate_polished_brick_slab_recombination.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:slate_smooth_brick_slab" - }, - { - "item": "mineralogy:slate_smooth_brick_slab" - } - ], - "result": { - "id": "mineralogy:slate_smooth_brick", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:slate_smooth_brick_slab", + "mineralogy:slate_smooth_brick_slab" + ], + "result": { + "id": "mineralogy:slate_smooth_brick", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/slate_polished_slab_recombination.json b/src/main/resources/data/mineralogy/recipe/slate_polished_slab_recombination.json index 67d7e4d71..ddb99fb3e 100644 --- a/src/main/resources/data/mineralogy/recipe/slate_polished_slab_recombination.json +++ b/src/main/resources/data/mineralogy/recipe/slate_polished_slab_recombination.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:slate_smooth_slab" - }, - { - "item": "mineralogy:slate_smooth_slab" - } - ], - "result": { - "id": "mineralogy:slate_smooth", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:slate_smooth_slab", + "mineralogy:slate_smooth_slab" + ], + "result": { + "id": "mineralogy:slate_smooth", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/slate_polished_slabs_to_brick.json b/src/main/resources/data/mineralogy/recipe/slate_polished_slabs_to_brick.json index 66d1e1ca7..c90bd5b72 100644 --- a/src/main/resources/data/mineralogy/recipe/slate_polished_slabs_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/slate_polished_slabs_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:slate_smooth_slab" - } - }, - "result": { - "id": "mineralogy:slate_smooth_brick_slab", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:slate_smooth_slab" + }, + "result": { + "id": "mineralogy:slate_smooth_brick_slab", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/slate_polished_stairs_to_brick.json b/src/main/resources/data/mineralogy/recipe/slate_polished_stairs_to_brick.json index 5d7bd8f1c..6efccd6ef 100644 --- a/src/main/resources/data/mineralogy/recipe/slate_polished_stairs_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/slate_polished_stairs_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:slate_smooth_stairs" - } - }, - "result": { - "id": "mineralogy:slate_smooth_brick_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:slate_smooth_stairs" + }, + "result": { + "id": "mineralogy:slate_smooth_brick_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/slate_polished_walls_to_brick.json b/src/main/resources/data/mineralogy/recipe/slate_polished_walls_to_brick.json index e8c789b93..91b604da7 100644 --- a/src/main/resources/data/mineralogy/recipe/slate_polished_walls_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/slate_polished_walls_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:slate_smooth_wall" - } - }, - "result": { - "id": "mineralogy:slate_smooth_brick_wall", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:slate_smooth_wall" + }, + "result": { + "id": "mineralogy:slate_smooth_brick_wall", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/slate_raw_slab_polishing.json b/src/main/resources/data/mineralogy/recipe/slate_raw_slab_polishing.json index 79ae903c0..0c6ff9b8f 100644 --- a/src/main/resources/data/mineralogy/recipe/slate_raw_slab_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/slate_raw_slab_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:slate_slab" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:slate_smooth_slab", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:slate_slab", + "#c:sands" + ], + "result": { + "id": "mineralogy:slate_smooth_slab", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/slate_raw_slab_recombination.json b/src/main/resources/data/mineralogy/recipe/slate_raw_slab_recombination.json index 3c77d955e..4675b3153 100644 --- a/src/main/resources/data/mineralogy/recipe/slate_raw_slab_recombination.json +++ b/src/main/resources/data/mineralogy/recipe/slate_raw_slab_recombination.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:slate_slab" - }, - { - "item": "mineralogy:slate_slab" - } - ], - "result": { - "id": "mineralogy:slate", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:slate_slab", + "mineralogy:slate_slab" + ], + "result": { + "id": "mineralogy:slate", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/slate_raw_slabs_to_brick.json b/src/main/resources/data/mineralogy/recipe/slate_raw_slabs_to_brick.json index d63986f0e..473c89a6c 100644 --- a/src/main/resources/data/mineralogy/recipe/slate_raw_slabs_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/slate_raw_slabs_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:slate_slab" - } - }, - "result": { - "id": "mineralogy:slate_brick_slab", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:slate_slab" + }, + "result": { + "id": "mineralogy:slate_brick_slab", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/slate_raw_stairs_polishing.json b/src/main/resources/data/mineralogy/recipe/slate_raw_stairs_polishing.json index 13bb97304..84e521c1c 100644 --- a/src/main/resources/data/mineralogy/recipe/slate_raw_stairs_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/slate_raw_stairs_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:slate_stairs" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:slate_smooth_stairs", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:slate_stairs", + "#c:sands" + ], + "result": { + "id": "mineralogy:slate_smooth_stairs", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/slate_raw_stairs_to_brick.json b/src/main/resources/data/mineralogy/recipe/slate_raw_stairs_to_brick.json index 13e200070..c96d03262 100644 --- a/src/main/resources/data/mineralogy/recipe/slate_raw_stairs_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/slate_raw_stairs_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:slate_stairs" - } - }, - "result": { - "id": "mineralogy:slate_brick_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:slate_stairs" + }, + "result": { + "id": "mineralogy:slate_brick_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/slate_raw_wall_polishing.json b/src/main/resources/data/mineralogy/recipe/slate_raw_wall_polishing.json index 96e7b8551..9d18a81e6 100644 --- a/src/main/resources/data/mineralogy/recipe/slate_raw_wall_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/slate_raw_wall_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:slate_wall" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:slate_smooth_wall", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:slate_wall", + "#c:sands" + ], + "result": { + "id": "mineralogy:slate_smooth_wall", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/slate_raw_walls_to_brick.json b/src/main/resources/data/mineralogy/recipe/slate_raw_walls_to_brick.json index a30a46c23..17c35f21d 100644 --- a/src/main/resources/data/mineralogy/recipe/slate_raw_walls_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/slate_raw_walls_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:slate_wall" - } - }, - "result": { - "id": "mineralogy:slate_brick_wall", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:slate_wall" + }, + "result": { + "id": "mineralogy:slate_brick_wall", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/slate_relief_axe.json b/src/main/resources/data/mineralogy/recipe/slate_relief_axe.json index 2e2ffccc0..ebc0dc239 100644 --- a/src/main/resources/data/mineralogy/recipe/slate_relief_axe.json +++ b/src/main/resources/data/mineralogy/recipe/slate_relief_axe.json @@ -1,37 +1,19 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:slate_relief_blank" - }, - { - "item": "mineralogy:slate_relief_blank" - }, - { - "item": "mineralogy:slate_relief_blank" - }, - { - "item": "mineralogy:slate_relief_blank" - }, - { - "item": "mineralogy:slate_relief_blank" - }, - { - "item": "mineralogy:slate_relief_blank" - }, - { - "item": "mineralogy:slate_relief_blank" - }, - { - "item": "mineralogy:slate_relief_blank" - }, - { - "item": "minecraft:stone_axe" - } - ], - "result": { - "id": "mineralogy:slate_relief_axe", - "count": 8 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:slate_relief_blank", + "mineralogy:slate_relief_blank", + "mineralogy:slate_relief_blank", + "mineralogy:slate_relief_blank", + "mineralogy:slate_relief_blank", + "mineralogy:slate_relief_blank", + "mineralogy:slate_relief_blank", + "mineralogy:slate_relief_blank", + "minecraft:stone_axe" + ], + "result": { + "id": "mineralogy:slate_relief_axe", + "count": 8 + } } diff --git a/src/main/resources/data/mineralogy/recipe/slate_relief_blank.json b/src/main/resources/data/mineralogy/recipe/slate_relief_blank.json index fcd888ca0..b98c573b1 100644 --- a/src/main/resources/data/mineralogy/recipe/slate_relief_blank.json +++ b/src/main/resources/data/mineralogy/recipe/slate_relief_blank.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx", - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:slate_smooth" - } - }, - "result": { - "id": "mineralogy:slate_relief_blank", - "count": 16 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx", + "xxx" + ], + "key": { + "x": "mineralogy:slate_smooth" + }, + "result": { + "id": "mineralogy:slate_relief_blank", + "count": 16 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/slate_relief_cross.json b/src/main/resources/data/mineralogy/recipe/slate_relief_cross.json index a895fedb1..1bd9abfd7 100644 --- a/src/main/resources/data/mineralogy/recipe/slate_relief_cross.json +++ b/src/main/resources/data/mineralogy/recipe/slate_relief_cross.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x x", - " ", - "x x" - ], - "key": { - "x": { - "item": "mineralogy:slate_relief_blank" - } - }, - "result": { - "id": "mineralogy:slate_relief_cross", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x x", + " ", + "x x" + ], + "key": { + "x": "mineralogy:slate_relief_blank" + }, + "result": { + "id": "mineralogy:slate_relief_cross", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/slate_relief_hammer.json b/src/main/resources/data/mineralogy/recipe/slate_relief_hammer.json index f89095a36..a49eadbc6 100644 --- a/src/main/resources/data/mineralogy/recipe/slate_relief_hammer.json +++ b/src/main/resources/data/mineralogy/recipe/slate_relief_hammer.json @@ -1,25 +1,19 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "zxz", - "zyz", - "zzz" - ], - "key": { - "x": { - "item": "mineralogy:slate_smooth" - }, - "y": { - "item": "minecraft:stick" - }, - "z": { - "item": "mineralogy:slate_relief_blank" - } - }, - "result": { - "id": "mineralogy:slate_relief_hammer", - "count": 7 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "zxz", + "zyz", + "zzz" + ], + "key": { + "x": "mineralogy:slate_smooth", + "y": "minecraft:stick", + "z": "mineralogy:slate_relief_blank" + }, + "result": { + "id": "mineralogy:slate_relief_hammer", + "count": 7 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/slate_relief_hoe.json b/src/main/resources/data/mineralogy/recipe/slate_relief_hoe.json index 3a2a7620b..a3ec9aaf6 100644 --- a/src/main/resources/data/mineralogy/recipe/slate_relief_hoe.json +++ b/src/main/resources/data/mineralogy/recipe/slate_relief_hoe.json @@ -1,37 +1,19 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:slate_relief_blank" - }, - { - "item": "mineralogy:slate_relief_blank" - }, - { - "item": "mineralogy:slate_relief_blank" - }, - { - "item": "mineralogy:slate_relief_blank" - }, - { - "item": "mineralogy:slate_relief_blank" - }, - { - "item": "mineralogy:slate_relief_blank" - }, - { - "item": "mineralogy:slate_relief_blank" - }, - { - "item": "mineralogy:slate_relief_blank" - }, - { - "item": "minecraft:stone_hoe" - } - ], - "result": { - "id": "mineralogy:slate_relief_hoe", - "count": 8 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:slate_relief_blank", + "mineralogy:slate_relief_blank", + "mineralogy:slate_relief_blank", + "mineralogy:slate_relief_blank", + "mineralogy:slate_relief_blank", + "mineralogy:slate_relief_blank", + "mineralogy:slate_relief_blank", + "mineralogy:slate_relief_blank", + "minecraft:stone_hoe" + ], + "result": { + "id": "mineralogy:slate_relief_hoe", + "count": 8 + } } diff --git a/src/main/resources/data/mineralogy/recipe/slate_relief_horizontal.json b/src/main/resources/data/mineralogy/recipe/slate_relief_horizontal.json index 873d1c356..fc3a094e1 100644 --- a/src/main/resources/data/mineralogy/recipe/slate_relief_horizontal.json +++ b/src/main/resources/data/mineralogy/recipe/slate_relief_horizontal.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:slate_relief_blank" - } - }, - "result": { - "id": "mineralogy:slate_relief_horizontal", - "count": 3 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:slate_relief_blank" + }, + "result": { + "id": "mineralogy:slate_relief_horizontal", + "count": 3 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/slate_relief_i.json b/src/main/resources/data/mineralogy/recipe/slate_relief_i.json index a2f75ed80..bf5becc30 100644 --- a/src/main/resources/data/mineralogy/recipe/slate_relief_i.json +++ b/src/main/resources/data/mineralogy/recipe/slate_relief_i.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - " x ", - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:slate_relief_blank" - } - }, - "result": { - "id": "mineralogy:slate_relief_i", - "count": 7 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + " x ", + "xxx" + ], + "key": { + "x": "mineralogy:slate_relief_blank" + }, + "result": { + "id": "mineralogy:slate_relief_i", + "count": 7 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/slate_relief_left.json b/src/main/resources/data/mineralogy/recipe/slate_relief_left.json index f56ecd440..81fe9eb8d 100644 --- a/src/main/resources/data/mineralogy/recipe/slate_relief_left.json +++ b/src/main/resources/data/mineralogy/recipe/slate_relief_left.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - " x ", - " x" - ], - "key": { - "x": { - "item": "mineralogy:slate_relief_blank" - } - }, - "result": { - "id": "mineralogy:slate_relief_left", - "count": 3 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + " x ", + " x" + ], + "key": { + "x": "mineralogy:slate_relief_blank" + }, + "result": { + "id": "mineralogy:slate_relief_left", + "count": 3 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/slate_relief_pickaxe.json b/src/main/resources/data/mineralogy/recipe/slate_relief_pickaxe.json index 749fb7e2f..76eebe835 100644 --- a/src/main/resources/data/mineralogy/recipe/slate_relief_pickaxe.json +++ b/src/main/resources/data/mineralogy/recipe/slate_relief_pickaxe.json @@ -1,37 +1,19 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:slate_relief_blank" - }, - { - "item": "mineralogy:slate_relief_blank" - }, - { - "item": "mineralogy:slate_relief_blank" - }, - { - "item": "mineralogy:slate_relief_blank" - }, - { - "item": "mineralogy:slate_relief_blank" - }, - { - "item": "mineralogy:slate_relief_blank" - }, - { - "item": "mineralogy:slate_relief_blank" - }, - { - "item": "mineralogy:slate_relief_blank" - }, - { - "item": "minecraft:stone_pickaxe" - } - ], - "result": { - "id": "mineralogy:slate_relief_pickaxe", - "count": 8 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:slate_relief_blank", + "mineralogy:slate_relief_blank", + "mineralogy:slate_relief_blank", + "mineralogy:slate_relief_blank", + "mineralogy:slate_relief_blank", + "mineralogy:slate_relief_blank", + "mineralogy:slate_relief_blank", + "mineralogy:slate_relief_blank", + "minecraft:stone_pickaxe" + ], + "result": { + "id": "mineralogy:slate_relief_pickaxe", + "count": 8 + } } diff --git a/src/main/resources/data/mineralogy/recipe/slate_relief_plus.json b/src/main/resources/data/mineralogy/recipe/slate_relief_plus.json index 8a8941dbb..075e60ddb 100644 --- a/src/main/resources/data/mineralogy/recipe/slate_relief_plus.json +++ b/src/main/resources/data/mineralogy/recipe/slate_relief_plus.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - " x ", - "xxx", - " x " - ], - "key": { - "x": { - "item": "mineralogy:slate_relief_blank" - } - }, - "result": { - "id": "mineralogy:slate_relief_plus", - "count": 5 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + " x ", + "xxx", + " x " + ], + "key": { + "x": "mineralogy:slate_relief_blank" + }, + "result": { + "id": "mineralogy:slate_relief_plus", + "count": 5 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/slate_relief_right.json b/src/main/resources/data/mineralogy/recipe/slate_relief_right.json index 0cbc1d70f..b1a9e0422 100644 --- a/src/main/resources/data/mineralogy/recipe/slate_relief_right.json +++ b/src/main/resources/data/mineralogy/recipe/slate_relief_right.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:slate_relief_left" - }, - { - "item": "mineralogy:slate_relief_left" - } - ], - "result": { - "id": "mineralogy:slate_relief_right", - "count": 2 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:slate_relief_left", + "mineralogy:slate_relief_left" + ], + "result": { + "id": "mineralogy:slate_relief_right", + "count": 2 + } } diff --git a/src/main/resources/data/mineralogy/recipe/slate_relief_sword.json b/src/main/resources/data/mineralogy/recipe/slate_relief_sword.json index 2cf3dc119..5484f96ac 100644 --- a/src/main/resources/data/mineralogy/recipe/slate_relief_sword.json +++ b/src/main/resources/data/mineralogy/recipe/slate_relief_sword.json @@ -1,37 +1,19 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:slate_relief_blank" - }, - { - "item": "mineralogy:slate_relief_blank" - }, - { - "item": "mineralogy:slate_relief_blank" - }, - { - "item": "mineralogy:slate_relief_blank" - }, - { - "item": "mineralogy:slate_relief_blank" - }, - { - "item": "mineralogy:slate_relief_blank" - }, - { - "item": "mineralogy:slate_relief_blank" - }, - { - "item": "mineralogy:slate_relief_blank" - }, - { - "item": "minecraft:stone_sword" - } - ], - "result": { - "id": "mineralogy:slate_relief_sword", - "count": 8 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:slate_relief_blank", + "mineralogy:slate_relief_blank", + "mineralogy:slate_relief_blank", + "mineralogy:slate_relief_blank", + "mineralogy:slate_relief_blank", + "mineralogy:slate_relief_blank", + "mineralogy:slate_relief_blank", + "mineralogy:slate_relief_blank", + "minecraft:stone_sword" + ], + "result": { + "id": "mineralogy:slate_relief_sword", + "count": 8 + } } diff --git a/src/main/resources/data/mineralogy/recipe/slate_relief_vertical.json b/src/main/resources/data/mineralogy/recipe/slate_relief_vertical.json index e697c3bb0..4d9a56aef 100644 --- a/src/main/resources/data/mineralogy/recipe/slate_relief_vertical.json +++ b/src/main/resources/data/mineralogy/recipe/slate_relief_vertical.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x", - "x", - "x" - ], - "key": { - "x": { - "item": "mineralogy:slate_relief_blank" - } - }, - "result": { - "id": "mineralogy:slate_relief_vertical", - "count": 3 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x", + "x", + "x" + ], + "key": { + "x": "mineralogy:slate_relief_blank" + }, + "result": { + "id": "mineralogy:slate_relief_vertical", + "count": 3 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/slate_slab.json b/src/main/resources/data/mineralogy/recipe/slate_slab.json index a0cc86244..1ca433d9a 100644 --- a/src/main/resources/data/mineralogy/recipe/slate_slab.json +++ b/src/main/resources/data/mineralogy/recipe/slate_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:slate" - } - }, - "result": { - "id": "mineralogy:slate_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:slate" + }, + "result": { + "id": "mineralogy:slate_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/slate_smooth.json b/src/main/resources/data/mineralogy/recipe/slate_smooth.json index ab48accc1..2899be2af 100644 --- a/src/main/resources/data/mineralogy/recipe/slate_smooth.json +++ b/src/main/resources/data/mineralogy/recipe/slate_smooth.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "tag": "mineralogy:stones/slate" - }, - { - "item": "minecraft:sand" - } - ], - "result": { - "id": "mineralogy:slate_smooth", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "#mineralogy:stones/slate", + "minecraft:sand" + ], + "result": { + "id": "mineralogy:slate_smooth", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/slate_smooth_brick.json b/src/main/resources/data/mineralogy/recipe/slate_smooth_brick.json index d0ceeaf25..f489e1002 100644 --- a/src/main/resources/data/mineralogy/recipe/slate_smooth_brick.json +++ b/src/main/resources/data/mineralogy/recipe/slate_smooth_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/slate/smooth" - } - }, - "result": { - "id": "mineralogy:slate_smooth_brick", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "#mineralogy:stones/slate/smooth" + }, + "result": { + "id": "mineralogy:slate_smooth_brick", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/slate_smooth_brick_furnace.json b/src/main/resources/data/mineralogy/recipe/slate_smooth_brick_furnace.json index 35cda7140..8fced5c1d 100644 --- a/src/main/resources/data/mineralogy/recipe/slate_smooth_brick_furnace.json +++ b/src/main/resources/data/mineralogy/recipe/slate_smooth_brick_furnace.json @@ -1,22 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "xxx", - "xyx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:slabs/slate/smooth_brick" - }, - "y": { - "item": "minecraft:furnace" - } - }, - "result": { - "id": "mineralogy:slate_smooth_brick_furnace", - "count": 1 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "xxx", + "xyx", + "xxx" + ], + "key": { + "x": "#mineralogy:slabs/slate/smooth_brick", + "y": "minecraft:furnace" + }, + "result": { + "id": "mineralogy:slate_smooth_brick_furnace", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/slate_smooth_brick_slab.json b/src/main/resources/data/mineralogy/recipe/slate_smooth_brick_slab.json index ce38843ee..ebb2aa011 100644 --- a/src/main/resources/data/mineralogy/recipe/slate_smooth_brick_slab.json +++ b/src/main/resources/data/mineralogy/recipe/slate_smooth_brick_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:slate_smooth_brick" - } - }, - "result": { - "id": "mineralogy:slate_smooth_brick_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:slate_smooth_brick" + }, + "result": { + "id": "mineralogy:slate_smooth_brick_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/slate_smooth_brick_stairs.json b/src/main/resources/data/mineralogy/recipe/slate_smooth_brick_stairs.json index 5ddfb6c18..680975928 100644 --- a/src/main/resources/data/mineralogy/recipe/slate_smooth_brick_stairs.json +++ b/src/main/resources/data/mineralogy/recipe/slate_smooth_brick_stairs.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - "xx ", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/slate/smooth_brick" - } - }, - "result": { - "id": "mineralogy:slate_smooth_brick_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + "xx ", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/slate/smooth_brick" + }, + "result": { + "id": "mineralogy:slate_smooth_brick_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/slate_smooth_brick_wall.json b/src/main/resources/data/mineralogy/recipe/slate_smooth_brick_wall.json index fd3aa053c..b5d0377bc 100644 --- a/src/main/resources/data/mineralogy/recipe/slate_smooth_brick_wall.json +++ b/src/main/resources/data/mineralogy/recipe/slate_smooth_brick_wall.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/slate/smooth_brick" - } - }, - "result": { - "id": "mineralogy:slate_smooth_brick_wall", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/slate/smooth_brick" + }, + "result": { + "id": "mineralogy:slate_smooth_brick_wall", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/slate_smooth_furnace.json b/src/main/resources/data/mineralogy/recipe/slate_smooth_furnace.json index ab961fd6b..a0938d80c 100644 --- a/src/main/resources/data/mineralogy/recipe/slate_smooth_furnace.json +++ b/src/main/resources/data/mineralogy/recipe/slate_smooth_furnace.json @@ -1,22 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "xxx", - "xyx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:slabs/slate/smooth" - }, - "y": { - "item": "minecraft:furnace" - } - }, - "result": { - "id": "mineralogy:slate_smooth_furnace", - "count": 1 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "xxx", + "xyx", + "xxx" + ], + "key": { + "x": "#mineralogy:slabs/slate/smooth", + "y": "minecraft:furnace" + }, + "result": { + "id": "mineralogy:slate_smooth_furnace", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/slate_smooth_slab.json b/src/main/resources/data/mineralogy/recipe/slate_smooth_slab.json index 791868aab..c1768712f 100644 --- a/src/main/resources/data/mineralogy/recipe/slate_smooth_slab.json +++ b/src/main/resources/data/mineralogy/recipe/slate_smooth_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:slate_smooth" - } - }, - "result": { - "id": "mineralogy:slate_smooth_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:slate_smooth" + }, + "result": { + "id": "mineralogy:slate_smooth_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/slate_smooth_stairs.json b/src/main/resources/data/mineralogy/recipe/slate_smooth_stairs.json index bca3bbb5c..fe1fdacd0 100644 --- a/src/main/resources/data/mineralogy/recipe/slate_smooth_stairs.json +++ b/src/main/resources/data/mineralogy/recipe/slate_smooth_stairs.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - "xx ", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/slate/smooth" - } - }, - "result": { - "id": "mineralogy:slate_smooth_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + "xx ", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/slate/smooth" + }, + "result": { + "id": "mineralogy:slate_smooth_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/slate_smooth_wall.json b/src/main/resources/data/mineralogy/recipe/slate_smooth_wall.json index 9c2c8a184..2e56887ba 100644 --- a/src/main/resources/data/mineralogy/recipe/slate_smooth_wall.json +++ b/src/main/resources/data/mineralogy/recipe/slate_smooth_wall.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/slate/smooth" - } - }, - "result": { - "id": "mineralogy:slate_smooth_wall", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/slate/smooth" + }, + "result": { + "id": "mineralogy:slate_smooth_wall", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/slate_stairs.json b/src/main/resources/data/mineralogy/recipe/slate_stairs.json index ba2d86863..06f50191a 100644 --- a/src/main/resources/data/mineralogy/recipe/slate_stairs.json +++ b/src/main/resources/data/mineralogy/recipe/slate_stairs.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - "xx ", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/slate" - } - }, - "result": { - "id": "mineralogy:slate_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + "xx ", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/slate" + }, + "result": { + "id": "mineralogy:slate_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/slate_to_stone.json b/src/main/resources/data/mineralogy/recipe/slate_to_stone.json index b72d76f29..d1e317ff1 100644 --- a/src/main/resources/data/mineralogy/recipe/slate_to_stone.json +++ b/src/main/resources/data/mineralogy/recipe/slate_to_stone.json @@ -1,12 +1,10 @@ { - "type": "minecraft:smelting", - "category": "blocks", - "ingredient": { - "item": "mineralogy:slate" - }, - "result": { - "id": "minecraft:stone" - }, - "experience": 0.1, - "cookingtime": 200 + "type": "minecraft:smelting", + "category": "blocks", + "ingredient": "mineralogy:slate", + "result": { + "id": "minecraft:stone" + }, + "experience": 0.1, + "cookingtime": 200 } diff --git a/src/main/resources/data/mineralogy/recipe/slate_wall.json b/src/main/resources/data/mineralogy/recipe/slate_wall.json index b219819a5..57f102a96 100644 --- a/src/main/resources/data/mineralogy/recipe/slate_wall.json +++ b/src/main/resources/data/mineralogy/recipe/slate_wall.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/slate" - } - }, - "result": { - "id": "mineralogy:slate_wall", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/slate" + }, + "result": { + "id": "mineralogy:slate_wall", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/sulfur_block.json b/src/main/resources/data/mineralogy/recipe/sulfur_block.json index 38c4448d0..8e58169f3 100644 --- a/src/main/resources/data/mineralogy/recipe/sulfur_block.json +++ b/src/main/resources/data/mineralogy/recipe/sulfur_block.json @@ -1,25 +1,23 @@ { - "neoforge:conditions": [ - { - "type": "mineralogy:config", - "flag": "ENABLE_MINERAL_DUSTS" - } - ], - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx", - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:sulfur_dust" - } - }, - "result": { - "id": "mineralogy:sulfur_block", - "count": 1 - }, - "show_notification": true + "neoforge:conditions": [ + { + "type": "mineralogy:config", + "flag": "ENABLE_MINERAL_DUSTS" + } + ], + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx", + "xxx" + ], + "key": { + "x": "mineralogy:sulfur_dust" + }, + "result": { + "id": "mineralogy:sulfur_block", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/sulfur_dust.json b/src/main/resources/data/mineralogy/recipe/sulfur_dust.json index 7800fe86b..89c88dac2 100644 --- a/src/main/resources/data/mineralogy/recipe/sulfur_dust.json +++ b/src/main/resources/data/mineralogy/recipe/sulfur_dust.json @@ -1,19 +1,17 @@ { - "neoforge:conditions": [ - { - "type": "mineralogy:config", - "flag": "ENABLE_MINERAL_DUSTS" - } - ], - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "tag": "c:storage_blocks/sulfur" - } - ], - "result": { - "id": "mineralogy:sulfur_dust", - "count": 9 - } + "neoforge:conditions": [ + { + "type": "mineralogy:config", + "flag": "ENABLE_MINERAL_DUSTS" + } + ], + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "#c:storage_blocks/sulfur" + ], + "result": { + "id": "mineralogy:sulfur_dust", + "count": 9 + } } diff --git a/src/main/resources/data/mineralogy/recipe/tuff_brick.json b/src/main/resources/data/mineralogy/recipe/tuff_brick.json index ad787fcee..e0524d917 100644 --- a/src/main/resources/data/mineralogy/recipe/tuff_brick.json +++ b/src/main/resources/data/mineralogy/recipe/tuff_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/tuff" - } - }, - "result": { - "id": "mineralogy:tuff_brick", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "#mineralogy:stones/tuff" + }, + "result": { + "id": "mineralogy:tuff_brick", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/tuff_brick_block_polishing.json b/src/main/resources/data/mineralogy/recipe/tuff_brick_block_polishing.json index 56323a7de..4057adaf6 100644 --- a/src/main/resources/data/mineralogy/recipe/tuff_brick_block_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/tuff_brick_block_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "tag": "mineralogy:stones/tuff/brick" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:tuff_smooth_brick", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "#mineralogy:stones/tuff/brick", + "#c:sands" + ], + "result": { + "id": "mineralogy:tuff_smooth_brick", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/tuff_brick_furnace.json b/src/main/resources/data/mineralogy/recipe/tuff_brick_furnace.json index ec6f7b524..5cc739674 100644 --- a/src/main/resources/data/mineralogy/recipe/tuff_brick_furnace.json +++ b/src/main/resources/data/mineralogy/recipe/tuff_brick_furnace.json @@ -1,22 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "xxx", - "xyx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:slabs/tuff/brick" - }, - "y": { - "item": "minecraft:furnace" - } - }, - "result": { - "id": "mineralogy:tuff_brick_furnace", - "count": 1 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "xxx", + "xyx", + "xxx" + ], + "key": { + "x": "#mineralogy:slabs/tuff/brick", + "y": "minecraft:furnace" + }, + "result": { + "id": "mineralogy:tuff_brick_furnace", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/tuff_brick_slab.json b/src/main/resources/data/mineralogy/recipe/tuff_brick_slab.json index 20723c158..3f1152f0d 100644 --- a/src/main/resources/data/mineralogy/recipe/tuff_brick_slab.json +++ b/src/main/resources/data/mineralogy/recipe/tuff_brick_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:tuff_brick" - } - }, - "result": { - "id": "mineralogy:tuff_brick_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:tuff_brick" + }, + "result": { + "id": "mineralogy:tuff_brick_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/tuff_brick_slab_from_vanilla.json b/src/main/resources/data/mineralogy/recipe/tuff_brick_slab_from_vanilla.json index 2953e8043..16ca16fe7 100644 --- a/src/main/resources/data/mineralogy/recipe/tuff_brick_slab_from_vanilla.json +++ b/src/main/resources/data/mineralogy/recipe/tuff_brick_slab_from_vanilla.json @@ -1,13 +1,11 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "minecraft:tuff_brick_slab" - } - ], - "result": { - "id": "mineralogy:tuff_brick_slab", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "minecraft:tuff_brick_slab" + ], + "result": { + "id": "mineralogy:tuff_brick_slab", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/tuff_brick_slab_polishing.json b/src/main/resources/data/mineralogy/recipe/tuff_brick_slab_polishing.json index 4f7ad87b8..dcecb0d83 100644 --- a/src/main/resources/data/mineralogy/recipe/tuff_brick_slab_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/tuff_brick_slab_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:tuff_brick_slab" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:tuff_smooth_brick_slab", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:tuff_brick_slab", + "#c:sands" + ], + "result": { + "id": "mineralogy:tuff_smooth_brick_slab", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/tuff_brick_slab_recombination.json b/src/main/resources/data/mineralogy/recipe/tuff_brick_slab_recombination.json index cfd987533..98e47d21d 100644 --- a/src/main/resources/data/mineralogy/recipe/tuff_brick_slab_recombination.json +++ b/src/main/resources/data/mineralogy/recipe/tuff_brick_slab_recombination.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:tuff_brick_slab" - }, - { - "item": "mineralogy:tuff_brick_slab" - } - ], - "result": { - "id": "mineralogy:tuff_brick", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:tuff_brick_slab", + "mineralogy:tuff_brick_slab" + ], + "result": { + "id": "mineralogy:tuff_brick", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/tuff_brick_slab_to_vanilla.json b/src/main/resources/data/mineralogy/recipe/tuff_brick_slab_to_vanilla.json index 91fdee2cb..a461dadb4 100644 --- a/src/main/resources/data/mineralogy/recipe/tuff_brick_slab_to_vanilla.json +++ b/src/main/resources/data/mineralogy/recipe/tuff_brick_slab_to_vanilla.json @@ -1,13 +1,11 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:tuff_brick_slab" - } - ], - "result": { - "id": "minecraft:tuff_brick_slab", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:tuff_brick_slab" + ], + "result": { + "id": "minecraft:tuff_brick_slab", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/tuff_brick_stairs.json b/src/main/resources/data/mineralogy/recipe/tuff_brick_stairs.json index 6563d2523..d105336ed 100644 --- a/src/main/resources/data/mineralogy/recipe/tuff_brick_stairs.json +++ b/src/main/resources/data/mineralogy/recipe/tuff_brick_stairs.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - "xx ", - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:tuff_brick" - } - }, - "result": { - "id": "mineralogy:tuff_brick_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + "xx ", + "xxx" + ], + "key": { + "x": "mineralogy:tuff_brick" + }, + "result": { + "id": "mineralogy:tuff_brick_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/tuff_brick_stairs_polishing.json b/src/main/resources/data/mineralogy/recipe/tuff_brick_stairs_polishing.json index 56f982b9f..5c6498c8a 100644 --- a/src/main/resources/data/mineralogy/recipe/tuff_brick_stairs_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/tuff_brick_stairs_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:tuff_brick_stairs" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:tuff_smooth_brick_stairs", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:tuff_brick_stairs", + "#c:sands" + ], + "result": { + "id": "mineralogy:tuff_smooth_brick_stairs", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/tuff_brick_wall.json b/src/main/resources/data/mineralogy/recipe/tuff_brick_wall.json index bce5e7e04..67dd4e40a 100644 --- a/src/main/resources/data/mineralogy/recipe/tuff_brick_wall.json +++ b/src/main/resources/data/mineralogy/recipe/tuff_brick_wall.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:tuff_brick" - } - }, - "result": { - "id": "mineralogy:tuff_brick_wall", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx" + ], + "key": { + "x": "mineralogy:tuff_brick" + }, + "result": { + "id": "mineralogy:tuff_brick_wall", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/tuff_brick_wall_polishing.json b/src/main/resources/data/mineralogy/recipe/tuff_brick_wall_polishing.json index 4de858c1f..919e7d7a5 100644 --- a/src/main/resources/data/mineralogy/recipe/tuff_brick_wall_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/tuff_brick_wall_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:tuff_brick_wall" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:tuff_smooth_brick_wall", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:tuff_brick_wall", + "#c:sands" + ], + "result": { + "id": "mineralogy:tuff_smooth_brick_wall", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/tuff_cobblestone.json b/src/main/resources/data/mineralogy/recipe/tuff_cobblestone.json index 062ff4931..7ab56ca64 100644 --- a/src/main/resources/data/mineralogy/recipe/tuff_cobblestone.json +++ b/src/main/resources/data/mineralogy/recipe/tuff_cobblestone.json @@ -1,22 +1,14 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "tag": "mineralogy:stones/tuff" - }, - { - "tag": "mineralogy:stones/tuff" - }, - { - "item": "minecraft:gravel" - }, - { - "item": "minecraft:gravel" - } - ], - "result": { - "id": "minecraft:cobblestone", - "count": 4 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "#mineralogy:stones/tuff", + "#mineralogy:stones/tuff", + "minecraft:gravel", + "minecraft:gravel" + ], + "result": { + "id": "minecraft:cobblestone", + "count": 4 + } } diff --git a/src/main/resources/data/mineralogy/recipe/tuff_furnace.json b/src/main/resources/data/mineralogy/recipe/tuff_furnace.json index ee6c8ebb9..631dfdbd3 100644 --- a/src/main/resources/data/mineralogy/recipe/tuff_furnace.json +++ b/src/main/resources/data/mineralogy/recipe/tuff_furnace.json @@ -1,22 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "xxx", - "xyx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:slabs/tuff" - }, - "y": { - "item": "minecraft:furnace" - } - }, - "result": { - "id": "mineralogy:tuff_furnace", - "count": 1 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "xxx", + "xyx", + "xxx" + ], + "key": { + "x": "#mineralogy:slabs/tuff", + "y": "minecraft:furnace" + }, + "result": { + "id": "mineralogy:tuff_furnace", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/tuff_polished_brick_slab_recombination.json b/src/main/resources/data/mineralogy/recipe/tuff_polished_brick_slab_recombination.json index 8ec133785..a97718205 100644 --- a/src/main/resources/data/mineralogy/recipe/tuff_polished_brick_slab_recombination.json +++ b/src/main/resources/data/mineralogy/recipe/tuff_polished_brick_slab_recombination.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:tuff_smooth_brick_slab" - }, - { - "item": "mineralogy:tuff_smooth_brick_slab" - } - ], - "result": { - "id": "mineralogy:tuff_smooth_brick", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:tuff_smooth_brick_slab", + "mineralogy:tuff_smooth_brick_slab" + ], + "result": { + "id": "mineralogy:tuff_smooth_brick", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/tuff_polished_slab_recombination.json b/src/main/resources/data/mineralogy/recipe/tuff_polished_slab_recombination.json index 27f5ca587..8abc5271b 100644 --- a/src/main/resources/data/mineralogy/recipe/tuff_polished_slab_recombination.json +++ b/src/main/resources/data/mineralogy/recipe/tuff_polished_slab_recombination.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:tuff_smooth_slab" - }, - { - "item": "mineralogy:tuff_smooth_slab" - } - ], - "result": { - "id": "mineralogy:tuff_smooth", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:tuff_smooth_slab", + "mineralogy:tuff_smooth_slab" + ], + "result": { + "id": "mineralogy:tuff_smooth", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/tuff_polished_slabs_to_brick.json b/src/main/resources/data/mineralogy/recipe/tuff_polished_slabs_to_brick.json index c6aac8156..b772bc910 100644 --- a/src/main/resources/data/mineralogy/recipe/tuff_polished_slabs_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/tuff_polished_slabs_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:tuff_smooth_slab" - } - }, - "result": { - "id": "mineralogy:tuff_smooth_brick_slab", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:tuff_smooth_slab" + }, + "result": { + "id": "mineralogy:tuff_smooth_brick_slab", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/tuff_polished_stairs_to_brick.json b/src/main/resources/data/mineralogy/recipe/tuff_polished_stairs_to_brick.json index 871f520d4..9ec16a636 100644 --- a/src/main/resources/data/mineralogy/recipe/tuff_polished_stairs_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/tuff_polished_stairs_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:tuff_smooth_stairs" - } - }, - "result": { - "id": "mineralogy:tuff_smooth_brick_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:tuff_smooth_stairs" + }, + "result": { + "id": "mineralogy:tuff_smooth_brick_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/tuff_polished_walls_to_brick.json b/src/main/resources/data/mineralogy/recipe/tuff_polished_walls_to_brick.json index d02a12ddb..de634a239 100644 --- a/src/main/resources/data/mineralogy/recipe/tuff_polished_walls_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/tuff_polished_walls_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:tuff_smooth_wall" - } - }, - "result": { - "id": "mineralogy:tuff_smooth_brick_wall", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:tuff_smooth_wall" + }, + "result": { + "id": "mineralogy:tuff_smooth_brick_wall", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/tuff_raw_slab_polishing.json b/src/main/resources/data/mineralogy/recipe/tuff_raw_slab_polishing.json index 6dbadb779..4f7fd7b05 100644 --- a/src/main/resources/data/mineralogy/recipe/tuff_raw_slab_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/tuff_raw_slab_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:tuff_slab" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:tuff_smooth_slab", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:tuff_slab", + "#c:sands" + ], + "result": { + "id": "mineralogy:tuff_smooth_slab", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/tuff_raw_slab_recombination.json b/src/main/resources/data/mineralogy/recipe/tuff_raw_slab_recombination.json index 84cb4f5be..82b1e35a2 100644 --- a/src/main/resources/data/mineralogy/recipe/tuff_raw_slab_recombination.json +++ b/src/main/resources/data/mineralogy/recipe/tuff_raw_slab_recombination.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:tuff_slab" - }, - { - "item": "mineralogy:tuff_slab" - } - ], - "result": { - "id": "mineralogy:tuff", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:tuff_slab", + "mineralogy:tuff_slab" + ], + "result": { + "id": "mineralogy:tuff", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/tuff_raw_slabs_to_brick.json b/src/main/resources/data/mineralogy/recipe/tuff_raw_slabs_to_brick.json index cb532f04b..c6605849d 100644 --- a/src/main/resources/data/mineralogy/recipe/tuff_raw_slabs_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/tuff_raw_slabs_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:tuff_slab" - } - }, - "result": { - "id": "mineralogy:tuff_brick_slab", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:tuff_slab" + }, + "result": { + "id": "mineralogy:tuff_brick_slab", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/tuff_raw_stairs_polishing.json b/src/main/resources/data/mineralogy/recipe/tuff_raw_stairs_polishing.json index 5fcc83444..2fe72b209 100644 --- a/src/main/resources/data/mineralogy/recipe/tuff_raw_stairs_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/tuff_raw_stairs_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:tuff_stairs" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:tuff_smooth_stairs", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:tuff_stairs", + "#c:sands" + ], + "result": { + "id": "mineralogy:tuff_smooth_stairs", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/tuff_raw_stairs_to_brick.json b/src/main/resources/data/mineralogy/recipe/tuff_raw_stairs_to_brick.json index b6eb2bf57..a0f601b1b 100644 --- a/src/main/resources/data/mineralogy/recipe/tuff_raw_stairs_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/tuff_raw_stairs_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:tuff_stairs" - } - }, - "result": { - "id": "mineralogy:tuff_brick_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:tuff_stairs" + }, + "result": { + "id": "mineralogy:tuff_brick_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/tuff_raw_wall_polishing.json b/src/main/resources/data/mineralogy/recipe/tuff_raw_wall_polishing.json index 165d2698b..ddb292f77 100644 --- a/src/main/resources/data/mineralogy/recipe/tuff_raw_wall_polishing.json +++ b/src/main/resources/data/mineralogy/recipe/tuff_raw_wall_polishing.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:tuff_wall" - }, - { - "tag": "c:sands" - } - ], - "result": { - "id": "mineralogy:tuff_smooth_wall", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:tuff_wall", + "#c:sands" + ], + "result": { + "id": "mineralogy:tuff_smooth_wall", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/tuff_raw_walls_to_brick.json b/src/main/resources/data/mineralogy/recipe/tuff_raw_walls_to_brick.json index 352d5e216..7a20695aa 100644 --- a/src/main/resources/data/mineralogy/recipe/tuff_raw_walls_to_brick.json +++ b/src/main/resources/data/mineralogy/recipe/tuff_raw_walls_to_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:tuff_wall" - } - }, - "result": { - "id": "mineralogy:tuff_brick_wall", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:tuff_wall" + }, + "result": { + "id": "mineralogy:tuff_brick_wall", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/tuff_relief_axe.json b/src/main/resources/data/mineralogy/recipe/tuff_relief_axe.json index 418861359..f6faaf4a8 100644 --- a/src/main/resources/data/mineralogy/recipe/tuff_relief_axe.json +++ b/src/main/resources/data/mineralogy/recipe/tuff_relief_axe.json @@ -1,37 +1,19 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:tuff_relief_blank" - }, - { - "item": "mineralogy:tuff_relief_blank" - }, - { - "item": "mineralogy:tuff_relief_blank" - }, - { - "item": "mineralogy:tuff_relief_blank" - }, - { - "item": "mineralogy:tuff_relief_blank" - }, - { - "item": "mineralogy:tuff_relief_blank" - }, - { - "item": "mineralogy:tuff_relief_blank" - }, - { - "item": "mineralogy:tuff_relief_blank" - }, - { - "item": "minecraft:stone_axe" - } - ], - "result": { - "id": "mineralogy:tuff_relief_axe", - "count": 8 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:tuff_relief_blank", + "mineralogy:tuff_relief_blank", + "mineralogy:tuff_relief_blank", + "mineralogy:tuff_relief_blank", + "mineralogy:tuff_relief_blank", + "mineralogy:tuff_relief_blank", + "mineralogy:tuff_relief_blank", + "mineralogy:tuff_relief_blank", + "minecraft:stone_axe" + ], + "result": { + "id": "mineralogy:tuff_relief_axe", + "count": 8 + } } diff --git a/src/main/resources/data/mineralogy/recipe/tuff_relief_blank.json b/src/main/resources/data/mineralogy/recipe/tuff_relief_blank.json index 3ff761ad1..13baab103 100644 --- a/src/main/resources/data/mineralogy/recipe/tuff_relief_blank.json +++ b/src/main/resources/data/mineralogy/recipe/tuff_relief_blank.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/tuff/smooth" - } - }, - "result": { - "id": "mineralogy:tuff_relief_blank", - "count": 16 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/tuff/smooth" + }, + "result": { + "id": "mineralogy:tuff_relief_blank", + "count": 16 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/tuff_relief_cross.json b/src/main/resources/data/mineralogy/recipe/tuff_relief_cross.json index 161b18df2..2676a8bde 100644 --- a/src/main/resources/data/mineralogy/recipe/tuff_relief_cross.json +++ b/src/main/resources/data/mineralogy/recipe/tuff_relief_cross.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x x", - " ", - "x x" - ], - "key": { - "x": { - "item": "mineralogy:tuff_relief_blank" - } - }, - "result": { - "id": "mineralogy:tuff_relief_cross", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x x", + " ", + "x x" + ], + "key": { + "x": "mineralogy:tuff_relief_blank" + }, + "result": { + "id": "mineralogy:tuff_relief_cross", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/tuff_relief_hammer.json b/src/main/resources/data/mineralogy/recipe/tuff_relief_hammer.json index 5b2b33811..613905bf3 100644 --- a/src/main/resources/data/mineralogy/recipe/tuff_relief_hammer.json +++ b/src/main/resources/data/mineralogy/recipe/tuff_relief_hammer.json @@ -1,25 +1,19 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "zxz", - "zyz", - "zzz" - ], - "key": { - "x": { - "item": "mineralogy:tuff_smooth" - }, - "y": { - "item": "minecraft:stick" - }, - "z": { - "item": "mineralogy:tuff_relief_blank" - } - }, - "result": { - "id": "mineralogy:tuff_relief_hammer", - "count": 7 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "zxz", + "zyz", + "zzz" + ], + "key": { + "x": "mineralogy:tuff_smooth", + "y": "minecraft:stick", + "z": "mineralogy:tuff_relief_blank" + }, + "result": { + "id": "mineralogy:tuff_relief_hammer", + "count": 7 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/tuff_relief_hoe.json b/src/main/resources/data/mineralogy/recipe/tuff_relief_hoe.json index 35d5aa762..88fe1ce0e 100644 --- a/src/main/resources/data/mineralogy/recipe/tuff_relief_hoe.json +++ b/src/main/resources/data/mineralogy/recipe/tuff_relief_hoe.json @@ -1,37 +1,19 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:tuff_relief_blank" - }, - { - "item": "mineralogy:tuff_relief_blank" - }, - { - "item": "mineralogy:tuff_relief_blank" - }, - { - "item": "mineralogy:tuff_relief_blank" - }, - { - "item": "mineralogy:tuff_relief_blank" - }, - { - "item": "mineralogy:tuff_relief_blank" - }, - { - "item": "mineralogy:tuff_relief_blank" - }, - { - "item": "mineralogy:tuff_relief_blank" - }, - { - "item": "minecraft:stone_hoe" - } - ], - "result": { - "id": "mineralogy:tuff_relief_hoe", - "count": 8 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:tuff_relief_blank", + "mineralogy:tuff_relief_blank", + "mineralogy:tuff_relief_blank", + "mineralogy:tuff_relief_blank", + "mineralogy:tuff_relief_blank", + "mineralogy:tuff_relief_blank", + "mineralogy:tuff_relief_blank", + "mineralogy:tuff_relief_blank", + "minecraft:stone_hoe" + ], + "result": { + "id": "mineralogy:tuff_relief_hoe", + "count": 8 + } } diff --git a/src/main/resources/data/mineralogy/recipe/tuff_relief_horizontal.json b/src/main/resources/data/mineralogy/recipe/tuff_relief_horizontal.json index 5d93dd782..ecb0e6db7 100644 --- a/src/main/resources/data/mineralogy/recipe/tuff_relief_horizontal.json +++ b/src/main/resources/data/mineralogy/recipe/tuff_relief_horizontal.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:tuff_relief_blank" - } - }, - "result": { - "id": "mineralogy:tuff_relief_horizontal", - "count": 3 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:tuff_relief_blank" + }, + "result": { + "id": "mineralogy:tuff_relief_horizontal", + "count": 3 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/tuff_relief_i.json b/src/main/resources/data/mineralogy/recipe/tuff_relief_i.json index d3188910d..efc132e57 100644 --- a/src/main/resources/data/mineralogy/recipe/tuff_relief_i.json +++ b/src/main/resources/data/mineralogy/recipe/tuff_relief_i.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - " x ", - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:tuff_relief_blank" - } - }, - "result": { - "id": "mineralogy:tuff_relief_i", - "count": 7 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + " x ", + "xxx" + ], + "key": { + "x": "mineralogy:tuff_relief_blank" + }, + "result": { + "id": "mineralogy:tuff_relief_i", + "count": 7 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/tuff_relief_left.json b/src/main/resources/data/mineralogy/recipe/tuff_relief_left.json index fc118a368..d39b4c6b5 100644 --- a/src/main/resources/data/mineralogy/recipe/tuff_relief_left.json +++ b/src/main/resources/data/mineralogy/recipe/tuff_relief_left.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - " x ", - " x" - ], - "key": { - "x": { - "item": "mineralogy:tuff_relief_blank" - } - }, - "result": { - "id": "mineralogy:tuff_relief_left", - "count": 3 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + " x ", + " x" + ], + "key": { + "x": "mineralogy:tuff_relief_blank" + }, + "result": { + "id": "mineralogy:tuff_relief_left", + "count": 3 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/tuff_relief_pickaxe.json b/src/main/resources/data/mineralogy/recipe/tuff_relief_pickaxe.json index 701201c95..befe8f629 100644 --- a/src/main/resources/data/mineralogy/recipe/tuff_relief_pickaxe.json +++ b/src/main/resources/data/mineralogy/recipe/tuff_relief_pickaxe.json @@ -1,37 +1,19 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:tuff_relief_blank" - }, - { - "item": "mineralogy:tuff_relief_blank" - }, - { - "item": "mineralogy:tuff_relief_blank" - }, - { - "item": "mineralogy:tuff_relief_blank" - }, - { - "item": "mineralogy:tuff_relief_blank" - }, - { - "item": "mineralogy:tuff_relief_blank" - }, - { - "item": "mineralogy:tuff_relief_blank" - }, - { - "item": "mineralogy:tuff_relief_blank" - }, - { - "item": "minecraft:stone_pickaxe" - } - ], - "result": { - "id": "mineralogy:tuff_relief_pickaxe", - "count": 8 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:tuff_relief_blank", + "mineralogy:tuff_relief_blank", + "mineralogy:tuff_relief_blank", + "mineralogy:tuff_relief_blank", + "mineralogy:tuff_relief_blank", + "mineralogy:tuff_relief_blank", + "mineralogy:tuff_relief_blank", + "mineralogy:tuff_relief_blank", + "minecraft:stone_pickaxe" + ], + "result": { + "id": "mineralogy:tuff_relief_pickaxe", + "count": 8 + } } diff --git a/src/main/resources/data/mineralogy/recipe/tuff_relief_plus.json b/src/main/resources/data/mineralogy/recipe/tuff_relief_plus.json index 04eeffa55..5020ac5b1 100644 --- a/src/main/resources/data/mineralogy/recipe/tuff_relief_plus.json +++ b/src/main/resources/data/mineralogy/recipe/tuff_relief_plus.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - " x ", - "xxx", - " x " - ], - "key": { - "x": { - "item": "mineralogy:tuff_relief_blank" - } - }, - "result": { - "id": "mineralogy:tuff_relief_plus", - "count": 5 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + " x ", + "xxx", + " x " + ], + "key": { + "x": "mineralogy:tuff_relief_blank" + }, + "result": { + "id": "mineralogy:tuff_relief_plus", + "count": 5 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/tuff_relief_right.json b/src/main/resources/data/mineralogy/recipe/tuff_relief_right.json index 18ad69740..cab623e02 100644 --- a/src/main/resources/data/mineralogy/recipe/tuff_relief_right.json +++ b/src/main/resources/data/mineralogy/recipe/tuff_relief_right.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:tuff_relief_left" - }, - { - "item": "mineralogy:tuff_relief_left" - } - ], - "result": { - "id": "mineralogy:tuff_relief_right", - "count": 2 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:tuff_relief_left", + "mineralogy:tuff_relief_left" + ], + "result": { + "id": "mineralogy:tuff_relief_right", + "count": 2 + } } diff --git a/src/main/resources/data/mineralogy/recipe/tuff_relief_sword.json b/src/main/resources/data/mineralogy/recipe/tuff_relief_sword.json index c611293a8..62fcb7242 100644 --- a/src/main/resources/data/mineralogy/recipe/tuff_relief_sword.json +++ b/src/main/resources/data/mineralogy/recipe/tuff_relief_sword.json @@ -1,37 +1,19 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:tuff_relief_blank" - }, - { - "item": "mineralogy:tuff_relief_blank" - }, - { - "item": "mineralogy:tuff_relief_blank" - }, - { - "item": "mineralogy:tuff_relief_blank" - }, - { - "item": "mineralogy:tuff_relief_blank" - }, - { - "item": "mineralogy:tuff_relief_blank" - }, - { - "item": "mineralogy:tuff_relief_blank" - }, - { - "item": "mineralogy:tuff_relief_blank" - }, - { - "item": "minecraft:stone_sword" - } - ], - "result": { - "id": "mineralogy:tuff_relief_sword", - "count": 8 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:tuff_relief_blank", + "mineralogy:tuff_relief_blank", + "mineralogy:tuff_relief_blank", + "mineralogy:tuff_relief_blank", + "mineralogy:tuff_relief_blank", + "mineralogy:tuff_relief_blank", + "mineralogy:tuff_relief_blank", + "mineralogy:tuff_relief_blank", + "minecraft:stone_sword" + ], + "result": { + "id": "mineralogy:tuff_relief_sword", + "count": 8 + } } diff --git a/src/main/resources/data/mineralogy/recipe/tuff_relief_vertical.json b/src/main/resources/data/mineralogy/recipe/tuff_relief_vertical.json index 5597aa989..9ba993354 100644 --- a/src/main/resources/data/mineralogy/recipe/tuff_relief_vertical.json +++ b/src/main/resources/data/mineralogy/recipe/tuff_relief_vertical.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x", - "x", - "x" - ], - "key": { - "x": { - "item": "mineralogy:tuff_relief_blank" - } - }, - "result": { - "id": "mineralogy:tuff_relief_vertical", - "count": 3 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x", + "x", + "x" + ], + "key": { + "x": "mineralogy:tuff_relief_blank" + }, + "result": { + "id": "mineralogy:tuff_relief_vertical", + "count": 3 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/tuff_slab.json b/src/main/resources/data/mineralogy/recipe/tuff_slab.json index 25d585400..565f2a1e8 100644 --- a/src/main/resources/data/mineralogy/recipe/tuff_slab.json +++ b/src/main/resources/data/mineralogy/recipe/tuff_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:tuff" - } - }, - "result": { - "id": "mineralogy:tuff_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:tuff" + }, + "result": { + "id": "mineralogy:tuff_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/tuff_slab_from_vanilla.json b/src/main/resources/data/mineralogy/recipe/tuff_slab_from_vanilla.json index cad7ec81c..08423bfc7 100644 --- a/src/main/resources/data/mineralogy/recipe/tuff_slab_from_vanilla.json +++ b/src/main/resources/data/mineralogy/recipe/tuff_slab_from_vanilla.json @@ -1,13 +1,11 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "minecraft:tuff_slab" - } - ], - "result": { - "id": "mineralogy:tuff_slab", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "minecraft:tuff_slab" + ], + "result": { + "id": "mineralogy:tuff_slab", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/tuff_slab_to_vanilla.json b/src/main/resources/data/mineralogy/recipe/tuff_slab_to_vanilla.json index 80b81c2d2..f546f712f 100644 --- a/src/main/resources/data/mineralogy/recipe/tuff_slab_to_vanilla.json +++ b/src/main/resources/data/mineralogy/recipe/tuff_slab_to_vanilla.json @@ -1,13 +1,11 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:tuff_slab" - } - ], - "result": { - "id": "minecraft:tuff_slab", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:tuff_slab" + ], + "result": { + "id": "minecraft:tuff_slab", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/tuff_smooth.json b/src/main/resources/data/mineralogy/recipe/tuff_smooth.json index aa339ad80..1fb23f56a 100644 --- a/src/main/resources/data/mineralogy/recipe/tuff_smooth.json +++ b/src/main/resources/data/mineralogy/recipe/tuff_smooth.json @@ -1,16 +1,12 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:tuff" - }, - { - "item": "minecraft:sand" - } - ], - "result": { - "id": "mineralogy:tuff_smooth", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:tuff", + "minecraft:sand" + ], + "result": { + "id": "mineralogy:tuff_smooth", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/tuff_smooth_brick.json b/src/main/resources/data/mineralogy/recipe/tuff_smooth_brick.json index a44a10184..e70297b4f 100644 --- a/src/main/resources/data/mineralogy/recipe/tuff_smooth_brick.json +++ b/src/main/resources/data/mineralogy/recipe/tuff_smooth_brick.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xx", - "xx" - ], - "key": { - "x": { - "item": "mineralogy:tuff_smooth" - } - }, - "result": { - "id": "mineralogy:tuff_smooth_brick", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xx", + "xx" + ], + "key": { + "x": "mineralogy:tuff_smooth" + }, + "result": { + "id": "mineralogy:tuff_smooth_brick", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/tuff_smooth_brick_furnace.json b/src/main/resources/data/mineralogy/recipe/tuff_smooth_brick_furnace.json index c40501f82..efb7c422a 100644 --- a/src/main/resources/data/mineralogy/recipe/tuff_smooth_brick_furnace.json +++ b/src/main/resources/data/mineralogy/recipe/tuff_smooth_brick_furnace.json @@ -1,22 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "xxx", - "xyx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:slabs/tuff/smooth_brick" - }, - "y": { - "item": "minecraft:furnace" - } - }, - "result": { - "id": "mineralogy:tuff_smooth_brick_furnace", - "count": 1 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "xxx", + "xyx", + "xxx" + ], + "key": { + "x": "#mineralogy:slabs/tuff/smooth_brick", + "y": "minecraft:furnace" + }, + "result": { + "id": "mineralogy:tuff_smooth_brick_furnace", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/tuff_smooth_brick_slab.json b/src/main/resources/data/mineralogy/recipe/tuff_smooth_brick_slab.json index c7c115548..63cdd9cd4 100644 --- a/src/main/resources/data/mineralogy/recipe/tuff_smooth_brick_slab.json +++ b/src/main/resources/data/mineralogy/recipe/tuff_smooth_brick_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:tuff_smooth_brick" - } - }, - "result": { - "id": "mineralogy:tuff_smooth_brick_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:tuff_smooth_brick" + }, + "result": { + "id": "mineralogy:tuff_smooth_brick_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/tuff_smooth_brick_stairs.json b/src/main/resources/data/mineralogy/recipe/tuff_smooth_brick_stairs.json index ee69ae01d..f1bfcc462 100644 --- a/src/main/resources/data/mineralogy/recipe/tuff_smooth_brick_stairs.json +++ b/src/main/resources/data/mineralogy/recipe/tuff_smooth_brick_stairs.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - "xx ", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/tuff/smooth_brick" - } - }, - "result": { - "id": "mineralogy:tuff_smooth_brick_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + "xx ", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/tuff/smooth_brick" + }, + "result": { + "id": "mineralogy:tuff_smooth_brick_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/tuff_smooth_brick_wall.json b/src/main/resources/data/mineralogy/recipe/tuff_smooth_brick_wall.json index 73e277d6b..ba16e8427 100644 --- a/src/main/resources/data/mineralogy/recipe/tuff_smooth_brick_wall.json +++ b/src/main/resources/data/mineralogy/recipe/tuff_smooth_brick_wall.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:stones/tuff/smooth_brick" - } - }, - "result": { - "id": "mineralogy:tuff_smooth_brick_wall", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx" + ], + "key": { + "x": "#mineralogy:stones/tuff/smooth_brick" + }, + "result": { + "id": "mineralogy:tuff_smooth_brick_wall", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/tuff_smooth_furnace.json b/src/main/resources/data/mineralogy/recipe/tuff_smooth_furnace.json index 8dfc88b48..1cc3a04c5 100644 --- a/src/main/resources/data/mineralogy/recipe/tuff_smooth_furnace.json +++ b/src/main/resources/data/mineralogy/recipe/tuff_smooth_furnace.json @@ -1,22 +1,18 @@ { - "type": "minecraft:crafting_shaped", - "category": "misc", - "pattern": [ - "xxx", - "xyx", - "xxx" - ], - "key": { - "x": { - "tag": "mineralogy:slabs/tuff/smooth" - }, - "y": { - "item": "minecraft:furnace" - } - }, - "result": { - "id": "mineralogy:tuff_smooth_furnace", - "count": 1 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "xxx", + "xyx", + "xxx" + ], + "key": { + "x": "#mineralogy:slabs/tuff/smooth", + "y": "minecraft:furnace" + }, + "result": { + "id": "mineralogy:tuff_smooth_furnace", + "count": 1 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/tuff_smooth_slab.json b/src/main/resources/data/mineralogy/recipe/tuff_smooth_slab.json index 209a9b854..13474945d 100644 --- a/src/main/resources/data/mineralogy/recipe/tuff_smooth_slab.json +++ b/src/main/resources/data/mineralogy/recipe/tuff_smooth_slab.json @@ -1,17 +1,15 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:tuff_smooth" - } - }, - "result": { - "id": "mineralogy:tuff_smooth_slab", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx" + ], + "key": { + "x": "mineralogy:tuff_smooth" + }, + "result": { + "id": "mineralogy:tuff_smooth_slab", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/tuff_smooth_slab_from_vanilla.json b/src/main/resources/data/mineralogy/recipe/tuff_smooth_slab_from_vanilla.json index bf3869347..6f189497c 100644 --- a/src/main/resources/data/mineralogy/recipe/tuff_smooth_slab_from_vanilla.json +++ b/src/main/resources/data/mineralogy/recipe/tuff_smooth_slab_from_vanilla.json @@ -1,13 +1,11 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "minecraft:polished_tuff_slab" - } - ], - "result": { - "id": "mineralogy:tuff_smooth_slab", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "minecraft:polished_tuff_slab" + ], + "result": { + "id": "mineralogy:tuff_smooth_slab", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/tuff_smooth_slab_to_vanilla.json b/src/main/resources/data/mineralogy/recipe/tuff_smooth_slab_to_vanilla.json index 2c3567151..a6bca65c5 100644 --- a/src/main/resources/data/mineralogy/recipe/tuff_smooth_slab_to_vanilla.json +++ b/src/main/resources/data/mineralogy/recipe/tuff_smooth_slab_to_vanilla.json @@ -1,13 +1,11 @@ { - "type": "minecraft:crafting_shapeless", - "category": "building", - "ingredients": [ - { - "item": "mineralogy:tuff_smooth_slab" - } - ], - "result": { - "id": "minecraft:polished_tuff_slab", - "count": 1 - } + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "mineralogy:tuff_smooth_slab" + ], + "result": { + "id": "minecraft:polished_tuff_slab", + "count": 1 + } } diff --git a/src/main/resources/data/mineralogy/recipe/tuff_smooth_stairs.json b/src/main/resources/data/mineralogy/recipe/tuff_smooth_stairs.json index 0e3b2486d..ea3202d62 100644 --- a/src/main/resources/data/mineralogy/recipe/tuff_smooth_stairs.json +++ b/src/main/resources/data/mineralogy/recipe/tuff_smooth_stairs.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - "xx ", - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:tuff_smooth" - } - }, - "result": { - "id": "mineralogy:tuff_smooth_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + "xx ", + "xxx" + ], + "key": { + "x": "mineralogy:tuff_smooth" + }, + "result": { + "id": "mineralogy:tuff_smooth_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/tuff_smooth_wall.json b/src/main/resources/data/mineralogy/recipe/tuff_smooth_wall.json index ae4662f16..57dc66980 100644 --- a/src/main/resources/data/mineralogy/recipe/tuff_smooth_wall.json +++ b/src/main/resources/data/mineralogy/recipe/tuff_smooth_wall.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:tuff_smooth" - } - }, - "result": { - "id": "mineralogy:tuff_smooth_wall", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx" + ], + "key": { + "x": "mineralogy:tuff_smooth" + }, + "result": { + "id": "mineralogy:tuff_smooth_wall", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/tuff_stairs.json b/src/main/resources/data/mineralogy/recipe/tuff_stairs.json index ab35973b2..c7a792b86 100644 --- a/src/main/resources/data/mineralogy/recipe/tuff_stairs.json +++ b/src/main/resources/data/mineralogy/recipe/tuff_stairs.json @@ -1,19 +1,17 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "x ", - "xx ", - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:tuff" - } - }, - "result": { - "id": "mineralogy:tuff_stairs", - "count": 4 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "x ", + "xx ", + "xxx" + ], + "key": { + "x": "mineralogy:tuff" + }, + "result": { + "id": "mineralogy:tuff_stairs", + "count": 4 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/recipe/tuff_to_stone.json b/src/main/resources/data/mineralogy/recipe/tuff_to_stone.json index 82a6e007b..000403626 100644 --- a/src/main/resources/data/mineralogy/recipe/tuff_to_stone.json +++ b/src/main/resources/data/mineralogy/recipe/tuff_to_stone.json @@ -1,12 +1,10 @@ { - "type": "minecraft:smelting", - "category": "blocks", - "ingredient": { - "item": "mineralogy:tuff" - }, - "result": { - "id": "minecraft:stone" - }, - "experience": 0.1, - "cookingtime": 200 + "type": "minecraft:smelting", + "category": "blocks", + "ingredient": "mineralogy:tuff", + "result": { + "id": "minecraft:stone" + }, + "experience": 0.1, + "cookingtime": 200 } diff --git a/src/main/resources/data/mineralogy/recipe/tuff_wall.json b/src/main/resources/data/mineralogy/recipe/tuff_wall.json index 93664171d..a3dad2f2b 100644 --- a/src/main/resources/data/mineralogy/recipe/tuff_wall.json +++ b/src/main/resources/data/mineralogy/recipe/tuff_wall.json @@ -1,18 +1,16 @@ { - "type": "minecraft:crafting_shaped", - "category": "building", - "pattern": [ - "xxx", - "xxx" - ], - "key": { - "x": { - "item": "mineralogy:tuff" - } - }, - "result": { - "id": "mineralogy:tuff_wall", - "count": 6 - }, - "show_notification": true + "type": "minecraft:crafting_shaped", + "category": "building", + "pattern": [ + "xxx", + "xxx" + ], + "key": { + "x": "mineralogy:tuff" + }, + "result": { + "id": "mineralogy:tuff_wall", + "count": 6 + }, + "show_notification": true } diff --git a/src/main/resources/data/mineralogy/tags/block/stones/amphibolite.json b/src/main/resources/data/mineralogy/tags/block/stones/amphibolite.json index 5cdea399b..26e1eac26 100644 --- a/src/main/resources/data/mineralogy/tags/block/stones/amphibolite.json +++ b/src/main/resources/data/mineralogy/tags/block/stones/amphibolite.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:amphibolite" - ] + "replace": false, + "values": [ + "mineralogy:amphibolite" + ] } diff --git a/src/main/resources/data/mineralogy/tags/block/stones/andesite.json b/src/main/resources/data/mineralogy/tags/block/stones/andesite.json index 708588bcd..0680f2507 100644 --- a/src/main/resources/data/mineralogy/tags/block/stones/andesite.json +++ b/src/main/resources/data/mineralogy/tags/block/stones/andesite.json @@ -1,7 +1,7 @@ { - "replace": false, - "values": [ - "mineralogy:andesite", - "minecraft:andesite" - ] + "replace": false, + "values": [ + "mineralogy:andesite", + "minecraft:andesite" + ] } diff --git a/src/main/resources/data/mineralogy/tags/block/stones/basalt.json b/src/main/resources/data/mineralogy/tags/block/stones/basalt.json index 1ae916657..e0e10bf52 100644 --- a/src/main/resources/data/mineralogy/tags/block/stones/basalt.json +++ b/src/main/resources/data/mineralogy/tags/block/stones/basalt.json @@ -1,7 +1,7 @@ { - "replace": false, - "values": [ - "mineralogy:basalt", - "minecraft:basalt" - ] + "replace": false, + "values": [ + "mineralogy:basalt", + "minecraft:basalt" + ] } diff --git a/src/main/resources/data/mineralogy/tags/block/stones/basaltic_glass.json b/src/main/resources/data/mineralogy/tags/block/stones/basaltic_glass.json index 9cb3a5c60..59c1e89a3 100644 --- a/src/main/resources/data/mineralogy/tags/block/stones/basaltic_glass.json +++ b/src/main/resources/data/mineralogy/tags/block/stones/basaltic_glass.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:basaltic_glass" - ] + "replace": false, + "values": [ + "mineralogy:basaltic_glass" + ] } diff --git a/src/main/resources/data/mineralogy/tags/block/stones/conglomerate.json b/src/main/resources/data/mineralogy/tags/block/stones/conglomerate.json index 9a8db044e..e4e289fb2 100644 --- a/src/main/resources/data/mineralogy/tags/block/stones/conglomerate.json +++ b/src/main/resources/data/mineralogy/tags/block/stones/conglomerate.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:conglomerate" - ] + "replace": false, + "values": [ + "mineralogy:conglomerate" + ] } diff --git a/src/main/resources/data/mineralogy/tags/block/stones/diabase.json b/src/main/resources/data/mineralogy/tags/block/stones/diabase.json index b1d74d01e..c53507246 100644 --- a/src/main/resources/data/mineralogy/tags/block/stones/diabase.json +++ b/src/main/resources/data/mineralogy/tags/block/stones/diabase.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:diabase" - ] + "replace": false, + "values": [ + "mineralogy:diabase" + ] } diff --git a/src/main/resources/data/mineralogy/tags/block/stones/diorite.json b/src/main/resources/data/mineralogy/tags/block/stones/diorite.json index a6c473010..8d8329944 100644 --- a/src/main/resources/data/mineralogy/tags/block/stones/diorite.json +++ b/src/main/resources/data/mineralogy/tags/block/stones/diorite.json @@ -1,7 +1,7 @@ { - "replace": false, - "values": [ - "mineralogy:diorite", - "minecraft:diorite" - ] + "replace": false, + "values": [ + "mineralogy:diorite", + "minecraft:diorite" + ] } diff --git a/src/main/resources/data/mineralogy/tags/block/stones/dolomite.json b/src/main/resources/data/mineralogy/tags/block/stones/dolomite.json index f329a9162..1ed6b212d 100644 --- a/src/main/resources/data/mineralogy/tags/block/stones/dolomite.json +++ b/src/main/resources/data/mineralogy/tags/block/stones/dolomite.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:dolomite" - ] + "replace": false, + "values": [ + "mineralogy:dolomite" + ] } diff --git a/src/main/resources/data/mineralogy/tags/block/stones/gabbro.json b/src/main/resources/data/mineralogy/tags/block/stones/gabbro.json index 2b664843f..d2d73ceb1 100644 --- a/src/main/resources/data/mineralogy/tags/block/stones/gabbro.json +++ b/src/main/resources/data/mineralogy/tags/block/stones/gabbro.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:gabbro" - ] + "replace": false, + "values": [ + "mineralogy:gabbro" + ] } diff --git a/src/main/resources/data/mineralogy/tags/block/stones/gneiss.json b/src/main/resources/data/mineralogy/tags/block/stones/gneiss.json index a19fbac88..6d15d2677 100644 --- a/src/main/resources/data/mineralogy/tags/block/stones/gneiss.json +++ b/src/main/resources/data/mineralogy/tags/block/stones/gneiss.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:gneiss" - ] + "replace": false, + "values": [ + "mineralogy:gneiss" + ] } diff --git a/src/main/resources/data/mineralogy/tags/block/stones/granite.json b/src/main/resources/data/mineralogy/tags/block/stones/granite.json index ae5dd9590..817e7c5da 100644 --- a/src/main/resources/data/mineralogy/tags/block/stones/granite.json +++ b/src/main/resources/data/mineralogy/tags/block/stones/granite.json @@ -1,7 +1,7 @@ { - "replace": false, - "values": [ - "mineralogy:granite", - "minecraft:granite" - ] + "replace": false, + "values": [ + "mineralogy:granite", + "minecraft:granite" + ] } diff --git a/src/main/resources/data/mineralogy/tags/block/stones/hornfels.json b/src/main/resources/data/mineralogy/tags/block/stones/hornfels.json index 7ec83bdd3..59acdf116 100644 --- a/src/main/resources/data/mineralogy/tags/block/stones/hornfels.json +++ b/src/main/resources/data/mineralogy/tags/block/stones/hornfels.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:hornfels" - ] + "replace": false, + "values": [ + "mineralogy:hornfels" + ] } diff --git a/src/main/resources/data/mineralogy/tags/block/stones/limestone.json b/src/main/resources/data/mineralogy/tags/block/stones/limestone.json index 3f32e2ff2..ae25aec9e 100644 --- a/src/main/resources/data/mineralogy/tags/block/stones/limestone.json +++ b/src/main/resources/data/mineralogy/tags/block/stones/limestone.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:limestone" - ] + "replace": false, + "values": [ + "mineralogy:limestone" + ] } diff --git a/src/main/resources/data/mineralogy/tags/block/stones/marble.json b/src/main/resources/data/mineralogy/tags/block/stones/marble.json index bdb724467..e22e67bb1 100644 --- a/src/main/resources/data/mineralogy/tags/block/stones/marble.json +++ b/src/main/resources/data/mineralogy/tags/block/stones/marble.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:marble" - ] + "replace": false, + "values": [ + "mineralogy:marble" + ] } diff --git a/src/main/resources/data/mineralogy/tags/block/stones/novaculite.json b/src/main/resources/data/mineralogy/tags/block/stones/novaculite.json index 74fb17da3..2339a11c9 100644 --- a/src/main/resources/data/mineralogy/tags/block/stones/novaculite.json +++ b/src/main/resources/data/mineralogy/tags/block/stones/novaculite.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:novaculite" - ] + "replace": false, + "values": [ + "mineralogy:novaculite" + ] } diff --git a/src/main/resources/data/mineralogy/tags/block/stones/pegmatite.json b/src/main/resources/data/mineralogy/tags/block/stones/pegmatite.json index 7675fc010..442dbf678 100644 --- a/src/main/resources/data/mineralogy/tags/block/stones/pegmatite.json +++ b/src/main/resources/data/mineralogy/tags/block/stones/pegmatite.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:pegmatite" - ] + "replace": false, + "values": [ + "mineralogy:pegmatite" + ] } diff --git a/src/main/resources/data/mineralogy/tags/block/stones/peridotite.json b/src/main/resources/data/mineralogy/tags/block/stones/peridotite.json index 34de42c18..d774099e2 100644 --- a/src/main/resources/data/mineralogy/tags/block/stones/peridotite.json +++ b/src/main/resources/data/mineralogy/tags/block/stones/peridotite.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:peridotite" - ] + "replace": false, + "values": [ + "mineralogy:peridotite" + ] } diff --git a/src/main/resources/data/mineralogy/tags/block/stones/phyllite.json b/src/main/resources/data/mineralogy/tags/block/stones/phyllite.json index 991dc28d5..f705ab15b 100644 --- a/src/main/resources/data/mineralogy/tags/block/stones/phyllite.json +++ b/src/main/resources/data/mineralogy/tags/block/stones/phyllite.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:phyllite" - ] + "replace": false, + "values": [ + "mineralogy:phyllite" + ] } diff --git a/src/main/resources/data/mineralogy/tags/block/stones/quartzite.json b/src/main/resources/data/mineralogy/tags/block/stones/quartzite.json index f539e57f9..21db863d4 100644 --- a/src/main/resources/data/mineralogy/tags/block/stones/quartzite.json +++ b/src/main/resources/data/mineralogy/tags/block/stones/quartzite.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:quartzite" - ] + "replace": false, + "values": [ + "mineralogy:quartzite" + ] } diff --git a/src/main/resources/data/mineralogy/tags/block/stones/rhyolite.json b/src/main/resources/data/mineralogy/tags/block/stones/rhyolite.json index 460e41c8e..77c7ece7b 100644 --- a/src/main/resources/data/mineralogy/tags/block/stones/rhyolite.json +++ b/src/main/resources/data/mineralogy/tags/block/stones/rhyolite.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:rhyolite" - ] + "replace": false, + "values": [ + "mineralogy:rhyolite" + ] } diff --git a/src/main/resources/data/mineralogy/tags/block/stones/rock_salt.json b/src/main/resources/data/mineralogy/tags/block/stones/rock_salt.json index 24df4c009..8133cee26 100644 --- a/src/main/resources/data/mineralogy/tags/block/stones/rock_salt.json +++ b/src/main/resources/data/mineralogy/tags/block/stones/rock_salt.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:rock_salt" - ] + "replace": false, + "values": [ + "mineralogy:rock_salt" + ] } diff --git a/src/main/resources/data/mineralogy/tags/block/stones/schist.json b/src/main/resources/data/mineralogy/tags/block/stones/schist.json index ba6cdfc2c..61f16050a 100644 --- a/src/main/resources/data/mineralogy/tags/block/stones/schist.json +++ b/src/main/resources/data/mineralogy/tags/block/stones/schist.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:schist" - ] + "replace": false, + "values": [ + "mineralogy:schist" + ] } diff --git a/src/main/resources/data/mineralogy/tags/block/stones/scoria.json b/src/main/resources/data/mineralogy/tags/block/stones/scoria.json index 51d04b13d..064d4d35b 100644 --- a/src/main/resources/data/mineralogy/tags/block/stones/scoria.json +++ b/src/main/resources/data/mineralogy/tags/block/stones/scoria.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:scoria" - ] + "replace": false, + "values": [ + "mineralogy:scoria" + ] } diff --git a/src/main/resources/data/mineralogy/tags/block/stones/shale.json b/src/main/resources/data/mineralogy/tags/block/stones/shale.json index e95cbccee..f5bb0657a 100644 --- a/src/main/resources/data/mineralogy/tags/block/stones/shale.json +++ b/src/main/resources/data/mineralogy/tags/block/stones/shale.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:shale" - ] + "replace": false, + "values": [ + "mineralogy:shale" + ] } diff --git a/src/main/resources/data/mineralogy/tags/block/stones/siltstone.json b/src/main/resources/data/mineralogy/tags/block/stones/siltstone.json index 105f43a4d..d09f8782d 100644 --- a/src/main/resources/data/mineralogy/tags/block/stones/siltstone.json +++ b/src/main/resources/data/mineralogy/tags/block/stones/siltstone.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:siltstone" - ] + "replace": false, + "values": [ + "mineralogy:siltstone" + ] } diff --git a/src/main/resources/data/mineralogy/tags/block/stones/slate.json b/src/main/resources/data/mineralogy/tags/block/stones/slate.json index 75a410d88..a9a6c28e5 100644 --- a/src/main/resources/data/mineralogy/tags/block/stones/slate.json +++ b/src/main/resources/data/mineralogy/tags/block/stones/slate.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:slate" - ] + "replace": false, + "values": [ + "mineralogy:slate" + ] } diff --git a/src/main/resources/data/mineralogy/tags/block/stones/tuff.json b/src/main/resources/data/mineralogy/tags/block/stones/tuff.json index 922156e16..0273bebcd 100644 --- a/src/main/resources/data/mineralogy/tags/block/stones/tuff.json +++ b/src/main/resources/data/mineralogy/tags/block/stones/tuff.json @@ -1,7 +1,7 @@ { - "replace": false, - "values": [ - "mineralogy:tuff", - "minecraft:tuff" - ] + "replace": false, + "values": [ + "mineralogy:tuff", + "minecraft:tuff" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/cobblestone_equivalents.json b/src/main/resources/data/mineralogy/tags/item/cobblestone_equivalents.json index f983581b4..9716d8b6d 100644 --- a/src/main/resources/data/mineralogy/tags/item/cobblestone_equivalents.json +++ b/src/main/resources/data/mineralogy/tags/item/cobblestone_equivalents.json @@ -1,33 +1,33 @@ { - "replace": false, - "values": [ - "#c:cobblestones", - "#mineralogy:stones/andesite", - "#mineralogy:stones/basalt", - "#mineralogy:stones/diorite", - "#mineralogy:stones/granite", - "#mineralogy:stones/rhyolite", - "#mineralogy:stones/pegmatite", - "#mineralogy:stones/diabase", - "#mineralogy:stones/gabbro", - "#mineralogy:stones/peridotite", - "#mineralogy:stones/basaltic_glass", - "#mineralogy:stones/scoria", - "#mineralogy:stones/tuff", - "#mineralogy:stones/shale", - "#mineralogy:stones/conglomerate", - "#mineralogy:stones/dolomite", - "#mineralogy:stones/limestone", - "#mineralogy:stones/siltstone", - "#mineralogy:stones/marble", - "#mineralogy:stones/slate", - "#mineralogy:stones/schist", - "#mineralogy:stones/gneiss", - "#mineralogy:stones/phyllite", - "#mineralogy:stones/amphibolite", - "#mineralogy:stones/hornfels", - "#mineralogy:stones/quartzite", - "#mineralogy:stones/novaculite", - "#mineralogy:stones/rock_salt" - ] + "replace": false, + "values": [ + "#c:cobblestones", + "#mineralogy:stones/andesite", + "#mineralogy:stones/basalt", + "#mineralogy:stones/diorite", + "#mineralogy:stones/granite", + "#mineralogy:stones/rhyolite", + "#mineralogy:stones/pegmatite", + "#mineralogy:stones/diabase", + "#mineralogy:stones/gabbro", + "#mineralogy:stones/peridotite", + "#mineralogy:stones/basaltic_glass", + "#mineralogy:stones/scoria", + "#mineralogy:stones/tuff", + "#mineralogy:stones/shale", + "#mineralogy:stones/conglomerate", + "#mineralogy:stones/dolomite", + "#mineralogy:stones/limestone", + "#mineralogy:stones/siltstone", + "#mineralogy:stones/marble", + "#mineralogy:stones/slate", + "#mineralogy:stones/schist", + "#mineralogy:stones/gneiss", + "#mineralogy:stones/phyllite", + "#mineralogy:stones/amphibolite", + "#mineralogy:stones/hornfels", + "#mineralogy:stones/quartzite", + "#mineralogy:stones/novaculite", + "#mineralogy:stones/rock_salt" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/slabs/amphibolite.json b/src/main/resources/data/mineralogy/tags/item/slabs/amphibolite.json index cc4117a83..6c69ddf73 100644 --- a/src/main/resources/data/mineralogy/tags/item/slabs/amphibolite.json +++ b/src/main/resources/data/mineralogy/tags/item/slabs/amphibolite.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:amphibolite_slab" - ] + "replace": false, + "values": [ + "mineralogy:amphibolite_slab" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/slabs/amphibolite/brick.json b/src/main/resources/data/mineralogy/tags/item/slabs/amphibolite/brick.json index 9db82ccae..46a24f9fd 100644 --- a/src/main/resources/data/mineralogy/tags/item/slabs/amphibolite/brick.json +++ b/src/main/resources/data/mineralogy/tags/item/slabs/amphibolite/brick.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:amphibolite_brick_slab" - ] + "replace": false, + "values": [ + "mineralogy:amphibolite_brick_slab" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/slabs/amphibolite/smooth.json b/src/main/resources/data/mineralogy/tags/item/slabs/amphibolite/smooth.json index 5670a0a5f..67d861832 100644 --- a/src/main/resources/data/mineralogy/tags/item/slabs/amphibolite/smooth.json +++ b/src/main/resources/data/mineralogy/tags/item/slabs/amphibolite/smooth.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:amphibolite_smooth_slab" - ] + "replace": false, + "values": [ + "mineralogy:amphibolite_smooth_slab" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/slabs/amphibolite/smooth_brick.json b/src/main/resources/data/mineralogy/tags/item/slabs/amphibolite/smooth_brick.json index fbbd50b2c..789448072 100644 --- a/src/main/resources/data/mineralogy/tags/item/slabs/amphibolite/smooth_brick.json +++ b/src/main/resources/data/mineralogy/tags/item/slabs/amphibolite/smooth_brick.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:amphibolite_smooth_brick_slab" - ] + "replace": false, + "values": [ + "mineralogy:amphibolite_smooth_brick_slab" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/slabs/andesite.json b/src/main/resources/data/mineralogy/tags/item/slabs/andesite.json index 2d0d6184e..a2dad5cbb 100644 --- a/src/main/resources/data/mineralogy/tags/item/slabs/andesite.json +++ b/src/main/resources/data/mineralogy/tags/item/slabs/andesite.json @@ -1,7 +1,7 @@ { - "replace": false, - "values": [ - "mineralogy:andesite_slab", - "minecraft:andesite_slab" - ] + "replace": false, + "values": [ + "mineralogy:andesite_slab", + "minecraft:andesite_slab" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/slabs/andesite/brick.json b/src/main/resources/data/mineralogy/tags/item/slabs/andesite/brick.json index 66931ac90..86fc7b5f6 100644 --- a/src/main/resources/data/mineralogy/tags/item/slabs/andesite/brick.json +++ b/src/main/resources/data/mineralogy/tags/item/slabs/andesite/brick.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:andesite_brick_slab" - ] + "replace": false, + "values": [ + "mineralogy:andesite_brick_slab" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/slabs/andesite/smooth.json b/src/main/resources/data/mineralogy/tags/item/slabs/andesite/smooth.json index 6fe008cd9..a2cc3c4d9 100644 --- a/src/main/resources/data/mineralogy/tags/item/slabs/andesite/smooth.json +++ b/src/main/resources/data/mineralogy/tags/item/slabs/andesite/smooth.json @@ -1,7 +1,7 @@ { - "replace": false, - "values": [ - "mineralogy:andesite_smooth_slab", - "minecraft:polished_andesite_slab" - ] + "replace": false, + "values": [ + "mineralogy:andesite_smooth_slab", + "minecraft:polished_andesite_slab" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/slabs/andesite/smooth_brick.json b/src/main/resources/data/mineralogy/tags/item/slabs/andesite/smooth_brick.json index 397fdafd5..5318fc8be 100644 --- a/src/main/resources/data/mineralogy/tags/item/slabs/andesite/smooth_brick.json +++ b/src/main/resources/data/mineralogy/tags/item/slabs/andesite/smooth_brick.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:andesite_smooth_brick_slab" - ] + "replace": false, + "values": [ + "mineralogy:andesite_smooth_brick_slab" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/slabs/basalt.json b/src/main/resources/data/mineralogy/tags/item/slabs/basalt.json index c86626703..e9009b136 100644 --- a/src/main/resources/data/mineralogy/tags/item/slabs/basalt.json +++ b/src/main/resources/data/mineralogy/tags/item/slabs/basalt.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:basalt_slab" - ] + "replace": false, + "values": [ + "mineralogy:basalt_slab" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/slabs/basalt/brick.json b/src/main/resources/data/mineralogy/tags/item/slabs/basalt/brick.json index b7c770d7c..8473ca13e 100644 --- a/src/main/resources/data/mineralogy/tags/item/slabs/basalt/brick.json +++ b/src/main/resources/data/mineralogy/tags/item/slabs/basalt/brick.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:basalt_brick_slab" - ] + "replace": false, + "values": [ + "mineralogy:basalt_brick_slab" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/slabs/basalt/smooth.json b/src/main/resources/data/mineralogy/tags/item/slabs/basalt/smooth.json index a61e9fd5d..01fbe72a9 100644 --- a/src/main/resources/data/mineralogy/tags/item/slabs/basalt/smooth.json +++ b/src/main/resources/data/mineralogy/tags/item/slabs/basalt/smooth.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:basalt_smooth_slab" - ] + "replace": false, + "values": [ + "mineralogy:basalt_smooth_slab" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/slabs/basalt/smooth_brick.json b/src/main/resources/data/mineralogy/tags/item/slabs/basalt/smooth_brick.json index d90666abc..e7e72f896 100644 --- a/src/main/resources/data/mineralogy/tags/item/slabs/basalt/smooth_brick.json +++ b/src/main/resources/data/mineralogy/tags/item/slabs/basalt/smooth_brick.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:basalt_smooth_brick_slab" - ] + "replace": false, + "values": [ + "mineralogy:basalt_smooth_brick_slab" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/slabs/basaltic_glass.json b/src/main/resources/data/mineralogy/tags/item/slabs/basaltic_glass.json index 717c00479..235c14f48 100644 --- a/src/main/resources/data/mineralogy/tags/item/slabs/basaltic_glass.json +++ b/src/main/resources/data/mineralogy/tags/item/slabs/basaltic_glass.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:basaltic_glass_slab" - ] + "replace": false, + "values": [ + "mineralogy:basaltic_glass_slab" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/slabs/basaltic_glass/brick.json b/src/main/resources/data/mineralogy/tags/item/slabs/basaltic_glass/brick.json index 5a3e112e8..ed0d0dddc 100644 --- a/src/main/resources/data/mineralogy/tags/item/slabs/basaltic_glass/brick.json +++ b/src/main/resources/data/mineralogy/tags/item/slabs/basaltic_glass/brick.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:basaltic_glass_brick_slab" - ] + "replace": false, + "values": [ + "mineralogy:basaltic_glass_brick_slab" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/slabs/basaltic_glass/smooth.json b/src/main/resources/data/mineralogy/tags/item/slabs/basaltic_glass/smooth.json index 1a0e8a748..9d66a4f36 100644 --- a/src/main/resources/data/mineralogy/tags/item/slabs/basaltic_glass/smooth.json +++ b/src/main/resources/data/mineralogy/tags/item/slabs/basaltic_glass/smooth.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:basaltic_glass_smooth_slab" - ] + "replace": false, + "values": [ + "mineralogy:basaltic_glass_smooth_slab" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/slabs/basaltic_glass/smooth_brick.json b/src/main/resources/data/mineralogy/tags/item/slabs/basaltic_glass/smooth_brick.json index 3ce475146..8dc7c14e0 100644 --- a/src/main/resources/data/mineralogy/tags/item/slabs/basaltic_glass/smooth_brick.json +++ b/src/main/resources/data/mineralogy/tags/item/slabs/basaltic_glass/smooth_brick.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:basaltic_glass_smooth_brick_slab" - ] + "replace": false, + "values": [ + "mineralogy:basaltic_glass_smooth_brick_slab" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/slabs/conglomerate.json b/src/main/resources/data/mineralogy/tags/item/slabs/conglomerate.json index d97b6a843..87155b98c 100644 --- a/src/main/resources/data/mineralogy/tags/item/slabs/conglomerate.json +++ b/src/main/resources/data/mineralogy/tags/item/slabs/conglomerate.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:conglomerate_slab" - ] + "replace": false, + "values": [ + "mineralogy:conglomerate_slab" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/slabs/conglomerate/brick.json b/src/main/resources/data/mineralogy/tags/item/slabs/conglomerate/brick.json index 2970425bc..734d203f0 100644 --- a/src/main/resources/data/mineralogy/tags/item/slabs/conglomerate/brick.json +++ b/src/main/resources/data/mineralogy/tags/item/slabs/conglomerate/brick.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:conglomerate_brick_slab" - ] + "replace": false, + "values": [ + "mineralogy:conglomerate_brick_slab" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/slabs/conglomerate/smooth.json b/src/main/resources/data/mineralogy/tags/item/slabs/conglomerate/smooth.json index d04c77375..a91c0394b 100644 --- a/src/main/resources/data/mineralogy/tags/item/slabs/conglomerate/smooth.json +++ b/src/main/resources/data/mineralogy/tags/item/slabs/conglomerate/smooth.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:conglomerate_smooth_slab" - ] + "replace": false, + "values": [ + "mineralogy:conglomerate_smooth_slab" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/slabs/conglomerate/smooth_brick.json b/src/main/resources/data/mineralogy/tags/item/slabs/conglomerate/smooth_brick.json index d28a89f07..8c5011c1b 100644 --- a/src/main/resources/data/mineralogy/tags/item/slabs/conglomerate/smooth_brick.json +++ b/src/main/resources/data/mineralogy/tags/item/slabs/conglomerate/smooth_brick.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:conglomerate_smooth_brick_slab" - ] + "replace": false, + "values": [ + "mineralogy:conglomerate_smooth_brick_slab" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/slabs/diabase.json b/src/main/resources/data/mineralogy/tags/item/slabs/diabase.json index 665ed6689..eca7810bf 100644 --- a/src/main/resources/data/mineralogy/tags/item/slabs/diabase.json +++ b/src/main/resources/data/mineralogy/tags/item/slabs/diabase.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:diabase_slab" - ] + "replace": false, + "values": [ + "mineralogy:diabase_slab" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/slabs/diabase/brick.json b/src/main/resources/data/mineralogy/tags/item/slabs/diabase/brick.json index 1a8dc00dc..86dc2e36c 100644 --- a/src/main/resources/data/mineralogy/tags/item/slabs/diabase/brick.json +++ b/src/main/resources/data/mineralogy/tags/item/slabs/diabase/brick.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:diabase_brick_slab" - ] + "replace": false, + "values": [ + "mineralogy:diabase_brick_slab" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/slabs/diabase/smooth.json b/src/main/resources/data/mineralogy/tags/item/slabs/diabase/smooth.json index a511e4684..7fe562492 100644 --- a/src/main/resources/data/mineralogy/tags/item/slabs/diabase/smooth.json +++ b/src/main/resources/data/mineralogy/tags/item/slabs/diabase/smooth.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:diabase_smooth_slab" - ] + "replace": false, + "values": [ + "mineralogy:diabase_smooth_slab" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/slabs/diabase/smooth_brick.json b/src/main/resources/data/mineralogy/tags/item/slabs/diabase/smooth_brick.json index 8e2151cfc..74411ad6d 100644 --- a/src/main/resources/data/mineralogy/tags/item/slabs/diabase/smooth_brick.json +++ b/src/main/resources/data/mineralogy/tags/item/slabs/diabase/smooth_brick.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:diabase_smooth_brick_slab" - ] + "replace": false, + "values": [ + "mineralogy:diabase_smooth_brick_slab" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/slabs/diorite.json b/src/main/resources/data/mineralogy/tags/item/slabs/diorite.json index 67b558bee..a788d9f5c 100644 --- a/src/main/resources/data/mineralogy/tags/item/slabs/diorite.json +++ b/src/main/resources/data/mineralogy/tags/item/slabs/diorite.json @@ -1,7 +1,7 @@ { - "replace": false, - "values": [ - "mineralogy:diorite_slab", - "minecraft:diorite_slab" - ] + "replace": false, + "values": [ + "mineralogy:diorite_slab", + "minecraft:diorite_slab" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/slabs/diorite/brick.json b/src/main/resources/data/mineralogy/tags/item/slabs/diorite/brick.json index 6bf529738..ad21c87ef 100644 --- a/src/main/resources/data/mineralogy/tags/item/slabs/diorite/brick.json +++ b/src/main/resources/data/mineralogy/tags/item/slabs/diorite/brick.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:diorite_brick_slab" - ] + "replace": false, + "values": [ + "mineralogy:diorite_brick_slab" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/slabs/diorite/smooth.json b/src/main/resources/data/mineralogy/tags/item/slabs/diorite/smooth.json index 20eef8ccb..c9121aee1 100644 --- a/src/main/resources/data/mineralogy/tags/item/slabs/diorite/smooth.json +++ b/src/main/resources/data/mineralogy/tags/item/slabs/diorite/smooth.json @@ -1,7 +1,7 @@ { - "replace": false, - "values": [ - "mineralogy:diorite_smooth_slab", - "minecraft:polished_diorite_slab" - ] + "replace": false, + "values": [ + "mineralogy:diorite_smooth_slab", + "minecraft:polished_diorite_slab" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/slabs/diorite/smooth_brick.json b/src/main/resources/data/mineralogy/tags/item/slabs/diorite/smooth_brick.json index 7a98dd262..0fe1f24d4 100644 --- a/src/main/resources/data/mineralogy/tags/item/slabs/diorite/smooth_brick.json +++ b/src/main/resources/data/mineralogy/tags/item/slabs/diorite/smooth_brick.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:diorite_smooth_brick_slab" - ] + "replace": false, + "values": [ + "mineralogy:diorite_smooth_brick_slab" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/slabs/dolomite.json b/src/main/resources/data/mineralogy/tags/item/slabs/dolomite.json index 4d290eed2..4629c21aa 100644 --- a/src/main/resources/data/mineralogy/tags/item/slabs/dolomite.json +++ b/src/main/resources/data/mineralogy/tags/item/slabs/dolomite.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:dolomite_slab" - ] + "replace": false, + "values": [ + "mineralogy:dolomite_slab" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/slabs/dolomite/brick.json b/src/main/resources/data/mineralogy/tags/item/slabs/dolomite/brick.json index 97227b908..38cf3c315 100644 --- a/src/main/resources/data/mineralogy/tags/item/slabs/dolomite/brick.json +++ b/src/main/resources/data/mineralogy/tags/item/slabs/dolomite/brick.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:dolomite_brick_slab" - ] + "replace": false, + "values": [ + "mineralogy:dolomite_brick_slab" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/slabs/dolomite/smooth.json b/src/main/resources/data/mineralogy/tags/item/slabs/dolomite/smooth.json index 1dc98f76e..150097a68 100644 --- a/src/main/resources/data/mineralogy/tags/item/slabs/dolomite/smooth.json +++ b/src/main/resources/data/mineralogy/tags/item/slabs/dolomite/smooth.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:dolomite_smooth_slab" - ] + "replace": false, + "values": [ + "mineralogy:dolomite_smooth_slab" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/slabs/dolomite/smooth_brick.json b/src/main/resources/data/mineralogy/tags/item/slabs/dolomite/smooth_brick.json index 8dd4268b0..5be581a10 100644 --- a/src/main/resources/data/mineralogy/tags/item/slabs/dolomite/smooth_brick.json +++ b/src/main/resources/data/mineralogy/tags/item/slabs/dolomite/smooth_brick.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:dolomite_smooth_brick_slab" - ] + "replace": false, + "values": [ + "mineralogy:dolomite_smooth_brick_slab" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/slabs/gabbro.json b/src/main/resources/data/mineralogy/tags/item/slabs/gabbro.json index e3576cff4..a6417c016 100644 --- a/src/main/resources/data/mineralogy/tags/item/slabs/gabbro.json +++ b/src/main/resources/data/mineralogy/tags/item/slabs/gabbro.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:gabbro_slab" - ] + "replace": false, + "values": [ + "mineralogy:gabbro_slab" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/slabs/gabbro/brick.json b/src/main/resources/data/mineralogy/tags/item/slabs/gabbro/brick.json index 643872776..86e301bf7 100644 --- a/src/main/resources/data/mineralogy/tags/item/slabs/gabbro/brick.json +++ b/src/main/resources/data/mineralogy/tags/item/slabs/gabbro/brick.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:gabbro_brick_slab" - ] + "replace": false, + "values": [ + "mineralogy:gabbro_brick_slab" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/slabs/gabbro/smooth.json b/src/main/resources/data/mineralogy/tags/item/slabs/gabbro/smooth.json index 20e323ef8..e76568c00 100644 --- a/src/main/resources/data/mineralogy/tags/item/slabs/gabbro/smooth.json +++ b/src/main/resources/data/mineralogy/tags/item/slabs/gabbro/smooth.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:gabbro_smooth_slab" - ] + "replace": false, + "values": [ + "mineralogy:gabbro_smooth_slab" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/slabs/gabbro/smooth_brick.json b/src/main/resources/data/mineralogy/tags/item/slabs/gabbro/smooth_brick.json index 4e328768c..377e70c5d 100644 --- a/src/main/resources/data/mineralogy/tags/item/slabs/gabbro/smooth_brick.json +++ b/src/main/resources/data/mineralogy/tags/item/slabs/gabbro/smooth_brick.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:gabbro_smooth_brick_slab" - ] + "replace": false, + "values": [ + "mineralogy:gabbro_smooth_brick_slab" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/slabs/gneiss.json b/src/main/resources/data/mineralogy/tags/item/slabs/gneiss.json index 68512d817..c277f959b 100644 --- a/src/main/resources/data/mineralogy/tags/item/slabs/gneiss.json +++ b/src/main/resources/data/mineralogy/tags/item/slabs/gneiss.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:gneiss_slab" - ] + "replace": false, + "values": [ + "mineralogy:gneiss_slab" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/slabs/gneiss/brick.json b/src/main/resources/data/mineralogy/tags/item/slabs/gneiss/brick.json index e962d4e9c..c71a3b803 100644 --- a/src/main/resources/data/mineralogy/tags/item/slabs/gneiss/brick.json +++ b/src/main/resources/data/mineralogy/tags/item/slabs/gneiss/brick.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:gneiss_brick_slab" - ] + "replace": false, + "values": [ + "mineralogy:gneiss_brick_slab" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/slabs/gneiss/smooth.json b/src/main/resources/data/mineralogy/tags/item/slabs/gneiss/smooth.json index 7aa2f746d..a41d0d512 100644 --- a/src/main/resources/data/mineralogy/tags/item/slabs/gneiss/smooth.json +++ b/src/main/resources/data/mineralogy/tags/item/slabs/gneiss/smooth.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:gneiss_smooth_slab" - ] + "replace": false, + "values": [ + "mineralogy:gneiss_smooth_slab" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/slabs/gneiss/smooth_brick.json b/src/main/resources/data/mineralogy/tags/item/slabs/gneiss/smooth_brick.json index c6a513819..c4d892e20 100644 --- a/src/main/resources/data/mineralogy/tags/item/slabs/gneiss/smooth_brick.json +++ b/src/main/resources/data/mineralogy/tags/item/slabs/gneiss/smooth_brick.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:gneiss_smooth_brick_slab" - ] + "replace": false, + "values": [ + "mineralogy:gneiss_smooth_brick_slab" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/slabs/granite.json b/src/main/resources/data/mineralogy/tags/item/slabs/granite.json index 892116b2c..b8277bc3c 100644 --- a/src/main/resources/data/mineralogy/tags/item/slabs/granite.json +++ b/src/main/resources/data/mineralogy/tags/item/slabs/granite.json @@ -1,7 +1,7 @@ { - "replace": false, - "values": [ - "mineralogy:granite_slab", - "minecraft:granite_slab" - ] + "replace": false, + "values": [ + "mineralogy:granite_slab", + "minecraft:granite_slab" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/slabs/granite/brick.json b/src/main/resources/data/mineralogy/tags/item/slabs/granite/brick.json index c7c412ec2..1f6a1049a 100644 --- a/src/main/resources/data/mineralogy/tags/item/slabs/granite/brick.json +++ b/src/main/resources/data/mineralogy/tags/item/slabs/granite/brick.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:granite_brick_slab" - ] + "replace": false, + "values": [ + "mineralogy:granite_brick_slab" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/slabs/granite/smooth.json b/src/main/resources/data/mineralogy/tags/item/slabs/granite/smooth.json index 730511a99..a3f8a1a3f 100644 --- a/src/main/resources/data/mineralogy/tags/item/slabs/granite/smooth.json +++ b/src/main/resources/data/mineralogy/tags/item/slabs/granite/smooth.json @@ -1,7 +1,7 @@ { - "replace": false, - "values": [ - "mineralogy:granite_smooth_slab", - "minecraft:polished_granite_slab" - ] + "replace": false, + "values": [ + "mineralogy:granite_smooth_slab", + "minecraft:polished_granite_slab" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/slabs/granite/smooth_brick.json b/src/main/resources/data/mineralogy/tags/item/slabs/granite/smooth_brick.json index e56697231..2aa54502a 100644 --- a/src/main/resources/data/mineralogy/tags/item/slabs/granite/smooth_brick.json +++ b/src/main/resources/data/mineralogy/tags/item/slabs/granite/smooth_brick.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:granite_smooth_brick_slab" - ] + "replace": false, + "values": [ + "mineralogy:granite_smooth_brick_slab" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/slabs/hornfels.json b/src/main/resources/data/mineralogy/tags/item/slabs/hornfels.json index 408d05b3c..674535f32 100644 --- a/src/main/resources/data/mineralogy/tags/item/slabs/hornfels.json +++ b/src/main/resources/data/mineralogy/tags/item/slabs/hornfels.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:hornfels_slab" - ] + "replace": false, + "values": [ + "mineralogy:hornfels_slab" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/slabs/hornfels/brick.json b/src/main/resources/data/mineralogy/tags/item/slabs/hornfels/brick.json index 4297940a7..547291ff0 100644 --- a/src/main/resources/data/mineralogy/tags/item/slabs/hornfels/brick.json +++ b/src/main/resources/data/mineralogy/tags/item/slabs/hornfels/brick.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:hornfels_brick_slab" - ] + "replace": false, + "values": [ + "mineralogy:hornfels_brick_slab" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/slabs/hornfels/smooth.json b/src/main/resources/data/mineralogy/tags/item/slabs/hornfels/smooth.json index 97f5d04e1..d1265c838 100644 --- a/src/main/resources/data/mineralogy/tags/item/slabs/hornfels/smooth.json +++ b/src/main/resources/data/mineralogy/tags/item/slabs/hornfels/smooth.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:hornfels_smooth_slab" - ] + "replace": false, + "values": [ + "mineralogy:hornfels_smooth_slab" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/slabs/hornfels/smooth_brick.json b/src/main/resources/data/mineralogy/tags/item/slabs/hornfels/smooth_brick.json index b1ce7f4db..60132ec26 100644 --- a/src/main/resources/data/mineralogy/tags/item/slabs/hornfels/smooth_brick.json +++ b/src/main/resources/data/mineralogy/tags/item/slabs/hornfels/smooth_brick.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:hornfels_smooth_brick_slab" - ] + "replace": false, + "values": [ + "mineralogy:hornfels_smooth_brick_slab" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/slabs/limestone.json b/src/main/resources/data/mineralogy/tags/item/slabs/limestone.json index e5f7333c1..ff332e77d 100644 --- a/src/main/resources/data/mineralogy/tags/item/slabs/limestone.json +++ b/src/main/resources/data/mineralogy/tags/item/slabs/limestone.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:limestone_slab" - ] + "replace": false, + "values": [ + "mineralogy:limestone_slab" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/slabs/limestone/brick.json b/src/main/resources/data/mineralogy/tags/item/slabs/limestone/brick.json index ef5bdae0d..94765e9fa 100644 --- a/src/main/resources/data/mineralogy/tags/item/slabs/limestone/brick.json +++ b/src/main/resources/data/mineralogy/tags/item/slabs/limestone/brick.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:limestone_brick_slab" - ] + "replace": false, + "values": [ + "mineralogy:limestone_brick_slab" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/slabs/limestone/smooth.json b/src/main/resources/data/mineralogy/tags/item/slabs/limestone/smooth.json index f5701a999..909a1d37b 100644 --- a/src/main/resources/data/mineralogy/tags/item/slabs/limestone/smooth.json +++ b/src/main/resources/data/mineralogy/tags/item/slabs/limestone/smooth.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:limestone_smooth_slab" - ] + "replace": false, + "values": [ + "mineralogy:limestone_smooth_slab" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/slabs/limestone/smooth_brick.json b/src/main/resources/data/mineralogy/tags/item/slabs/limestone/smooth_brick.json index 113f36066..c662796c3 100644 --- a/src/main/resources/data/mineralogy/tags/item/slabs/limestone/smooth_brick.json +++ b/src/main/resources/data/mineralogy/tags/item/slabs/limestone/smooth_brick.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:limestone_smooth_brick_slab" - ] + "replace": false, + "values": [ + "mineralogy:limestone_smooth_brick_slab" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/slabs/marble.json b/src/main/resources/data/mineralogy/tags/item/slabs/marble.json index ebda57b3d..f0a05b980 100644 --- a/src/main/resources/data/mineralogy/tags/item/slabs/marble.json +++ b/src/main/resources/data/mineralogy/tags/item/slabs/marble.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:marble_slab" - ] + "replace": false, + "values": [ + "mineralogy:marble_slab" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/slabs/marble/brick.json b/src/main/resources/data/mineralogy/tags/item/slabs/marble/brick.json index 3b9fba246..fc86044b6 100644 --- a/src/main/resources/data/mineralogy/tags/item/slabs/marble/brick.json +++ b/src/main/resources/data/mineralogy/tags/item/slabs/marble/brick.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:marble_brick_slab" - ] + "replace": false, + "values": [ + "mineralogy:marble_brick_slab" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/slabs/marble/smooth.json b/src/main/resources/data/mineralogy/tags/item/slabs/marble/smooth.json index 876baf7d3..e92c5d02e 100644 --- a/src/main/resources/data/mineralogy/tags/item/slabs/marble/smooth.json +++ b/src/main/resources/data/mineralogy/tags/item/slabs/marble/smooth.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:marble_smooth_slab" - ] + "replace": false, + "values": [ + "mineralogy:marble_smooth_slab" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/slabs/marble/smooth_brick.json b/src/main/resources/data/mineralogy/tags/item/slabs/marble/smooth_brick.json index cc716132c..b7d2e550e 100644 --- a/src/main/resources/data/mineralogy/tags/item/slabs/marble/smooth_brick.json +++ b/src/main/resources/data/mineralogy/tags/item/slabs/marble/smooth_brick.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:marble_smooth_brick_slab" - ] + "replace": false, + "values": [ + "mineralogy:marble_smooth_brick_slab" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/slabs/novaculite.json b/src/main/resources/data/mineralogy/tags/item/slabs/novaculite.json index 2d75804c5..8f4c9718b 100644 --- a/src/main/resources/data/mineralogy/tags/item/slabs/novaculite.json +++ b/src/main/resources/data/mineralogy/tags/item/slabs/novaculite.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:novaculite_slab" - ] + "replace": false, + "values": [ + "mineralogy:novaculite_slab" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/slabs/novaculite/brick.json b/src/main/resources/data/mineralogy/tags/item/slabs/novaculite/brick.json index 1fa49bab1..73ad82e52 100644 --- a/src/main/resources/data/mineralogy/tags/item/slabs/novaculite/brick.json +++ b/src/main/resources/data/mineralogy/tags/item/slabs/novaculite/brick.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:novaculite_brick_slab" - ] + "replace": false, + "values": [ + "mineralogy:novaculite_brick_slab" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/slabs/novaculite/smooth.json b/src/main/resources/data/mineralogy/tags/item/slabs/novaculite/smooth.json index 842a79951..dc2b13442 100644 --- a/src/main/resources/data/mineralogy/tags/item/slabs/novaculite/smooth.json +++ b/src/main/resources/data/mineralogy/tags/item/slabs/novaculite/smooth.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:novaculite_smooth_slab" - ] + "replace": false, + "values": [ + "mineralogy:novaculite_smooth_slab" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/slabs/novaculite/smooth_brick.json b/src/main/resources/data/mineralogy/tags/item/slabs/novaculite/smooth_brick.json index 975702399..085648387 100644 --- a/src/main/resources/data/mineralogy/tags/item/slabs/novaculite/smooth_brick.json +++ b/src/main/resources/data/mineralogy/tags/item/slabs/novaculite/smooth_brick.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:novaculite_smooth_brick_slab" - ] + "replace": false, + "values": [ + "mineralogy:novaculite_smooth_brick_slab" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/slabs/pegmatite.json b/src/main/resources/data/mineralogy/tags/item/slabs/pegmatite.json index 85d7de59c..52d50562a 100644 --- a/src/main/resources/data/mineralogy/tags/item/slabs/pegmatite.json +++ b/src/main/resources/data/mineralogy/tags/item/slabs/pegmatite.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:pegmatite_slab" - ] + "replace": false, + "values": [ + "mineralogy:pegmatite_slab" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/slabs/pegmatite/brick.json b/src/main/resources/data/mineralogy/tags/item/slabs/pegmatite/brick.json index a9e624210..70c0fb849 100644 --- a/src/main/resources/data/mineralogy/tags/item/slabs/pegmatite/brick.json +++ b/src/main/resources/data/mineralogy/tags/item/slabs/pegmatite/brick.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:pegmatite_brick_slab" - ] + "replace": false, + "values": [ + "mineralogy:pegmatite_brick_slab" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/slabs/pegmatite/smooth.json b/src/main/resources/data/mineralogy/tags/item/slabs/pegmatite/smooth.json index 66f6500ec..f22d74ab7 100644 --- a/src/main/resources/data/mineralogy/tags/item/slabs/pegmatite/smooth.json +++ b/src/main/resources/data/mineralogy/tags/item/slabs/pegmatite/smooth.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:pegmatite_smooth_slab" - ] + "replace": false, + "values": [ + "mineralogy:pegmatite_smooth_slab" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/slabs/pegmatite/smooth_brick.json b/src/main/resources/data/mineralogy/tags/item/slabs/pegmatite/smooth_brick.json index 8ccfcb2a6..d9ffedd98 100644 --- a/src/main/resources/data/mineralogy/tags/item/slabs/pegmatite/smooth_brick.json +++ b/src/main/resources/data/mineralogy/tags/item/slabs/pegmatite/smooth_brick.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:pegmatite_smooth_brick_slab" - ] + "replace": false, + "values": [ + "mineralogy:pegmatite_smooth_brick_slab" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/slabs/peridotite.json b/src/main/resources/data/mineralogy/tags/item/slabs/peridotite.json index 15551daab..9425b4c32 100644 --- a/src/main/resources/data/mineralogy/tags/item/slabs/peridotite.json +++ b/src/main/resources/data/mineralogy/tags/item/slabs/peridotite.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:peridotite_slab" - ] + "replace": false, + "values": [ + "mineralogy:peridotite_slab" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/slabs/peridotite/brick.json b/src/main/resources/data/mineralogy/tags/item/slabs/peridotite/brick.json index e31a75bdf..4ea5079a6 100644 --- a/src/main/resources/data/mineralogy/tags/item/slabs/peridotite/brick.json +++ b/src/main/resources/data/mineralogy/tags/item/slabs/peridotite/brick.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:peridotite_brick_slab" - ] + "replace": false, + "values": [ + "mineralogy:peridotite_brick_slab" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/slabs/peridotite/smooth.json b/src/main/resources/data/mineralogy/tags/item/slabs/peridotite/smooth.json index 18572c5d3..940b05161 100644 --- a/src/main/resources/data/mineralogy/tags/item/slabs/peridotite/smooth.json +++ b/src/main/resources/data/mineralogy/tags/item/slabs/peridotite/smooth.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:peridotite_smooth_slab" - ] + "replace": false, + "values": [ + "mineralogy:peridotite_smooth_slab" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/slabs/peridotite/smooth_brick.json b/src/main/resources/data/mineralogy/tags/item/slabs/peridotite/smooth_brick.json index 651d50fe3..215baec58 100644 --- a/src/main/resources/data/mineralogy/tags/item/slabs/peridotite/smooth_brick.json +++ b/src/main/resources/data/mineralogy/tags/item/slabs/peridotite/smooth_brick.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:peridotite_smooth_brick_slab" - ] + "replace": false, + "values": [ + "mineralogy:peridotite_smooth_brick_slab" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/slabs/phyllite.json b/src/main/resources/data/mineralogy/tags/item/slabs/phyllite.json index f727b589a..fa9c15c9e 100644 --- a/src/main/resources/data/mineralogy/tags/item/slabs/phyllite.json +++ b/src/main/resources/data/mineralogy/tags/item/slabs/phyllite.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:phyllite_slab" - ] + "replace": false, + "values": [ + "mineralogy:phyllite_slab" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/slabs/phyllite/brick.json b/src/main/resources/data/mineralogy/tags/item/slabs/phyllite/brick.json index d470beba6..4760ed624 100644 --- a/src/main/resources/data/mineralogy/tags/item/slabs/phyllite/brick.json +++ b/src/main/resources/data/mineralogy/tags/item/slabs/phyllite/brick.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:phyllite_brick_slab" - ] + "replace": false, + "values": [ + "mineralogy:phyllite_brick_slab" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/slabs/phyllite/smooth.json b/src/main/resources/data/mineralogy/tags/item/slabs/phyllite/smooth.json index a43bb7783..842b451dd 100644 --- a/src/main/resources/data/mineralogy/tags/item/slabs/phyllite/smooth.json +++ b/src/main/resources/data/mineralogy/tags/item/slabs/phyllite/smooth.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:phyllite_smooth_slab" - ] + "replace": false, + "values": [ + "mineralogy:phyllite_smooth_slab" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/slabs/phyllite/smooth_brick.json b/src/main/resources/data/mineralogy/tags/item/slabs/phyllite/smooth_brick.json index bf5f49a29..4ebdae194 100644 --- a/src/main/resources/data/mineralogy/tags/item/slabs/phyllite/smooth_brick.json +++ b/src/main/resources/data/mineralogy/tags/item/slabs/phyllite/smooth_brick.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:phyllite_smooth_brick_slab" - ] + "replace": false, + "values": [ + "mineralogy:phyllite_smooth_brick_slab" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/slabs/quartzite.json b/src/main/resources/data/mineralogy/tags/item/slabs/quartzite.json index 3595ab596..263571ea7 100644 --- a/src/main/resources/data/mineralogy/tags/item/slabs/quartzite.json +++ b/src/main/resources/data/mineralogy/tags/item/slabs/quartzite.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:quartzite_slab" - ] + "replace": false, + "values": [ + "mineralogy:quartzite_slab" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/slabs/quartzite/brick.json b/src/main/resources/data/mineralogy/tags/item/slabs/quartzite/brick.json index f58f9f563..32035f3a7 100644 --- a/src/main/resources/data/mineralogy/tags/item/slabs/quartzite/brick.json +++ b/src/main/resources/data/mineralogy/tags/item/slabs/quartzite/brick.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:quartzite_brick_slab" - ] + "replace": false, + "values": [ + "mineralogy:quartzite_brick_slab" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/slabs/quartzite/smooth.json b/src/main/resources/data/mineralogy/tags/item/slabs/quartzite/smooth.json index 1dd4e97fe..1f73e700e 100644 --- a/src/main/resources/data/mineralogy/tags/item/slabs/quartzite/smooth.json +++ b/src/main/resources/data/mineralogy/tags/item/slabs/quartzite/smooth.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:quartzite_smooth_slab" - ] + "replace": false, + "values": [ + "mineralogy:quartzite_smooth_slab" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/slabs/quartzite/smooth_brick.json b/src/main/resources/data/mineralogy/tags/item/slabs/quartzite/smooth_brick.json index 9a998c5dc..05d19d992 100644 --- a/src/main/resources/data/mineralogy/tags/item/slabs/quartzite/smooth_brick.json +++ b/src/main/resources/data/mineralogy/tags/item/slabs/quartzite/smooth_brick.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:quartzite_smooth_brick_slab" - ] + "replace": false, + "values": [ + "mineralogy:quartzite_smooth_brick_slab" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/slabs/rhyolite.json b/src/main/resources/data/mineralogy/tags/item/slabs/rhyolite.json index c185ea5e4..9ec17b051 100644 --- a/src/main/resources/data/mineralogy/tags/item/slabs/rhyolite.json +++ b/src/main/resources/data/mineralogy/tags/item/slabs/rhyolite.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:rhyolite_slab" - ] + "replace": false, + "values": [ + "mineralogy:rhyolite_slab" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/slabs/rhyolite/brick.json b/src/main/resources/data/mineralogy/tags/item/slabs/rhyolite/brick.json index dd1efa5d1..9caa4d7ed 100644 --- a/src/main/resources/data/mineralogy/tags/item/slabs/rhyolite/brick.json +++ b/src/main/resources/data/mineralogy/tags/item/slabs/rhyolite/brick.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:rhyolite_brick_slab" - ] + "replace": false, + "values": [ + "mineralogy:rhyolite_brick_slab" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/slabs/rhyolite/smooth.json b/src/main/resources/data/mineralogy/tags/item/slabs/rhyolite/smooth.json index d41b64b15..8fda40f22 100644 --- a/src/main/resources/data/mineralogy/tags/item/slabs/rhyolite/smooth.json +++ b/src/main/resources/data/mineralogy/tags/item/slabs/rhyolite/smooth.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:rhyolite_smooth_slab" - ] + "replace": false, + "values": [ + "mineralogy:rhyolite_smooth_slab" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/slabs/rhyolite/smooth_brick.json b/src/main/resources/data/mineralogy/tags/item/slabs/rhyolite/smooth_brick.json index a4932de04..b5858e7d4 100644 --- a/src/main/resources/data/mineralogy/tags/item/slabs/rhyolite/smooth_brick.json +++ b/src/main/resources/data/mineralogy/tags/item/slabs/rhyolite/smooth_brick.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:rhyolite_smooth_brick_slab" - ] + "replace": false, + "values": [ + "mineralogy:rhyolite_smooth_brick_slab" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/slabs/rock_salt.json b/src/main/resources/data/mineralogy/tags/item/slabs/rock_salt.json index e76862b94..0a8068edd 100644 --- a/src/main/resources/data/mineralogy/tags/item/slabs/rock_salt.json +++ b/src/main/resources/data/mineralogy/tags/item/slabs/rock_salt.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:rock_salt_slab" - ] + "replace": false, + "values": [ + "mineralogy:rock_salt_slab" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/slabs/rock_salt/brick.json b/src/main/resources/data/mineralogy/tags/item/slabs/rock_salt/brick.json index cd5329250..211adf7dc 100644 --- a/src/main/resources/data/mineralogy/tags/item/slabs/rock_salt/brick.json +++ b/src/main/resources/data/mineralogy/tags/item/slabs/rock_salt/brick.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:rock_salt_brick_slab" - ] + "replace": false, + "values": [ + "mineralogy:rock_salt_brick_slab" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/slabs/rock_salt/smooth.json b/src/main/resources/data/mineralogy/tags/item/slabs/rock_salt/smooth.json index 85a609347..0ca994774 100644 --- a/src/main/resources/data/mineralogy/tags/item/slabs/rock_salt/smooth.json +++ b/src/main/resources/data/mineralogy/tags/item/slabs/rock_salt/smooth.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:rock_salt_smooth_slab" - ] + "replace": false, + "values": [ + "mineralogy:rock_salt_smooth_slab" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/slabs/rock_salt/smooth_brick.json b/src/main/resources/data/mineralogy/tags/item/slabs/rock_salt/smooth_brick.json index 9864136eb..6c3f23062 100644 --- a/src/main/resources/data/mineralogy/tags/item/slabs/rock_salt/smooth_brick.json +++ b/src/main/resources/data/mineralogy/tags/item/slabs/rock_salt/smooth_brick.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:rock_salt_smooth_brick_slab" - ] + "replace": false, + "values": [ + "mineralogy:rock_salt_smooth_brick_slab" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/slabs/schist.json b/src/main/resources/data/mineralogy/tags/item/slabs/schist.json index a1ce71a3a..a9fb96052 100644 --- a/src/main/resources/data/mineralogy/tags/item/slabs/schist.json +++ b/src/main/resources/data/mineralogy/tags/item/slabs/schist.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:schist_slab" - ] + "replace": false, + "values": [ + "mineralogy:schist_slab" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/slabs/schist/brick.json b/src/main/resources/data/mineralogy/tags/item/slabs/schist/brick.json index e1306e381..2b3afdc2a 100644 --- a/src/main/resources/data/mineralogy/tags/item/slabs/schist/brick.json +++ b/src/main/resources/data/mineralogy/tags/item/slabs/schist/brick.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:schist_brick_slab" - ] + "replace": false, + "values": [ + "mineralogy:schist_brick_slab" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/slabs/schist/smooth.json b/src/main/resources/data/mineralogy/tags/item/slabs/schist/smooth.json index 93401df40..06d30fc65 100644 --- a/src/main/resources/data/mineralogy/tags/item/slabs/schist/smooth.json +++ b/src/main/resources/data/mineralogy/tags/item/slabs/schist/smooth.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:schist_smooth_slab" - ] + "replace": false, + "values": [ + "mineralogy:schist_smooth_slab" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/slabs/schist/smooth_brick.json b/src/main/resources/data/mineralogy/tags/item/slabs/schist/smooth_brick.json index c0658afea..be8e69417 100644 --- a/src/main/resources/data/mineralogy/tags/item/slabs/schist/smooth_brick.json +++ b/src/main/resources/data/mineralogy/tags/item/slabs/schist/smooth_brick.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:schist_smooth_brick_slab" - ] + "replace": false, + "values": [ + "mineralogy:schist_smooth_brick_slab" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/slabs/scoria.json b/src/main/resources/data/mineralogy/tags/item/slabs/scoria.json index b58eade46..c9944d9dc 100644 --- a/src/main/resources/data/mineralogy/tags/item/slabs/scoria.json +++ b/src/main/resources/data/mineralogy/tags/item/slabs/scoria.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:scoria_slab" - ] + "replace": false, + "values": [ + "mineralogy:scoria_slab" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/slabs/scoria/brick.json b/src/main/resources/data/mineralogy/tags/item/slabs/scoria/brick.json index 9ca979dc7..a5899b7e8 100644 --- a/src/main/resources/data/mineralogy/tags/item/slabs/scoria/brick.json +++ b/src/main/resources/data/mineralogy/tags/item/slabs/scoria/brick.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:scoria_brick_slab" - ] + "replace": false, + "values": [ + "mineralogy:scoria_brick_slab" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/slabs/scoria/smooth.json b/src/main/resources/data/mineralogy/tags/item/slabs/scoria/smooth.json index fbcce69b9..46f4c2bd5 100644 --- a/src/main/resources/data/mineralogy/tags/item/slabs/scoria/smooth.json +++ b/src/main/resources/data/mineralogy/tags/item/slabs/scoria/smooth.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:scoria_smooth_slab" - ] + "replace": false, + "values": [ + "mineralogy:scoria_smooth_slab" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/slabs/scoria/smooth_brick.json b/src/main/resources/data/mineralogy/tags/item/slabs/scoria/smooth_brick.json index a53e4803e..0151b0aa8 100644 --- a/src/main/resources/data/mineralogy/tags/item/slabs/scoria/smooth_brick.json +++ b/src/main/resources/data/mineralogy/tags/item/slabs/scoria/smooth_brick.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:scoria_smooth_brick_slab" - ] + "replace": false, + "values": [ + "mineralogy:scoria_smooth_brick_slab" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/slabs/shale.json b/src/main/resources/data/mineralogy/tags/item/slabs/shale.json index b55c232a4..872602391 100644 --- a/src/main/resources/data/mineralogy/tags/item/slabs/shale.json +++ b/src/main/resources/data/mineralogy/tags/item/slabs/shale.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:shale_slab" - ] + "replace": false, + "values": [ + "mineralogy:shale_slab" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/slabs/shale/brick.json b/src/main/resources/data/mineralogy/tags/item/slabs/shale/brick.json index 1981c8a99..be65235e7 100644 --- a/src/main/resources/data/mineralogy/tags/item/slabs/shale/brick.json +++ b/src/main/resources/data/mineralogy/tags/item/slabs/shale/brick.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:shale_brick_slab" - ] + "replace": false, + "values": [ + "mineralogy:shale_brick_slab" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/slabs/shale/smooth.json b/src/main/resources/data/mineralogy/tags/item/slabs/shale/smooth.json index 662067502..e5e9170c0 100644 --- a/src/main/resources/data/mineralogy/tags/item/slabs/shale/smooth.json +++ b/src/main/resources/data/mineralogy/tags/item/slabs/shale/smooth.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:shale_smooth_slab" - ] + "replace": false, + "values": [ + "mineralogy:shale_smooth_slab" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/slabs/shale/smooth_brick.json b/src/main/resources/data/mineralogy/tags/item/slabs/shale/smooth_brick.json index 77666c63d..630314255 100644 --- a/src/main/resources/data/mineralogy/tags/item/slabs/shale/smooth_brick.json +++ b/src/main/resources/data/mineralogy/tags/item/slabs/shale/smooth_brick.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:shale_smooth_brick_slab" - ] + "replace": false, + "values": [ + "mineralogy:shale_smooth_brick_slab" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/slabs/siltstone.json b/src/main/resources/data/mineralogy/tags/item/slabs/siltstone.json index dc95b1428..b7f38d8c2 100644 --- a/src/main/resources/data/mineralogy/tags/item/slabs/siltstone.json +++ b/src/main/resources/data/mineralogy/tags/item/slabs/siltstone.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:siltstone_slab" - ] + "replace": false, + "values": [ + "mineralogy:siltstone_slab" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/slabs/siltstone/brick.json b/src/main/resources/data/mineralogy/tags/item/slabs/siltstone/brick.json index d461205e9..27c478fcb 100644 --- a/src/main/resources/data/mineralogy/tags/item/slabs/siltstone/brick.json +++ b/src/main/resources/data/mineralogy/tags/item/slabs/siltstone/brick.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:siltstone_brick_slab" - ] + "replace": false, + "values": [ + "mineralogy:siltstone_brick_slab" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/slabs/siltstone/smooth.json b/src/main/resources/data/mineralogy/tags/item/slabs/siltstone/smooth.json index 0aeafc131..abe13b010 100644 --- a/src/main/resources/data/mineralogy/tags/item/slabs/siltstone/smooth.json +++ b/src/main/resources/data/mineralogy/tags/item/slabs/siltstone/smooth.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:siltstone_smooth_slab" - ] + "replace": false, + "values": [ + "mineralogy:siltstone_smooth_slab" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/slabs/siltstone/smooth_brick.json b/src/main/resources/data/mineralogy/tags/item/slabs/siltstone/smooth_brick.json index c90b6e834..136c08404 100644 --- a/src/main/resources/data/mineralogy/tags/item/slabs/siltstone/smooth_brick.json +++ b/src/main/resources/data/mineralogy/tags/item/slabs/siltstone/smooth_brick.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:siltstone_smooth_brick_slab" - ] + "replace": false, + "values": [ + "mineralogy:siltstone_smooth_brick_slab" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/slabs/slate.json b/src/main/resources/data/mineralogy/tags/item/slabs/slate.json index 6c4f3d89b..4a53e2403 100644 --- a/src/main/resources/data/mineralogy/tags/item/slabs/slate.json +++ b/src/main/resources/data/mineralogy/tags/item/slabs/slate.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:slate_slab" - ] + "replace": false, + "values": [ + "mineralogy:slate_slab" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/slabs/slate/brick.json b/src/main/resources/data/mineralogy/tags/item/slabs/slate/brick.json index 4aabe2c82..4933a4e75 100644 --- a/src/main/resources/data/mineralogy/tags/item/slabs/slate/brick.json +++ b/src/main/resources/data/mineralogy/tags/item/slabs/slate/brick.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:slate_brick_slab" - ] + "replace": false, + "values": [ + "mineralogy:slate_brick_slab" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/slabs/slate/smooth.json b/src/main/resources/data/mineralogy/tags/item/slabs/slate/smooth.json index 4e198eb90..981c75014 100644 --- a/src/main/resources/data/mineralogy/tags/item/slabs/slate/smooth.json +++ b/src/main/resources/data/mineralogy/tags/item/slabs/slate/smooth.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:slate_smooth_slab" - ] + "replace": false, + "values": [ + "mineralogy:slate_smooth_slab" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/slabs/slate/smooth_brick.json b/src/main/resources/data/mineralogy/tags/item/slabs/slate/smooth_brick.json index 77e8f5b2c..66b48d143 100644 --- a/src/main/resources/data/mineralogy/tags/item/slabs/slate/smooth_brick.json +++ b/src/main/resources/data/mineralogy/tags/item/slabs/slate/smooth_brick.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:slate_smooth_brick_slab" - ] + "replace": false, + "values": [ + "mineralogy:slate_smooth_brick_slab" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/slabs/tuff.json b/src/main/resources/data/mineralogy/tags/item/slabs/tuff.json index 3025e7992..c4f669e7e 100644 --- a/src/main/resources/data/mineralogy/tags/item/slabs/tuff.json +++ b/src/main/resources/data/mineralogy/tags/item/slabs/tuff.json @@ -1,7 +1,7 @@ { - "replace": false, - "values": [ - "mineralogy:tuff_slab", - "minecraft:tuff_slab" - ] + "replace": false, + "values": [ + "mineralogy:tuff_slab", + "minecraft:tuff_slab" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/slabs/tuff/brick.json b/src/main/resources/data/mineralogy/tags/item/slabs/tuff/brick.json index 4bc16d404..f473248f2 100644 --- a/src/main/resources/data/mineralogy/tags/item/slabs/tuff/brick.json +++ b/src/main/resources/data/mineralogy/tags/item/slabs/tuff/brick.json @@ -1,7 +1,7 @@ { - "replace": false, - "values": [ - "mineralogy:tuff_brick_slab", - "minecraft:tuff_brick_slab" - ] + "replace": false, + "values": [ + "mineralogy:tuff_brick_slab", + "minecraft:tuff_brick_slab" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/slabs/tuff/smooth.json b/src/main/resources/data/mineralogy/tags/item/slabs/tuff/smooth.json index d23fa0987..ea89774eb 100644 --- a/src/main/resources/data/mineralogy/tags/item/slabs/tuff/smooth.json +++ b/src/main/resources/data/mineralogy/tags/item/slabs/tuff/smooth.json @@ -1,7 +1,7 @@ { - "replace": false, - "values": [ - "mineralogy:tuff_smooth_slab", - "minecraft:polished_tuff_slab" - ] + "replace": false, + "values": [ + "mineralogy:tuff_smooth_slab", + "minecraft:polished_tuff_slab" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/slabs/tuff/smooth_brick.json b/src/main/resources/data/mineralogy/tags/item/slabs/tuff/smooth_brick.json index 6c6dd368b..bf5975824 100644 --- a/src/main/resources/data/mineralogy/tags/item/slabs/tuff/smooth_brick.json +++ b/src/main/resources/data/mineralogy/tags/item/slabs/tuff/smooth_brick.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:tuff_smooth_brick_slab" - ] + "replace": false, + "values": [ + "mineralogy:tuff_smooth_brick_slab" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/stone_crafting_materials.json b/src/main/resources/data/mineralogy/tags/item/stone_crafting_materials.json index 5643de212..eb501c330 100644 --- a/src/main/resources/data/mineralogy/tags/item/stone_crafting_materials.json +++ b/src/main/resources/data/mineralogy/tags/item/stone_crafting_materials.json @@ -1,33 +1,33 @@ { - "replace": false, - "values": [ - "#minecraft:stone_crafting_materials", - "#mineralogy:stones/andesite", - "#mineralogy:stones/basalt", - "#mineralogy:stones/diorite", - "#mineralogy:stones/granite", - "#mineralogy:stones/rhyolite", - "#mineralogy:stones/pegmatite", - "#mineralogy:stones/diabase", - "#mineralogy:stones/gabbro", - "#mineralogy:stones/peridotite", - "#mineralogy:stones/basaltic_glass", - "#mineralogy:stones/scoria", - "#mineralogy:stones/tuff", - "#mineralogy:stones/shale", - "#mineralogy:stones/conglomerate", - "#mineralogy:stones/dolomite", - "#mineralogy:stones/limestone", - "#mineralogy:stones/siltstone", - "#mineralogy:stones/marble", - "#mineralogy:stones/slate", - "#mineralogy:stones/schist", - "#mineralogy:stones/gneiss", - "#mineralogy:stones/phyllite", - "#mineralogy:stones/amphibolite", - "#mineralogy:stones/hornfels", - "#mineralogy:stones/quartzite", - "#mineralogy:stones/novaculite", - "#mineralogy:stones/rock_salt" - ] + "replace": false, + "values": [ + "#minecraft:stone_crafting_materials", + "#mineralogy:stones/andesite", + "#mineralogy:stones/basalt", + "#mineralogy:stones/diorite", + "#mineralogy:stones/granite", + "#mineralogy:stones/rhyolite", + "#mineralogy:stones/pegmatite", + "#mineralogy:stones/diabase", + "#mineralogy:stones/gabbro", + "#mineralogy:stones/peridotite", + "#mineralogy:stones/basaltic_glass", + "#mineralogy:stones/scoria", + "#mineralogy:stones/tuff", + "#mineralogy:stones/shale", + "#mineralogy:stones/conglomerate", + "#mineralogy:stones/dolomite", + "#mineralogy:stones/limestone", + "#mineralogy:stones/siltstone", + "#mineralogy:stones/marble", + "#mineralogy:stones/slate", + "#mineralogy:stones/schist", + "#mineralogy:stones/gneiss", + "#mineralogy:stones/phyllite", + "#mineralogy:stones/amphibolite", + "#mineralogy:stones/hornfels", + "#mineralogy:stones/quartzite", + "#mineralogy:stones/novaculite", + "#mineralogy:stones/rock_salt" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/stone_tool_materials.json b/src/main/resources/data/mineralogy/tags/item/stone_tool_materials.json index d2bd2ba86..1a3a9a931 100644 --- a/src/main/resources/data/mineralogy/tags/item/stone_tool_materials.json +++ b/src/main/resources/data/mineralogy/tags/item/stone_tool_materials.json @@ -1,33 +1,33 @@ { - "replace": false, - "values": [ - "#minecraft:stone_tool_materials", - "#mineralogy:stones/andesite", - "#mineralogy:stones/basalt", - "#mineralogy:stones/diorite", - "#mineralogy:stones/granite", - "#mineralogy:stones/rhyolite", - "#mineralogy:stones/pegmatite", - "#mineralogy:stones/diabase", - "#mineralogy:stones/gabbro", - "#mineralogy:stones/peridotite", - "#mineralogy:stones/basaltic_glass", - "#mineralogy:stones/scoria", - "#mineralogy:stones/tuff", - "#mineralogy:stones/shale", - "#mineralogy:stones/conglomerate", - "#mineralogy:stones/dolomite", - "#mineralogy:stones/limestone", - "#mineralogy:stones/siltstone", - "#mineralogy:stones/marble", - "#mineralogy:stones/slate", - "#mineralogy:stones/schist", - "#mineralogy:stones/gneiss", - "#mineralogy:stones/phyllite", - "#mineralogy:stones/amphibolite", - "#mineralogy:stones/hornfels", - "#mineralogy:stones/quartzite", - "#mineralogy:stones/novaculite", - "#mineralogy:stones/rock_salt" - ] + "replace": false, + "values": [ + "#minecraft:stone_tool_materials", + "#mineralogy:stones/andesite", + "#mineralogy:stones/basalt", + "#mineralogy:stones/diorite", + "#mineralogy:stones/granite", + "#mineralogy:stones/rhyolite", + "#mineralogy:stones/pegmatite", + "#mineralogy:stones/diabase", + "#mineralogy:stones/gabbro", + "#mineralogy:stones/peridotite", + "#mineralogy:stones/basaltic_glass", + "#mineralogy:stones/scoria", + "#mineralogy:stones/tuff", + "#mineralogy:stones/shale", + "#mineralogy:stones/conglomerate", + "#mineralogy:stones/dolomite", + "#mineralogy:stones/limestone", + "#mineralogy:stones/siltstone", + "#mineralogy:stones/marble", + "#mineralogy:stones/slate", + "#mineralogy:stones/schist", + "#mineralogy:stones/gneiss", + "#mineralogy:stones/phyllite", + "#mineralogy:stones/amphibolite", + "#mineralogy:stones/hornfels", + "#mineralogy:stones/quartzite", + "#mineralogy:stones/novaculite", + "#mineralogy:stones/rock_salt" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/stones/amphibolite.json b/src/main/resources/data/mineralogy/tags/item/stones/amphibolite.json index 5cdea399b..26e1eac26 100644 --- a/src/main/resources/data/mineralogy/tags/item/stones/amphibolite.json +++ b/src/main/resources/data/mineralogy/tags/item/stones/amphibolite.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:amphibolite" - ] + "replace": false, + "values": [ + "mineralogy:amphibolite" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/stones/amphibolite/brick.json b/src/main/resources/data/mineralogy/tags/item/stones/amphibolite/brick.json index 1651716ad..09c0bacbd 100644 --- a/src/main/resources/data/mineralogy/tags/item/stones/amphibolite/brick.json +++ b/src/main/resources/data/mineralogy/tags/item/stones/amphibolite/brick.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:amphibolite_brick" - ] + "replace": false, + "values": [ + "mineralogy:amphibolite_brick" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/stones/amphibolite/smooth.json b/src/main/resources/data/mineralogy/tags/item/stones/amphibolite/smooth.json index a891ba7f8..896936dfe 100644 --- a/src/main/resources/data/mineralogy/tags/item/stones/amphibolite/smooth.json +++ b/src/main/resources/data/mineralogy/tags/item/stones/amphibolite/smooth.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:amphibolite_smooth" - ] + "replace": false, + "values": [ + "mineralogy:amphibolite_smooth" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/stones/amphibolite/smooth_brick.json b/src/main/resources/data/mineralogy/tags/item/stones/amphibolite/smooth_brick.json index 48eb807c9..42c31f259 100644 --- a/src/main/resources/data/mineralogy/tags/item/stones/amphibolite/smooth_brick.json +++ b/src/main/resources/data/mineralogy/tags/item/stones/amphibolite/smooth_brick.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:amphibolite_smooth_brick" - ] + "replace": false, + "values": [ + "mineralogy:amphibolite_smooth_brick" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/stones/andesite.json b/src/main/resources/data/mineralogy/tags/item/stones/andesite.json index 708588bcd..0680f2507 100644 --- a/src/main/resources/data/mineralogy/tags/item/stones/andesite.json +++ b/src/main/resources/data/mineralogy/tags/item/stones/andesite.json @@ -1,7 +1,7 @@ { - "replace": false, - "values": [ - "mineralogy:andesite", - "minecraft:andesite" - ] + "replace": false, + "values": [ + "mineralogy:andesite", + "minecraft:andesite" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/stones/andesite/brick.json b/src/main/resources/data/mineralogy/tags/item/stones/andesite/brick.json index 65dd79abf..664447e78 100644 --- a/src/main/resources/data/mineralogy/tags/item/stones/andesite/brick.json +++ b/src/main/resources/data/mineralogy/tags/item/stones/andesite/brick.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:andesite_brick" - ] + "replace": false, + "values": [ + "mineralogy:andesite_brick" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/stones/andesite/smooth.json b/src/main/resources/data/mineralogy/tags/item/stones/andesite/smooth.json index a69cca9fa..66bc8782f 100644 --- a/src/main/resources/data/mineralogy/tags/item/stones/andesite/smooth.json +++ b/src/main/resources/data/mineralogy/tags/item/stones/andesite/smooth.json @@ -1,7 +1,7 @@ { - "replace": false, - "values": [ - "mineralogy:andesite_smooth", - "minecraft:polished_andesite" - ] + "replace": false, + "values": [ + "mineralogy:andesite_smooth", + "minecraft:polished_andesite" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/stones/andesite/smooth_brick.json b/src/main/resources/data/mineralogy/tags/item/stones/andesite/smooth_brick.json index 77fa030cc..7d8ea7173 100644 --- a/src/main/resources/data/mineralogy/tags/item/stones/andesite/smooth_brick.json +++ b/src/main/resources/data/mineralogy/tags/item/stones/andesite/smooth_brick.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:andesite_smooth_brick" - ] + "replace": false, + "values": [ + "mineralogy:andesite_smooth_brick" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/stones/basalt.json b/src/main/resources/data/mineralogy/tags/item/stones/basalt.json index 1ae916657..e0e10bf52 100644 --- a/src/main/resources/data/mineralogy/tags/item/stones/basalt.json +++ b/src/main/resources/data/mineralogy/tags/item/stones/basalt.json @@ -1,7 +1,7 @@ { - "replace": false, - "values": [ - "mineralogy:basalt", - "minecraft:basalt" - ] + "replace": false, + "values": [ + "mineralogy:basalt", + "minecraft:basalt" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/stones/basalt/brick.json b/src/main/resources/data/mineralogy/tags/item/stones/basalt/brick.json index 49e671bdb..b11e0a450 100644 --- a/src/main/resources/data/mineralogy/tags/item/stones/basalt/brick.json +++ b/src/main/resources/data/mineralogy/tags/item/stones/basalt/brick.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:basalt_brick" - ] + "replace": false, + "values": [ + "mineralogy:basalt_brick" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/stones/basalt/smooth.json b/src/main/resources/data/mineralogy/tags/item/stones/basalt/smooth.json index 4a744d51b..25d2d8f96 100644 --- a/src/main/resources/data/mineralogy/tags/item/stones/basalt/smooth.json +++ b/src/main/resources/data/mineralogy/tags/item/stones/basalt/smooth.json @@ -1,8 +1,8 @@ { - "replace": false, - "values": [ - "mineralogy:basalt_smooth", - "minecraft:polished_basalt", - "minecraft:smooth_basalt" - ] + "replace": false, + "values": [ + "mineralogy:basalt_smooth", + "minecraft:polished_basalt", + "minecraft:smooth_basalt" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/stones/basalt/smooth_brick.json b/src/main/resources/data/mineralogy/tags/item/stones/basalt/smooth_brick.json index 3118bb8c9..78d3151ba 100644 --- a/src/main/resources/data/mineralogy/tags/item/stones/basalt/smooth_brick.json +++ b/src/main/resources/data/mineralogy/tags/item/stones/basalt/smooth_brick.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:basalt_smooth_brick" - ] + "replace": false, + "values": [ + "mineralogy:basalt_smooth_brick" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/stones/basaltic_glass.json b/src/main/resources/data/mineralogy/tags/item/stones/basaltic_glass.json index 9cb3a5c60..59c1e89a3 100644 --- a/src/main/resources/data/mineralogy/tags/item/stones/basaltic_glass.json +++ b/src/main/resources/data/mineralogy/tags/item/stones/basaltic_glass.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:basaltic_glass" - ] + "replace": false, + "values": [ + "mineralogy:basaltic_glass" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/stones/basaltic_glass/brick.json b/src/main/resources/data/mineralogy/tags/item/stones/basaltic_glass/brick.json index ca6b5c874..c3e714d9b 100644 --- a/src/main/resources/data/mineralogy/tags/item/stones/basaltic_glass/brick.json +++ b/src/main/resources/data/mineralogy/tags/item/stones/basaltic_glass/brick.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:basaltic_glass_brick" - ] + "replace": false, + "values": [ + "mineralogy:basaltic_glass_brick" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/stones/basaltic_glass/smooth.json b/src/main/resources/data/mineralogy/tags/item/stones/basaltic_glass/smooth.json index c26bf62e0..5d316108c 100644 --- a/src/main/resources/data/mineralogy/tags/item/stones/basaltic_glass/smooth.json +++ b/src/main/resources/data/mineralogy/tags/item/stones/basaltic_glass/smooth.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:basaltic_glass_smooth" - ] + "replace": false, + "values": [ + "mineralogy:basaltic_glass_smooth" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/stones/basaltic_glass/smooth_brick.json b/src/main/resources/data/mineralogy/tags/item/stones/basaltic_glass/smooth_brick.json index 687a62cb9..5683c3449 100644 --- a/src/main/resources/data/mineralogy/tags/item/stones/basaltic_glass/smooth_brick.json +++ b/src/main/resources/data/mineralogy/tags/item/stones/basaltic_glass/smooth_brick.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:basaltic_glass_smooth_brick" - ] + "replace": false, + "values": [ + "mineralogy:basaltic_glass_smooth_brick" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/stones/conglomerate.json b/src/main/resources/data/mineralogy/tags/item/stones/conglomerate.json index 9a8db044e..e4e289fb2 100644 --- a/src/main/resources/data/mineralogy/tags/item/stones/conglomerate.json +++ b/src/main/resources/data/mineralogy/tags/item/stones/conglomerate.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:conglomerate" - ] + "replace": false, + "values": [ + "mineralogy:conglomerate" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/stones/conglomerate/brick.json b/src/main/resources/data/mineralogy/tags/item/stones/conglomerate/brick.json index dbb375208..16c776423 100644 --- a/src/main/resources/data/mineralogy/tags/item/stones/conglomerate/brick.json +++ b/src/main/resources/data/mineralogy/tags/item/stones/conglomerate/brick.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:conglomerate_brick" - ] + "replace": false, + "values": [ + "mineralogy:conglomerate_brick" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/stones/conglomerate/smooth.json b/src/main/resources/data/mineralogy/tags/item/stones/conglomerate/smooth.json index e9b9b7d51..ed03eccae 100644 --- a/src/main/resources/data/mineralogy/tags/item/stones/conglomerate/smooth.json +++ b/src/main/resources/data/mineralogy/tags/item/stones/conglomerate/smooth.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:conglomerate_smooth" - ] + "replace": false, + "values": [ + "mineralogy:conglomerate_smooth" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/stones/conglomerate/smooth_brick.json b/src/main/resources/data/mineralogy/tags/item/stones/conglomerate/smooth_brick.json index 0c58445bb..eb4fade20 100644 --- a/src/main/resources/data/mineralogy/tags/item/stones/conglomerate/smooth_brick.json +++ b/src/main/resources/data/mineralogy/tags/item/stones/conglomerate/smooth_brick.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:conglomerate_smooth_brick" - ] + "replace": false, + "values": [ + "mineralogy:conglomerate_smooth_brick" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/stones/diabase.json b/src/main/resources/data/mineralogy/tags/item/stones/diabase.json index b1d74d01e..c53507246 100644 --- a/src/main/resources/data/mineralogy/tags/item/stones/diabase.json +++ b/src/main/resources/data/mineralogy/tags/item/stones/diabase.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:diabase" - ] + "replace": false, + "values": [ + "mineralogy:diabase" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/stones/diabase/brick.json b/src/main/resources/data/mineralogy/tags/item/stones/diabase/brick.json index dfd293283..e8f95bf2d 100644 --- a/src/main/resources/data/mineralogy/tags/item/stones/diabase/brick.json +++ b/src/main/resources/data/mineralogy/tags/item/stones/diabase/brick.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:diabase_brick" - ] + "replace": false, + "values": [ + "mineralogy:diabase_brick" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/stones/diabase/smooth.json b/src/main/resources/data/mineralogy/tags/item/stones/diabase/smooth.json index 3931e59c9..f82c21daa 100644 --- a/src/main/resources/data/mineralogy/tags/item/stones/diabase/smooth.json +++ b/src/main/resources/data/mineralogy/tags/item/stones/diabase/smooth.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:diabase_smooth" - ] + "replace": false, + "values": [ + "mineralogy:diabase_smooth" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/stones/diabase/smooth_brick.json b/src/main/resources/data/mineralogy/tags/item/stones/diabase/smooth_brick.json index c4039acd1..8f7a84978 100644 --- a/src/main/resources/data/mineralogy/tags/item/stones/diabase/smooth_brick.json +++ b/src/main/resources/data/mineralogy/tags/item/stones/diabase/smooth_brick.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:diabase_smooth_brick" - ] + "replace": false, + "values": [ + "mineralogy:diabase_smooth_brick" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/stones/diorite.json b/src/main/resources/data/mineralogy/tags/item/stones/diorite.json index a6c473010..8d8329944 100644 --- a/src/main/resources/data/mineralogy/tags/item/stones/diorite.json +++ b/src/main/resources/data/mineralogy/tags/item/stones/diorite.json @@ -1,7 +1,7 @@ { - "replace": false, - "values": [ - "mineralogy:diorite", - "minecraft:diorite" - ] + "replace": false, + "values": [ + "mineralogy:diorite", + "minecraft:diorite" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/stones/diorite/brick.json b/src/main/resources/data/mineralogy/tags/item/stones/diorite/brick.json index 44f75de23..bb7d68cd5 100644 --- a/src/main/resources/data/mineralogy/tags/item/stones/diorite/brick.json +++ b/src/main/resources/data/mineralogy/tags/item/stones/diorite/brick.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:diorite_brick" - ] + "replace": false, + "values": [ + "mineralogy:diorite_brick" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/stones/diorite/smooth.json b/src/main/resources/data/mineralogy/tags/item/stones/diorite/smooth.json index 28fc952bd..1e9107888 100644 --- a/src/main/resources/data/mineralogy/tags/item/stones/diorite/smooth.json +++ b/src/main/resources/data/mineralogy/tags/item/stones/diorite/smooth.json @@ -1,7 +1,7 @@ { - "replace": false, - "values": [ - "mineralogy:diorite_smooth", - "minecraft:polished_diorite" - ] + "replace": false, + "values": [ + "mineralogy:diorite_smooth", + "minecraft:polished_diorite" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/stones/diorite/smooth_brick.json b/src/main/resources/data/mineralogy/tags/item/stones/diorite/smooth_brick.json index 9d2661c01..82d7dba0f 100644 --- a/src/main/resources/data/mineralogy/tags/item/stones/diorite/smooth_brick.json +++ b/src/main/resources/data/mineralogy/tags/item/stones/diorite/smooth_brick.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:diorite_smooth_brick" - ] + "replace": false, + "values": [ + "mineralogy:diorite_smooth_brick" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/stones/dolomite.json b/src/main/resources/data/mineralogy/tags/item/stones/dolomite.json index f329a9162..1ed6b212d 100644 --- a/src/main/resources/data/mineralogy/tags/item/stones/dolomite.json +++ b/src/main/resources/data/mineralogy/tags/item/stones/dolomite.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:dolomite" - ] + "replace": false, + "values": [ + "mineralogy:dolomite" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/stones/dolomite/brick.json b/src/main/resources/data/mineralogy/tags/item/stones/dolomite/brick.json index c010f8c2e..7687e5979 100644 --- a/src/main/resources/data/mineralogy/tags/item/stones/dolomite/brick.json +++ b/src/main/resources/data/mineralogy/tags/item/stones/dolomite/brick.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:dolomite_brick" - ] + "replace": false, + "values": [ + "mineralogy:dolomite_brick" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/stones/dolomite/smooth.json b/src/main/resources/data/mineralogy/tags/item/stones/dolomite/smooth.json index d1e984d14..80a03fa1f 100644 --- a/src/main/resources/data/mineralogy/tags/item/stones/dolomite/smooth.json +++ b/src/main/resources/data/mineralogy/tags/item/stones/dolomite/smooth.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:dolomite_smooth" - ] + "replace": false, + "values": [ + "mineralogy:dolomite_smooth" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/stones/dolomite/smooth_brick.json b/src/main/resources/data/mineralogy/tags/item/stones/dolomite/smooth_brick.json index 2f74306bc..80d7e45bc 100644 --- a/src/main/resources/data/mineralogy/tags/item/stones/dolomite/smooth_brick.json +++ b/src/main/resources/data/mineralogy/tags/item/stones/dolomite/smooth_brick.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:dolomite_smooth_brick" - ] + "replace": false, + "values": [ + "mineralogy:dolomite_smooth_brick" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/stones/gabbro.json b/src/main/resources/data/mineralogy/tags/item/stones/gabbro.json index 2b664843f..d2d73ceb1 100644 --- a/src/main/resources/data/mineralogy/tags/item/stones/gabbro.json +++ b/src/main/resources/data/mineralogy/tags/item/stones/gabbro.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:gabbro" - ] + "replace": false, + "values": [ + "mineralogy:gabbro" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/stones/gabbro/brick.json b/src/main/resources/data/mineralogy/tags/item/stones/gabbro/brick.json index 1a4f230f9..6ee0d9b94 100644 --- a/src/main/resources/data/mineralogy/tags/item/stones/gabbro/brick.json +++ b/src/main/resources/data/mineralogy/tags/item/stones/gabbro/brick.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:gabbro_brick" - ] + "replace": false, + "values": [ + "mineralogy:gabbro_brick" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/stones/gabbro/smooth.json b/src/main/resources/data/mineralogy/tags/item/stones/gabbro/smooth.json index ce9b70813..2991c2caf 100644 --- a/src/main/resources/data/mineralogy/tags/item/stones/gabbro/smooth.json +++ b/src/main/resources/data/mineralogy/tags/item/stones/gabbro/smooth.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:gabbro_smooth" - ] + "replace": false, + "values": [ + "mineralogy:gabbro_smooth" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/stones/gabbro/smooth_brick.json b/src/main/resources/data/mineralogy/tags/item/stones/gabbro/smooth_brick.json index 53dea2b13..dba246ae4 100644 --- a/src/main/resources/data/mineralogy/tags/item/stones/gabbro/smooth_brick.json +++ b/src/main/resources/data/mineralogy/tags/item/stones/gabbro/smooth_brick.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:gabbro_smooth_brick" - ] + "replace": false, + "values": [ + "mineralogy:gabbro_smooth_brick" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/stones/gneiss.json b/src/main/resources/data/mineralogy/tags/item/stones/gneiss.json index a19fbac88..6d15d2677 100644 --- a/src/main/resources/data/mineralogy/tags/item/stones/gneiss.json +++ b/src/main/resources/data/mineralogy/tags/item/stones/gneiss.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:gneiss" - ] + "replace": false, + "values": [ + "mineralogy:gneiss" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/stones/gneiss/brick.json b/src/main/resources/data/mineralogy/tags/item/stones/gneiss/brick.json index 6a784a9fb..b70ba68ac 100644 --- a/src/main/resources/data/mineralogy/tags/item/stones/gneiss/brick.json +++ b/src/main/resources/data/mineralogy/tags/item/stones/gneiss/brick.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:gneiss_brick" - ] + "replace": false, + "values": [ + "mineralogy:gneiss_brick" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/stones/gneiss/smooth.json b/src/main/resources/data/mineralogy/tags/item/stones/gneiss/smooth.json index 211fd8983..bc0ba263f 100644 --- a/src/main/resources/data/mineralogy/tags/item/stones/gneiss/smooth.json +++ b/src/main/resources/data/mineralogy/tags/item/stones/gneiss/smooth.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:gneiss_smooth" - ] + "replace": false, + "values": [ + "mineralogy:gneiss_smooth" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/stones/gneiss/smooth_brick.json b/src/main/resources/data/mineralogy/tags/item/stones/gneiss/smooth_brick.json index 5ab5d0aaa..45acbec54 100644 --- a/src/main/resources/data/mineralogy/tags/item/stones/gneiss/smooth_brick.json +++ b/src/main/resources/data/mineralogy/tags/item/stones/gneiss/smooth_brick.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:gneiss_smooth_brick" - ] + "replace": false, + "values": [ + "mineralogy:gneiss_smooth_brick" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/stones/granite.json b/src/main/resources/data/mineralogy/tags/item/stones/granite.json index ae5dd9590..817e7c5da 100644 --- a/src/main/resources/data/mineralogy/tags/item/stones/granite.json +++ b/src/main/resources/data/mineralogy/tags/item/stones/granite.json @@ -1,7 +1,7 @@ { - "replace": false, - "values": [ - "mineralogy:granite", - "minecraft:granite" - ] + "replace": false, + "values": [ + "mineralogy:granite", + "minecraft:granite" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/stones/granite/brick.json b/src/main/resources/data/mineralogy/tags/item/stones/granite/brick.json index b4f65a8a6..c16cf5c6b 100644 --- a/src/main/resources/data/mineralogy/tags/item/stones/granite/brick.json +++ b/src/main/resources/data/mineralogy/tags/item/stones/granite/brick.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:granite_brick" - ] + "replace": false, + "values": [ + "mineralogy:granite_brick" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/stones/granite/smooth.json b/src/main/resources/data/mineralogy/tags/item/stones/granite/smooth.json index 947518d8b..8c7cecd8a 100644 --- a/src/main/resources/data/mineralogy/tags/item/stones/granite/smooth.json +++ b/src/main/resources/data/mineralogy/tags/item/stones/granite/smooth.json @@ -1,7 +1,7 @@ { - "replace": false, - "values": [ - "mineralogy:granite_smooth", - "minecraft:polished_granite" - ] + "replace": false, + "values": [ + "mineralogy:granite_smooth", + "minecraft:polished_granite" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/stones/granite/smooth_brick.json b/src/main/resources/data/mineralogy/tags/item/stones/granite/smooth_brick.json index a68aa55e3..404ac981b 100644 --- a/src/main/resources/data/mineralogy/tags/item/stones/granite/smooth_brick.json +++ b/src/main/resources/data/mineralogy/tags/item/stones/granite/smooth_brick.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:granite_smooth_brick" - ] + "replace": false, + "values": [ + "mineralogy:granite_smooth_brick" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/stones/hornfels.json b/src/main/resources/data/mineralogy/tags/item/stones/hornfels.json index 7ec83bdd3..59acdf116 100644 --- a/src/main/resources/data/mineralogy/tags/item/stones/hornfels.json +++ b/src/main/resources/data/mineralogy/tags/item/stones/hornfels.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:hornfels" - ] + "replace": false, + "values": [ + "mineralogy:hornfels" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/stones/hornfels/brick.json b/src/main/resources/data/mineralogy/tags/item/stones/hornfels/brick.json index fa6cbf595..6aa77206d 100644 --- a/src/main/resources/data/mineralogy/tags/item/stones/hornfels/brick.json +++ b/src/main/resources/data/mineralogy/tags/item/stones/hornfels/brick.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:hornfels_brick" - ] + "replace": false, + "values": [ + "mineralogy:hornfels_brick" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/stones/hornfels/smooth.json b/src/main/resources/data/mineralogy/tags/item/stones/hornfels/smooth.json index 9f6801294..07cebd176 100644 --- a/src/main/resources/data/mineralogy/tags/item/stones/hornfels/smooth.json +++ b/src/main/resources/data/mineralogy/tags/item/stones/hornfels/smooth.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:hornfels_smooth" - ] + "replace": false, + "values": [ + "mineralogy:hornfels_smooth" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/stones/hornfels/smooth_brick.json b/src/main/resources/data/mineralogy/tags/item/stones/hornfels/smooth_brick.json index 9da4b03c2..ffea474be 100644 --- a/src/main/resources/data/mineralogy/tags/item/stones/hornfels/smooth_brick.json +++ b/src/main/resources/data/mineralogy/tags/item/stones/hornfels/smooth_brick.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:hornfels_smooth_brick" - ] + "replace": false, + "values": [ + "mineralogy:hornfels_smooth_brick" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/stones/limestone.json b/src/main/resources/data/mineralogy/tags/item/stones/limestone.json index 3f32e2ff2..ae25aec9e 100644 --- a/src/main/resources/data/mineralogy/tags/item/stones/limestone.json +++ b/src/main/resources/data/mineralogy/tags/item/stones/limestone.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:limestone" - ] + "replace": false, + "values": [ + "mineralogy:limestone" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/stones/limestone/brick.json b/src/main/resources/data/mineralogy/tags/item/stones/limestone/brick.json index f49563caf..6b0d439c2 100644 --- a/src/main/resources/data/mineralogy/tags/item/stones/limestone/brick.json +++ b/src/main/resources/data/mineralogy/tags/item/stones/limestone/brick.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:limestone_brick" - ] + "replace": false, + "values": [ + "mineralogy:limestone_brick" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/stones/limestone/smooth.json b/src/main/resources/data/mineralogy/tags/item/stones/limestone/smooth.json index d45ba82ba..507e26428 100644 --- a/src/main/resources/data/mineralogy/tags/item/stones/limestone/smooth.json +++ b/src/main/resources/data/mineralogy/tags/item/stones/limestone/smooth.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:limestone_smooth" - ] + "replace": false, + "values": [ + "mineralogy:limestone_smooth" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/stones/limestone/smooth_brick.json b/src/main/resources/data/mineralogy/tags/item/stones/limestone/smooth_brick.json index 4e7f4269e..4fdaa20ac 100644 --- a/src/main/resources/data/mineralogy/tags/item/stones/limestone/smooth_brick.json +++ b/src/main/resources/data/mineralogy/tags/item/stones/limestone/smooth_brick.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:limestone_smooth_brick" - ] + "replace": false, + "values": [ + "mineralogy:limestone_smooth_brick" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/stones/marble.json b/src/main/resources/data/mineralogy/tags/item/stones/marble.json index bdb724467..e22e67bb1 100644 --- a/src/main/resources/data/mineralogy/tags/item/stones/marble.json +++ b/src/main/resources/data/mineralogy/tags/item/stones/marble.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:marble" - ] + "replace": false, + "values": [ + "mineralogy:marble" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/stones/marble/brick.json b/src/main/resources/data/mineralogy/tags/item/stones/marble/brick.json index 7359596ec..5929140c8 100644 --- a/src/main/resources/data/mineralogy/tags/item/stones/marble/brick.json +++ b/src/main/resources/data/mineralogy/tags/item/stones/marble/brick.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:marble_brick" - ] + "replace": false, + "values": [ + "mineralogy:marble_brick" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/stones/marble/smooth.json b/src/main/resources/data/mineralogy/tags/item/stones/marble/smooth.json index 4ec76fe47..4a4461db9 100644 --- a/src/main/resources/data/mineralogy/tags/item/stones/marble/smooth.json +++ b/src/main/resources/data/mineralogy/tags/item/stones/marble/smooth.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:marble_smooth" - ] + "replace": false, + "values": [ + "mineralogy:marble_smooth" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/stones/marble/smooth_brick.json b/src/main/resources/data/mineralogy/tags/item/stones/marble/smooth_brick.json index ed9758ea4..43df1bb35 100644 --- a/src/main/resources/data/mineralogy/tags/item/stones/marble/smooth_brick.json +++ b/src/main/resources/data/mineralogy/tags/item/stones/marble/smooth_brick.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:marble_smooth_brick" - ] + "replace": false, + "values": [ + "mineralogy:marble_smooth_brick" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/stones/novaculite.json b/src/main/resources/data/mineralogy/tags/item/stones/novaculite.json index 74fb17da3..2339a11c9 100644 --- a/src/main/resources/data/mineralogy/tags/item/stones/novaculite.json +++ b/src/main/resources/data/mineralogy/tags/item/stones/novaculite.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:novaculite" - ] + "replace": false, + "values": [ + "mineralogy:novaculite" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/stones/novaculite/brick.json b/src/main/resources/data/mineralogy/tags/item/stones/novaculite/brick.json index 5572d90dd..dbf80694b 100644 --- a/src/main/resources/data/mineralogy/tags/item/stones/novaculite/brick.json +++ b/src/main/resources/data/mineralogy/tags/item/stones/novaculite/brick.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:novaculite_brick" - ] + "replace": false, + "values": [ + "mineralogy:novaculite_brick" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/stones/novaculite/smooth.json b/src/main/resources/data/mineralogy/tags/item/stones/novaculite/smooth.json index 99993cecc..4051ebdc5 100644 --- a/src/main/resources/data/mineralogy/tags/item/stones/novaculite/smooth.json +++ b/src/main/resources/data/mineralogy/tags/item/stones/novaculite/smooth.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:novaculite_smooth" - ] + "replace": false, + "values": [ + "mineralogy:novaculite_smooth" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/stones/novaculite/smooth_brick.json b/src/main/resources/data/mineralogy/tags/item/stones/novaculite/smooth_brick.json index b393df328..08c1ee6dc 100644 --- a/src/main/resources/data/mineralogy/tags/item/stones/novaculite/smooth_brick.json +++ b/src/main/resources/data/mineralogy/tags/item/stones/novaculite/smooth_brick.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:novaculite_smooth_brick" - ] + "replace": false, + "values": [ + "mineralogy:novaculite_smooth_brick" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/stones/pegmatite.json b/src/main/resources/data/mineralogy/tags/item/stones/pegmatite.json index 7675fc010..442dbf678 100644 --- a/src/main/resources/data/mineralogy/tags/item/stones/pegmatite.json +++ b/src/main/resources/data/mineralogy/tags/item/stones/pegmatite.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:pegmatite" - ] + "replace": false, + "values": [ + "mineralogy:pegmatite" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/stones/pegmatite/brick.json b/src/main/resources/data/mineralogy/tags/item/stones/pegmatite/brick.json index 79089e743..d3eb34db3 100644 --- a/src/main/resources/data/mineralogy/tags/item/stones/pegmatite/brick.json +++ b/src/main/resources/data/mineralogy/tags/item/stones/pegmatite/brick.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:pegmatite_brick" - ] + "replace": false, + "values": [ + "mineralogy:pegmatite_brick" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/stones/pegmatite/smooth.json b/src/main/resources/data/mineralogy/tags/item/stones/pegmatite/smooth.json index f0cd06b16..08eed28b3 100644 --- a/src/main/resources/data/mineralogy/tags/item/stones/pegmatite/smooth.json +++ b/src/main/resources/data/mineralogy/tags/item/stones/pegmatite/smooth.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:pegmatite_smooth" - ] + "replace": false, + "values": [ + "mineralogy:pegmatite_smooth" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/stones/pegmatite/smooth_brick.json b/src/main/resources/data/mineralogy/tags/item/stones/pegmatite/smooth_brick.json index c947fbd24..acd0d803f 100644 --- a/src/main/resources/data/mineralogy/tags/item/stones/pegmatite/smooth_brick.json +++ b/src/main/resources/data/mineralogy/tags/item/stones/pegmatite/smooth_brick.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:pegmatite_smooth_brick" - ] + "replace": false, + "values": [ + "mineralogy:pegmatite_smooth_brick" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/stones/peridotite.json b/src/main/resources/data/mineralogy/tags/item/stones/peridotite.json index 34de42c18..d774099e2 100644 --- a/src/main/resources/data/mineralogy/tags/item/stones/peridotite.json +++ b/src/main/resources/data/mineralogy/tags/item/stones/peridotite.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:peridotite" - ] + "replace": false, + "values": [ + "mineralogy:peridotite" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/stones/peridotite/brick.json b/src/main/resources/data/mineralogy/tags/item/stones/peridotite/brick.json index d5164e79e..63d016f1b 100644 --- a/src/main/resources/data/mineralogy/tags/item/stones/peridotite/brick.json +++ b/src/main/resources/data/mineralogy/tags/item/stones/peridotite/brick.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:peridotite_brick" - ] + "replace": false, + "values": [ + "mineralogy:peridotite_brick" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/stones/peridotite/smooth.json b/src/main/resources/data/mineralogy/tags/item/stones/peridotite/smooth.json index 05cc3984e..df0eb7298 100644 --- a/src/main/resources/data/mineralogy/tags/item/stones/peridotite/smooth.json +++ b/src/main/resources/data/mineralogy/tags/item/stones/peridotite/smooth.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:peridotite_smooth" - ] + "replace": false, + "values": [ + "mineralogy:peridotite_smooth" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/stones/peridotite/smooth_brick.json b/src/main/resources/data/mineralogy/tags/item/stones/peridotite/smooth_brick.json index f4aea4223..8c09bb92d 100644 --- a/src/main/resources/data/mineralogy/tags/item/stones/peridotite/smooth_brick.json +++ b/src/main/resources/data/mineralogy/tags/item/stones/peridotite/smooth_brick.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:peridotite_smooth_brick" - ] + "replace": false, + "values": [ + "mineralogy:peridotite_smooth_brick" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/stones/phyllite.json b/src/main/resources/data/mineralogy/tags/item/stones/phyllite.json index 991dc28d5..f705ab15b 100644 --- a/src/main/resources/data/mineralogy/tags/item/stones/phyllite.json +++ b/src/main/resources/data/mineralogy/tags/item/stones/phyllite.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:phyllite" - ] + "replace": false, + "values": [ + "mineralogy:phyllite" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/stones/phyllite/brick.json b/src/main/resources/data/mineralogy/tags/item/stones/phyllite/brick.json index 9e33f47aa..48217ba35 100644 --- a/src/main/resources/data/mineralogy/tags/item/stones/phyllite/brick.json +++ b/src/main/resources/data/mineralogy/tags/item/stones/phyllite/brick.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:phyllite_brick" - ] + "replace": false, + "values": [ + "mineralogy:phyllite_brick" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/stones/phyllite/smooth.json b/src/main/resources/data/mineralogy/tags/item/stones/phyllite/smooth.json index 6c74aea08..0262774fc 100644 --- a/src/main/resources/data/mineralogy/tags/item/stones/phyllite/smooth.json +++ b/src/main/resources/data/mineralogy/tags/item/stones/phyllite/smooth.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:phyllite_smooth" - ] + "replace": false, + "values": [ + "mineralogy:phyllite_smooth" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/stones/phyllite/smooth_brick.json b/src/main/resources/data/mineralogy/tags/item/stones/phyllite/smooth_brick.json index d381910bc..5a4d2ab25 100644 --- a/src/main/resources/data/mineralogy/tags/item/stones/phyllite/smooth_brick.json +++ b/src/main/resources/data/mineralogy/tags/item/stones/phyllite/smooth_brick.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:phyllite_smooth_brick" - ] + "replace": false, + "values": [ + "mineralogy:phyllite_smooth_brick" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/stones/quartzite.json b/src/main/resources/data/mineralogy/tags/item/stones/quartzite.json index f539e57f9..21db863d4 100644 --- a/src/main/resources/data/mineralogy/tags/item/stones/quartzite.json +++ b/src/main/resources/data/mineralogy/tags/item/stones/quartzite.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:quartzite" - ] + "replace": false, + "values": [ + "mineralogy:quartzite" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/stones/quartzite/brick.json b/src/main/resources/data/mineralogy/tags/item/stones/quartzite/brick.json index ae21a9047..52e4999bb 100644 --- a/src/main/resources/data/mineralogy/tags/item/stones/quartzite/brick.json +++ b/src/main/resources/data/mineralogy/tags/item/stones/quartzite/brick.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:quartzite_brick" - ] + "replace": false, + "values": [ + "mineralogy:quartzite_brick" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/stones/quartzite/smooth.json b/src/main/resources/data/mineralogy/tags/item/stones/quartzite/smooth.json index f29a3ef24..93425eab3 100644 --- a/src/main/resources/data/mineralogy/tags/item/stones/quartzite/smooth.json +++ b/src/main/resources/data/mineralogy/tags/item/stones/quartzite/smooth.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:quartzite_smooth" - ] + "replace": false, + "values": [ + "mineralogy:quartzite_smooth" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/stones/quartzite/smooth_brick.json b/src/main/resources/data/mineralogy/tags/item/stones/quartzite/smooth_brick.json index 73b47a97a..2331a2b9b 100644 --- a/src/main/resources/data/mineralogy/tags/item/stones/quartzite/smooth_brick.json +++ b/src/main/resources/data/mineralogy/tags/item/stones/quartzite/smooth_brick.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:quartzite_smooth_brick" - ] + "replace": false, + "values": [ + "mineralogy:quartzite_smooth_brick" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/stones/rhyolite.json b/src/main/resources/data/mineralogy/tags/item/stones/rhyolite.json index 460e41c8e..77c7ece7b 100644 --- a/src/main/resources/data/mineralogy/tags/item/stones/rhyolite.json +++ b/src/main/resources/data/mineralogy/tags/item/stones/rhyolite.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:rhyolite" - ] + "replace": false, + "values": [ + "mineralogy:rhyolite" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/stones/rhyolite/brick.json b/src/main/resources/data/mineralogy/tags/item/stones/rhyolite/brick.json index 324c3af21..13795d330 100644 --- a/src/main/resources/data/mineralogy/tags/item/stones/rhyolite/brick.json +++ b/src/main/resources/data/mineralogy/tags/item/stones/rhyolite/brick.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:rhyolite_brick" - ] + "replace": false, + "values": [ + "mineralogy:rhyolite_brick" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/stones/rhyolite/smooth.json b/src/main/resources/data/mineralogy/tags/item/stones/rhyolite/smooth.json index 37b2943cc..c0efe6ff2 100644 --- a/src/main/resources/data/mineralogy/tags/item/stones/rhyolite/smooth.json +++ b/src/main/resources/data/mineralogy/tags/item/stones/rhyolite/smooth.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:rhyolite_smooth" - ] + "replace": false, + "values": [ + "mineralogy:rhyolite_smooth" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/stones/rhyolite/smooth_brick.json b/src/main/resources/data/mineralogy/tags/item/stones/rhyolite/smooth_brick.json index 3fb64d82b..0d66a8397 100644 --- a/src/main/resources/data/mineralogy/tags/item/stones/rhyolite/smooth_brick.json +++ b/src/main/resources/data/mineralogy/tags/item/stones/rhyolite/smooth_brick.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:rhyolite_smooth_brick" - ] + "replace": false, + "values": [ + "mineralogy:rhyolite_smooth_brick" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/stones/rock_salt.json b/src/main/resources/data/mineralogy/tags/item/stones/rock_salt.json index 24df4c009..8133cee26 100644 --- a/src/main/resources/data/mineralogy/tags/item/stones/rock_salt.json +++ b/src/main/resources/data/mineralogy/tags/item/stones/rock_salt.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:rock_salt" - ] + "replace": false, + "values": [ + "mineralogy:rock_salt" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/stones/rock_salt/brick.json b/src/main/resources/data/mineralogy/tags/item/stones/rock_salt/brick.json index a66102e22..817a098e1 100644 --- a/src/main/resources/data/mineralogy/tags/item/stones/rock_salt/brick.json +++ b/src/main/resources/data/mineralogy/tags/item/stones/rock_salt/brick.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:rock_salt_brick" - ] + "replace": false, + "values": [ + "mineralogy:rock_salt_brick" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/stones/rock_salt/smooth.json b/src/main/resources/data/mineralogy/tags/item/stones/rock_salt/smooth.json index cb1591d29..06d1768f9 100644 --- a/src/main/resources/data/mineralogy/tags/item/stones/rock_salt/smooth.json +++ b/src/main/resources/data/mineralogy/tags/item/stones/rock_salt/smooth.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:rock_salt_smooth" - ] + "replace": false, + "values": [ + "mineralogy:rock_salt_smooth" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/stones/rock_salt/smooth_brick.json b/src/main/resources/data/mineralogy/tags/item/stones/rock_salt/smooth_brick.json index b63b027b0..a4201fe22 100644 --- a/src/main/resources/data/mineralogy/tags/item/stones/rock_salt/smooth_brick.json +++ b/src/main/resources/data/mineralogy/tags/item/stones/rock_salt/smooth_brick.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:rock_salt_smooth_brick" - ] + "replace": false, + "values": [ + "mineralogy:rock_salt_smooth_brick" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/stones/schist.json b/src/main/resources/data/mineralogy/tags/item/stones/schist.json index ba6cdfc2c..61f16050a 100644 --- a/src/main/resources/data/mineralogy/tags/item/stones/schist.json +++ b/src/main/resources/data/mineralogy/tags/item/stones/schist.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:schist" - ] + "replace": false, + "values": [ + "mineralogy:schist" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/stones/schist/brick.json b/src/main/resources/data/mineralogy/tags/item/stones/schist/brick.json index 9e7adbfbf..fc9085b03 100644 --- a/src/main/resources/data/mineralogy/tags/item/stones/schist/brick.json +++ b/src/main/resources/data/mineralogy/tags/item/stones/schist/brick.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:schist_brick" - ] + "replace": false, + "values": [ + "mineralogy:schist_brick" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/stones/schist/smooth.json b/src/main/resources/data/mineralogy/tags/item/stones/schist/smooth.json index 35372ad18..909bf8736 100644 --- a/src/main/resources/data/mineralogy/tags/item/stones/schist/smooth.json +++ b/src/main/resources/data/mineralogy/tags/item/stones/schist/smooth.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:schist_smooth" - ] + "replace": false, + "values": [ + "mineralogy:schist_smooth" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/stones/schist/smooth_brick.json b/src/main/resources/data/mineralogy/tags/item/stones/schist/smooth_brick.json index b1eaa31df..2c5fef98b 100644 --- a/src/main/resources/data/mineralogy/tags/item/stones/schist/smooth_brick.json +++ b/src/main/resources/data/mineralogy/tags/item/stones/schist/smooth_brick.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:schist_smooth_brick" - ] + "replace": false, + "values": [ + "mineralogy:schist_smooth_brick" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/stones/scoria.json b/src/main/resources/data/mineralogy/tags/item/stones/scoria.json index 51d04b13d..064d4d35b 100644 --- a/src/main/resources/data/mineralogy/tags/item/stones/scoria.json +++ b/src/main/resources/data/mineralogy/tags/item/stones/scoria.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:scoria" - ] + "replace": false, + "values": [ + "mineralogy:scoria" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/stones/scoria/brick.json b/src/main/resources/data/mineralogy/tags/item/stones/scoria/brick.json index d752ece67..e9b5259e7 100644 --- a/src/main/resources/data/mineralogy/tags/item/stones/scoria/brick.json +++ b/src/main/resources/data/mineralogy/tags/item/stones/scoria/brick.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:scoria_brick" - ] + "replace": false, + "values": [ + "mineralogy:scoria_brick" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/stones/scoria/smooth.json b/src/main/resources/data/mineralogy/tags/item/stones/scoria/smooth.json index 72faf39b1..4868f7e4d 100644 --- a/src/main/resources/data/mineralogy/tags/item/stones/scoria/smooth.json +++ b/src/main/resources/data/mineralogy/tags/item/stones/scoria/smooth.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:scoria_smooth" - ] + "replace": false, + "values": [ + "mineralogy:scoria_smooth" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/stones/scoria/smooth_brick.json b/src/main/resources/data/mineralogy/tags/item/stones/scoria/smooth_brick.json index 3d375e806..ebe08dc1c 100644 --- a/src/main/resources/data/mineralogy/tags/item/stones/scoria/smooth_brick.json +++ b/src/main/resources/data/mineralogy/tags/item/stones/scoria/smooth_brick.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:scoria_smooth_brick" - ] + "replace": false, + "values": [ + "mineralogy:scoria_smooth_brick" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/stones/shale.json b/src/main/resources/data/mineralogy/tags/item/stones/shale.json index e95cbccee..f5bb0657a 100644 --- a/src/main/resources/data/mineralogy/tags/item/stones/shale.json +++ b/src/main/resources/data/mineralogy/tags/item/stones/shale.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:shale" - ] + "replace": false, + "values": [ + "mineralogy:shale" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/stones/shale/brick.json b/src/main/resources/data/mineralogy/tags/item/stones/shale/brick.json index 645bac6d1..fa80fcdf2 100644 --- a/src/main/resources/data/mineralogy/tags/item/stones/shale/brick.json +++ b/src/main/resources/data/mineralogy/tags/item/stones/shale/brick.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:shale_brick" - ] + "replace": false, + "values": [ + "mineralogy:shale_brick" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/stones/shale/smooth.json b/src/main/resources/data/mineralogy/tags/item/stones/shale/smooth.json index c0ac17bed..6459ae55c 100644 --- a/src/main/resources/data/mineralogy/tags/item/stones/shale/smooth.json +++ b/src/main/resources/data/mineralogy/tags/item/stones/shale/smooth.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:shale_smooth" - ] + "replace": false, + "values": [ + "mineralogy:shale_smooth" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/stones/shale/smooth_brick.json b/src/main/resources/data/mineralogy/tags/item/stones/shale/smooth_brick.json index f87e41f64..91555bf03 100644 --- a/src/main/resources/data/mineralogy/tags/item/stones/shale/smooth_brick.json +++ b/src/main/resources/data/mineralogy/tags/item/stones/shale/smooth_brick.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:shale_smooth_brick" - ] + "replace": false, + "values": [ + "mineralogy:shale_smooth_brick" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/stones/siltstone.json b/src/main/resources/data/mineralogy/tags/item/stones/siltstone.json index 105f43a4d..d09f8782d 100644 --- a/src/main/resources/data/mineralogy/tags/item/stones/siltstone.json +++ b/src/main/resources/data/mineralogy/tags/item/stones/siltstone.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:siltstone" - ] + "replace": false, + "values": [ + "mineralogy:siltstone" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/stones/siltstone/brick.json b/src/main/resources/data/mineralogy/tags/item/stones/siltstone/brick.json index e156e2851..4938dfb4b 100644 --- a/src/main/resources/data/mineralogy/tags/item/stones/siltstone/brick.json +++ b/src/main/resources/data/mineralogy/tags/item/stones/siltstone/brick.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:siltstone_brick" - ] + "replace": false, + "values": [ + "mineralogy:siltstone_brick" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/stones/siltstone/smooth.json b/src/main/resources/data/mineralogy/tags/item/stones/siltstone/smooth.json index 40a652aba..c9102dbd7 100644 --- a/src/main/resources/data/mineralogy/tags/item/stones/siltstone/smooth.json +++ b/src/main/resources/data/mineralogy/tags/item/stones/siltstone/smooth.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:siltstone_smooth" - ] + "replace": false, + "values": [ + "mineralogy:siltstone_smooth" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/stones/siltstone/smooth_brick.json b/src/main/resources/data/mineralogy/tags/item/stones/siltstone/smooth_brick.json index 3ace16070..6a1503d2d 100644 --- a/src/main/resources/data/mineralogy/tags/item/stones/siltstone/smooth_brick.json +++ b/src/main/resources/data/mineralogy/tags/item/stones/siltstone/smooth_brick.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:siltstone_smooth_brick" - ] + "replace": false, + "values": [ + "mineralogy:siltstone_smooth_brick" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/stones/slate.json b/src/main/resources/data/mineralogy/tags/item/stones/slate.json index 75a410d88..a9a6c28e5 100644 --- a/src/main/resources/data/mineralogy/tags/item/stones/slate.json +++ b/src/main/resources/data/mineralogy/tags/item/stones/slate.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:slate" - ] + "replace": false, + "values": [ + "mineralogy:slate" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/stones/slate/brick.json b/src/main/resources/data/mineralogy/tags/item/stones/slate/brick.json index 8d291b1f2..615cf2cc3 100644 --- a/src/main/resources/data/mineralogy/tags/item/stones/slate/brick.json +++ b/src/main/resources/data/mineralogy/tags/item/stones/slate/brick.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:slate_brick" - ] + "replace": false, + "values": [ + "mineralogy:slate_brick" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/stones/slate/smooth.json b/src/main/resources/data/mineralogy/tags/item/stones/slate/smooth.json index ead7f959d..00d738b2e 100644 --- a/src/main/resources/data/mineralogy/tags/item/stones/slate/smooth.json +++ b/src/main/resources/data/mineralogy/tags/item/stones/slate/smooth.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:slate_smooth" - ] + "replace": false, + "values": [ + "mineralogy:slate_smooth" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/stones/slate/smooth_brick.json b/src/main/resources/data/mineralogy/tags/item/stones/slate/smooth_brick.json index 50301895c..2296b997b 100644 --- a/src/main/resources/data/mineralogy/tags/item/stones/slate/smooth_brick.json +++ b/src/main/resources/data/mineralogy/tags/item/stones/slate/smooth_brick.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:slate_smooth_brick" - ] + "replace": false, + "values": [ + "mineralogy:slate_smooth_brick" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/stones/tuff.json b/src/main/resources/data/mineralogy/tags/item/stones/tuff.json index 922156e16..0273bebcd 100644 --- a/src/main/resources/data/mineralogy/tags/item/stones/tuff.json +++ b/src/main/resources/data/mineralogy/tags/item/stones/tuff.json @@ -1,7 +1,7 @@ { - "replace": false, - "values": [ - "mineralogy:tuff", - "minecraft:tuff" - ] + "replace": false, + "values": [ + "mineralogy:tuff", + "minecraft:tuff" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/stones/tuff/brick.json b/src/main/resources/data/mineralogy/tags/item/stones/tuff/brick.json index b0dea8145..790052d80 100644 --- a/src/main/resources/data/mineralogy/tags/item/stones/tuff/brick.json +++ b/src/main/resources/data/mineralogy/tags/item/stones/tuff/brick.json @@ -1,7 +1,7 @@ { - "replace": false, - "values": [ - "mineralogy:tuff_brick", - "minecraft:tuff_bricks" - ] + "replace": false, + "values": [ + "mineralogy:tuff_brick", + "minecraft:tuff_bricks" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/stones/tuff/smooth.json b/src/main/resources/data/mineralogy/tags/item/stones/tuff/smooth.json index 4911690bc..dfc79bb9c 100644 --- a/src/main/resources/data/mineralogy/tags/item/stones/tuff/smooth.json +++ b/src/main/resources/data/mineralogy/tags/item/stones/tuff/smooth.json @@ -1,7 +1,7 @@ { - "replace": false, - "values": [ - "mineralogy:tuff_smooth", - "minecraft:polished_tuff" - ] + "replace": false, + "values": [ + "mineralogy:tuff_smooth", + "minecraft:polished_tuff" + ] } diff --git a/src/main/resources/data/mineralogy/tags/item/stones/tuff/smooth_brick.json b/src/main/resources/data/mineralogy/tags/item/stones/tuff/smooth_brick.json index db7ed6370..08fc4afec 100644 --- a/src/main/resources/data/mineralogy/tags/item/stones/tuff/smooth_brick.json +++ b/src/main/resources/data/mineralogy/tags/item/stones/tuff/smooth_brick.json @@ -1,6 +1,6 @@ { - "replace": false, - "values": [ - "mineralogy:tuff_smooth_brick" - ] + "replace": false, + "values": [ + "mineralogy:tuff_smooth_brick" + ] } diff --git a/src/main/resources/mineralogy.mixins.json b/src/main/resources/mineralogy.mixins.json new file mode 100644 index 000000000..1cea839a1 --- /dev/null +++ b/src/main/resources/mineralogy.mixins.json @@ -0,0 +1,18 @@ +{ + "required": true, + "minVersion": "0.8.7", + "package": "zone.moddev.mc.mineralogy.mixin", + "compatibilityLevel": "JAVA_21", + "mixins": [ + "BlockStateDataAccessor", + "BlockStateDataMixin", + "CommonHooksMixin", + "OreSpawnEarlyTagCompatibilityMixin", + "ReloadableServerResourcesMixin", + "SimpleRegionStorageMixin", + "WorldGenRegionMixin" + ], + "injectors": { + "defaultRequire": 1 + } +} diff --git a/src/main/resources/pack.mcmeta b/src/main/resources/pack.mcmeta index 5a311b7a7..19a9303d6 100644 --- a/src/main/resources/pack.mcmeta +++ b/src/main/resources/pack.mcmeta @@ -1,6 +1,10 @@ { "pack": { "description": "mineralogy resources", - "pack_format": 34 + "max_format": 94, + "min_format": [ + 94, + 1 + ] } } diff --git a/src/oilCompatibilityTest/java/zone/moddev/mc/mineralogy/fixture/HistoricalOilCompatibilityProbe.java b/src/oilCompatibilityTest/java/zone/moddev/mc/mineralogy/fixture/HistoricalOilCompatibilityProbe.java index bebf816ef..634d28288 100644 --- a/src/oilCompatibilityTest/java/zone/moddev/mc/mineralogy/fixture/HistoricalOilCompatibilityProbe.java +++ b/src/oilCompatibilityTest/java/zone/moddev/mc/mineralogy/fixture/HistoricalOilCompatibilityProbe.java @@ -7,7 +7,8 @@ import net.minecraft.core.registries.Registries; import net.minecraft.core.registries.BuiltInRegistries; -import net.minecraft.resources.ResourceLocation; +import net.minecraft.resources.Identifier; +import net.minecraft.resources.ResourceKey; import net.minecraft.tags.TagKey; import net.minecraft.world.item.BucketItem; import net.minecraft.world.item.Item; @@ -58,12 +59,13 @@ public final class HistoricalOilCompatibilityProbe { () -> new BaseFlowingFluid.Flowing(PROPERTIES)); private static final DeferredHolder BLOCK = BLOCKS.register("crude_oil", () -> new LiquidBlock(source(), - BlockBehaviour.Properties.of().mapColor(MapColor.WATER).replaceable() - .noCollission().strength(100.0F).noLootTable().liquid() + blockProperties(BlockBehaviour.Properties.of().mapColor(MapColor.WATER).replaceable(), "crude_oil") + .noCollision().strength(100.0F).noLootTable().liquid() .pushReaction(PushReaction.DESTROY))); private static final DeferredHolder BUCKET = ITEMS.register("crude_oil_bucket", () -> new BucketItem(source(), - new Item.Properties().craftRemainder(Items.BUCKET).stacksTo(1))); + itemProperties(new Item.Properties(), "crude_oil_bucket") + .craftRemainder(Items.BUCKET).stacksTo(1))); public HistoricalOilCompatibilityProbe(IEventBus modBus) { FLUID_TYPES.register(modBus); @@ -79,9 +81,9 @@ private void serverStarted(ServerStartedEvent event) { Item mineralogyBucket = requireItem("mineralogy", "crude_oil_bucket"); Item historicalBucket = requireItem(MODID, "crude_oil_bucket"); TagKey oilTag = TagKey.create(Registries.FLUID, - ResourceLocation.fromNamespaceAndPath("c", "crude_oil")); + Identifier.fromNamespaceAndPath("c", "crude_oil")); TagKey bucketTag = TagKey.create(Registries.ITEM, - ResourceLocation.fromNamespaceAndPath("c", "buckets/crude_oil")); + Identifier.fromNamespaceAndPath("c", "buckets/crude_oil")); boolean distinctFluids = mineralogy != historical; boolean distinctBuckets = mineralogyBucket != historicalBucket; @@ -113,8 +115,8 @@ private void serverStarted(ServerStartedEvent event) { } private static Fluid requireFluid(String namespace, String path) { - Fluid result = BuiltInRegistries.FLUID.get( - ResourceLocation.fromNamespaceAndPath(namespace, path)); + Fluid result = BuiltInRegistries.FLUID.getValue( + Identifier.fromNamespaceAndPath(namespace, path)); if (result == null) { throw new IllegalStateException("Missing fluid " + namespace + ':' + path); } @@ -122,14 +124,24 @@ private static Fluid requireFluid(String namespace, String path) { } private static Item requireItem(String namespace, String path) { - Item result = BuiltInRegistries.ITEM.get( - ResourceLocation.fromNamespaceAndPath(namespace, path)); + Item result = BuiltInRegistries.ITEM.getValue( + Identifier.fromNamespaceAndPath(namespace, path)); if (result == null) { throw new IllegalStateException("Missing item " + namespace + ':' + path); } return result; } + private static BlockBehaviour.Properties blockProperties(BlockBehaviour.Properties properties, String path) { + return properties.setId(ResourceKey.create(Registries.BLOCK, + Identifier.fromNamespaceAndPath(MODID, path))); + } + + private static Item.Properties itemProperties(Item.Properties properties, String path) { + return properties.setId(ResourceKey.create(Registries.ITEM, + Identifier.fromNamespaceAndPath(MODID, path))); + } + private static FlowingFluid source() { return SOURCE.get(); } diff --git a/src/oilCompatibilityTest/resources/META-INF/neoforge.mods.toml b/src/oilCompatibilityTest/resources/META-INF/neoforge.mods.toml index f4c98ea8d..17233d5ba 100644 --- a/src/oilCompatibilityTest/resources/META-INF/neoforge.mods.toml +++ b/src/oilCompatibilityTest/resources/META-INF/neoforge.mods.toml @@ -1,5 +1,3 @@ -modLoader="javafml" -loaderVersion="[3,)" license="LGPL-2.1-only" [[mods]] @@ -11,13 +9,13 @@ description='''Disposable runtime fixture for Mineralogy crude-oil coexistence v [[dependencies.poweradvantage]] modId="neoforge" type="required" -versionRange="[21.1.247,21.2)" +versionRange="[21.11.45,21.12)" ordering="NONE" side="BOTH" [[dependencies.poweradvantage]] modId="mineralogy" type="required" -versionRange="[6.1.2.121012]" +versionRange="[6.1.2.121112]" ordering="AFTER" side="BOTH" diff --git a/src/recipeIntegrationTest/java/zone/moddev/mc/mineralogy/fixture/RecipeIntegrationProbe.java b/src/recipeIntegrationTest/java/zone/moddev/mc/mineralogy/fixture/RecipeIntegrationProbe.java index 7f22d8df1..a44bfa4a2 100644 --- a/src/recipeIntegrationTest/java/zone/moddev/mc/mineralogy/fixture/RecipeIntegrationProbe.java +++ b/src/recipeIntegrationTest/java/zone/moddev/mc/mineralogy/fixture/RecipeIntegrationProbe.java @@ -11,19 +11,20 @@ import net.minecraft.core.BlockPos; import net.minecraft.core.registries.BuiltInRegistries; -import net.minecraft.resources.ResourceLocation; +import net.minecraft.resources.Identifier; +import net.minecraft.resources.ResourceKey; +import net.minecraft.core.registries.Registries; import net.minecraft.tags.BlockTags; -import net.minecraft.tags.TagKey; import net.minecraft.world.item.Item; import net.minecraft.world.item.ItemStack; import net.minecraft.world.item.Items; import net.minecraft.world.item.crafting.CraftingInput; import net.minecraft.world.item.crafting.CraftingRecipe; -import net.minecraft.world.item.crafting.Ingredient; import net.minecraft.world.item.crafting.RecipeHolder; +import net.minecraft.world.item.crafting.Recipe; import net.minecraft.world.item.crafting.SingleRecipeInput; import net.minecraft.world.item.crafting.StonecutterRecipe; -import net.minecraft.world.level.Level; +import net.minecraft.server.level.ServerLevel; import net.minecraft.world.level.block.Block; import net.minecraft.world.level.block.Blocks; import net.minecraft.world.level.block.entity.BlockEntity; @@ -63,28 +64,12 @@ private void serverStarted(ServerStartedEvent event) { boolean enabled = Boolean.parseBoolean(System.getProperty( "mineralogy.recipeProbe.equivalence", "true")); String phase = System.getProperty("mineralogy.recipeProbe.phase", "single"); - Level level = event.getServer().overworld(); + ServerLevel level = event.getServer().overworld(); Item basalt = requireItem("mineralogy", "basalt"); - if (enabled) { - TagKey union = TagKey.create(net.minecraft.core.registries.Registries.ITEM, - ResourceLocation.fromNamespaceAndPath("mineralogy", "cobblestone_equivalents")); - Item andesite = requireItem("mineralogy", "andesite"); - require(andesite.builtInRegistryHolder().is(union), - "mineralogy:andesite is absent from the rebound cobblestone union tag"); - require(Ingredient.of(union).test(new ItemStack(andesite)), - "a fresh union-tag ingredient rejected mineralogy:andesite"); - } - verifyMiningTags(); for (String name : RECIPE_NAMES) { CraftingRecipe recipe = requireCraftingRecipe(level, name); - if (enabled && "lever".equals(name)) { - Item andesite = requireItem("mineralogy", "andesite"); - require(recipe.getIngredients().stream() - .anyMatch(ingredient -> ingredient.test(new ItemStack(andesite))), - "loaded lever ingredients reject mineralogy:andesite after tag rebinding"); - } if (enabled) { for (String rockName : LEGACY_ROCKS) { Item rock = requireItem("mineralogy", rockName); @@ -118,6 +103,7 @@ private void serverStarted(ServerStartedEvent event) { name + " produced count " + result.getCount()); } + verifyStoneSpear(level, enabled); verifySlabRoutes(level); verifyFurnaceStateTransitions(level, phase); verifyAdvancements(event); @@ -132,12 +118,16 @@ private static void verifyMiningTags() { int ironToolBlocks = 0; int stoneToolBlocks = 0; for (Block block : BuiltInRegistries.BLOCK) { - ResourceLocation id = BuiltInRegistries.BLOCK.getKey(block); - if (id == null || !"mineralogy".equals(id.getNamespace())) continue; + Identifier id = BuiltInRegistries.BLOCK.getKey(block); + if (id == null || !"mineralogy".equals(id.getNamespace())) { + continue; + } mineralogyBlocks++; String path = id.getPath(); if ("crude_oil".equals(path) || "rocksaltlamp".equals(path) - || "rocksaltstreetlamp".equals(path)) continue; + || "rocksaltstreetlamp".equals(path)) { + continue; + } expectedPickaxeBlocks++; if (!block.defaultBlockState().is(BlockTags.MINEABLE_WITH_PICKAXE)) { missingPickaxeTags.add(id.toString()); @@ -145,11 +135,16 @@ private static void verifyMiningTags() { if (block.defaultBlockState().is(BlockTags.NEEDS_IRON_TOOL)) ironToolBlocks++; if (block.defaultBlockState().is(BlockTags.NEEDS_STONE_TOOL)) stoneToolBlocks++; } - require(mineralogyBlocks == 1136, "expected 1136 registered Mineralogy blocks, found " + mineralogyBlocks); - require(expectedPickaxeBlocks == 1133, "expected 1133 pickaxe-mined Mineralogy blocks, found " + expectedPickaxeBlocks); - require(missingPickaxeTags.isEmpty(), "Mineralogy blocks missing minecraft:mineable/pickaxe: " + missingPickaxeTags); - require(ironToolBlocks == 123, "expected 123 iron-tool Mineralogy blocks, found " + ironToolBlocks); - require(stoneToolBlocks == 329, "expected 329 stone-tool Mineralogy blocks, found " + stoneToolBlocks); + require(mineralogyBlocks == 1136, + "expected 1136 registered Mineralogy blocks, found " + mineralogyBlocks); + require(expectedPickaxeBlocks == 1133, + "expected 1133 pickaxe-mined Mineralogy blocks, found " + expectedPickaxeBlocks); + require(missingPickaxeTags.isEmpty(), + "Mineralogy blocks missing minecraft:mineable/pickaxe: " + missingPickaxeTags); + require(ironToolBlocks == 123, + "expected 123 iron-tool Mineralogy blocks, found " + ironToolBlocks); + require(stoneToolBlocks == 329, + "expected 329 stone-tool Mineralogy blocks, found " + stoneToolBlocks); require(requireBlock("mineralogy", "basalt").defaultBlockState().is(BlockTags.NEEDS_IRON_TOOL), "raw basalt lost its iron-tool tier"); require(requireBlock("mineralogy", "basalt_smooth").defaultBlockState().is(BlockTags.NEEDS_IRON_TOOL), @@ -165,8 +160,8 @@ private static void verifyMiningTags() { } } - private static void verifyFurnaceStateTransitions(Level level, String phase) { - BlockPos pos = new BlockPos(0, level.getMinBuildHeight() + 10, 0); + private static void verifyFurnaceStateTransitions(ServerLevel level, String phase) { + BlockPos pos = new BlockPos(0, level.getMinY() + 10, 0); Block unlit = requireBlock("mineralogy", "basalt_furnace"); Block lit = requireBlock("mineralogy", "lit_basalt_furnace"); @@ -191,13 +186,16 @@ private static void verifyFurnaceStateTransitions(Level level, String phase) { level.setBlockAndUpdate(pos, unlit.defaultBlockState()); try { BlockEntity initial = level.getBlockEntity(pos); - require(initial instanceof TileEntityRockFurnace, "basalt furnace did not create its block entity"); + require(initial instanceof TileEntityRockFurnace, + "basalt furnace did not create its block entity"); TileEntityRockFurnace furnace = (TileEntityRockFurnace) initial; furnace.setItem(1, new ItemStack(Items.COAL)); + RockFurnace.setState(true, level, pos); assertFurnaceState(level, pos, lit, furnace, "lit"); require(furnace.getItem(1).is(Items.COAL) && furnace.getItem(1).getCount() == 1, "lit transition lost the furnace fuel"); + RockFurnace.setState(false, level, pos); assertFurnaceState(level, pos, unlit, furnace, "unlit"); require(furnace.getItem(1).is(Items.COAL) && furnace.getItem(1).getCount() == 1, @@ -207,21 +205,59 @@ private static void verifyFurnaceStateTransitions(Level level, String phase) { } } - private static void assertFurnaceState(Level level, BlockPos pos, Block expectedBlock, + private static void assertFurnaceState(ServerLevel level, BlockPos pos, Block expectedBlock, TileEntityRockFurnace expectedEntity, String transition) { - require(level.getBlockState(pos).is(expectedBlock), transition + " transition selected the wrong furnace block"); - require(level.getBlockEntity(pos) == expectedEntity, transition + " transition replaced the furnace block entity"); + require(level.getBlockState(pos).is(expectedBlock), + transition + " transition selected the wrong furnace block"); + require(level.getBlockEntity(pos) == expectedEntity, + transition + " transition replaced the furnace block entity"); require(expectedEntity.getBlockState().equals(level.getBlockState(pos)), transition + " transition left a stale block-entity state"); } - private static void verifySlabRoutes(Level level) { + private static void verifyStoneSpear(ServerLevel level, boolean enabled) { + CraftingRecipe recipe = requireCraftingRecipe(level, "stone_spear"); + Item expected = requireItem("minecraft", "stone_spear"); + if (enabled) { + for (String rockName : LEGACY_ROCKS) { + assertStoneSpearInput(level, recipe, requireItem("mineralogy", rockName), expected); + } + for (Item nativeRock : new Item[] { Blocks.BASALT.asItem(), Blocks.TUFF.asItem(), + Blocks.ANDESITE.asItem(), Blocks.DIORITE.asItem(), + Blocks.GRANITE.asItem() }) { + assertStoneSpearInput(level, recipe, nativeRock, expected); + } + } else { + require(!recipe.matches(stoneSpearInput(requireItem("mineralogy", "basalt")), level), + "stone spear accepted ordinary Mineralogy basalt while disabled"); + assertStoneSpearInput(level, recipe, Blocks.COBBLESTONE.asItem(), expected); + assertStoneSpearInput(level, recipe, requireItem("mineralogy", "chert"), expected); + assertStoneSpearInput(level, recipe, requireItem("mineralogy", "pumice"), expected); + } + } + + private static void assertStoneSpearInput(ServerLevel level, CraftingRecipe recipe, + Item material, Item expected) { + CraftingInput input = stoneSpearInput(material); + require(recipe.matches(input, level), "stone spear rejected " + + BuiltInRegistries.ITEM.getKey(material)); + ItemStack output = recipe.assemble(input, level.registryAccess()); + require(output.getItem() == expected && output.getCount() == 1, + "stone spear produced the wrong result"); + } + + private static CraftingInput stoneSpearInput(Item material) { + return shaped(new String[] { " X", " # ", "# " }, + Map.of('X', material, '#', Items.STICK)); + } + + private static void verifySlabRoutes(ServerLevel level) { for (String family : new String[] { "andesite", "diorite", "granite" }) { Item nativeRock = requireItem("minecraft", family); CraftingRecipe slab = requireCraftingRecipe(level, family + "_slab"); CraftingInput slabInput = shaped(new String[] { "###" }, Map.of('#', nativeRock)); require(slab.matches(slabInput, level), family + " slab override does not match"); - require(ResourceLocation.fromNamespaceAndPath("mineralogy", family + "_slab").equals( + require(Identifier.fromNamespaceAndPath("mineralogy", family + "_slab").equals( BuiltInRegistries.ITEM.getKey(slab.assemble(slabInput, level.registryAccess()).getItem())), family + " slab override did not produce Mineralogy's slab"); @@ -251,7 +287,7 @@ private static void verifySlabRoutes(Level level) { verifyTuffSlabRoutes(level); } - private static void verifyTuffSlabRoutes(Level level) { + private static void verifyTuffSlabRoutes(ServerLevel level) { String[][] forms = { { "tuff", "tuff_slab", "tuff_slab" }, { "polished_tuff", "polished_tuff_slab", "tuff_smooth_slab" }, @@ -290,7 +326,7 @@ private static void verifyTuffSlabRoutes(Level level) { assertNativeTuffStonecutting(level); } - private static void assertNativeTuffCrafting(Level level) { + private static void assertNativeTuffCrafting(ServerLevel level) { assertCrafting(level, "polished_tuff", shapeless(Blocks.TUFF.asItem(), Blocks.SAND.asItem()), Blocks.POLISHED_TUFF.asItem(), 1); assertCrafting(level, "tuff_stairs", shaped(new String[] { "# ", "## ", "###" }, @@ -313,7 +349,7 @@ private static void assertNativeTuffCrafting(Level level) { Map.of('#', Blocks.TUFF_BRICK_SLAB.asItem())), Blocks.CHISELED_TUFF_BRICKS.asItem(), 1); } - private static void assertNativeTuffStonecutting(Level level) { + private static void assertNativeTuffStonecutting(ServerLevel level) { Object[][] routes = { { "chiseled_tuff_from_tuff_stonecutting", Blocks.TUFF, Blocks.CHISELED_TUFF }, { "chiseled_tuff_bricks_from_tuff_stonecutting", Blocks.TUFF, Blocks.CHISELED_TUFF_BRICKS }, @@ -342,14 +378,13 @@ private static void assertNativeTuffStonecutting(Level level) { } } - private static void assertStonecutting(Level level, String name, Item source, Item expected) { + private static void assertStonecutting(ServerLevel level, String name, Item source, Item expected) { assertStonecutting(level, name, source, expected, 2); } - private static void assertStonecutting(Level level, String name, Item source, + private static void assertStonecutting(ServerLevel level, String name, Item source, Item expected, int expectedCount) { - RecipeHolder holder = level.getRecipeManager().byKey( - ResourceLocation.fromNamespaceAndPath("minecraft", name)).orElseThrow(() -> + RecipeHolder holder = level.recipeAccess().byKey(recipeKey("minecraft", name)).orElseThrow(() -> new IllegalStateException("Missing loaded stonecutting recipe minecraft:" + name)); require(holder.value() instanceof StonecutterRecipe, "minecraft:" + name + " is not a stonecutting recipe"); @@ -361,7 +396,7 @@ private static void assertStonecutting(Level level, String name, Item source, name + " produced the wrong stonecutting result"); } - private static void assertCrafting(Level level, String name, CraftingInput input, + private static void assertCrafting(ServerLevel level, String name, CraftingInput input, Item expected, int expectedCount) { CraftingRecipe recipe = requireCraftingRecipe(level, name); require(recipe.matches(input, level), name + " does not match its native inputs"); @@ -370,7 +405,7 @@ private static void assertCrafting(Level level, String name, CraftingInput input name + " produced the wrong native result"); } - private static void assertBridge(Level level, String name, Item source, Item expected) { + private static void assertBridge(ServerLevel level, String name, Item source, Item expected) { CraftingRecipe recipe = requireCraftingRecipe(level, name, "mineralogy"); CraftingInput input = shapeless(source); require(recipe.matches(input, level), name + " does not match its exact source"); @@ -383,33 +418,41 @@ private static void verifyAdvancements(ServerStartedEvent event) { for (String name : RECIPE_NAMES) { if (isTrimTemplateRecipe(name)) continue; String category = advancementCategory(name); - ResourceLocation id = ResourceLocation.fromNamespaceAndPath( + Identifier id = Identifier.fromNamespaceAndPath( "minecraft", "recipes/" + category + "/" + name); require(event.getServer().getAdvancements().get(id) != null, "Missing loaded advancement " + id); } + Identifier spear = Identifier.fromNamespaceAndPath( + "minecraft", "recipes/combat/stone_spear"); + require(event.getServer().getAdvancements().get(spear) != null, + "Missing loaded advancement " + spear); for (String id : new String[] { "basalt_slab", "basalt_smooth_stairs", "basalt_furnace", "basalt_relief_blank", "basalt_relief_pickaxe" }) { - ResourceLocation advancement = ResourceLocation.fromNamespaceAndPath( + Identifier advancement = Identifier.fromNamespaceAndPath( "mineralogy", "recipes/" + id); require(event.getServer().getAdvancements().get(advancement) != null, "Missing progressive advancement " + advancement); } } - private static CraftingRecipe requireCraftingRecipe(Level level, String name) { + private static CraftingRecipe requireCraftingRecipe(ServerLevel level, String name) { return requireCraftingRecipe(level, name, "minecraft"); } - private static CraftingRecipe requireCraftingRecipe(Level level, String name, String namespace) { - RecipeHolder holder = level.getRecipeManager().byKey( - ResourceLocation.fromNamespaceAndPath(namespace, name)).orElseThrow(() -> + private static CraftingRecipe requireCraftingRecipe(ServerLevel level, String name, String namespace) { + RecipeHolder holder = level.recipeAccess().byKey(recipeKey(namespace, name)).orElseThrow(() -> new IllegalStateException("Missing loaded recipe " + namespace + ':' + name)); require(holder.value() instanceof CraftingRecipe, namespace + ':' + name + " is not a crafting recipe"); return (CraftingRecipe) holder.value(); } + private static ResourceKey> recipeKey(String namespace, String name) { + return ResourceKey.create(Registries.RECIPE, + Identifier.fromNamespaceAndPath(namespace, name)); + } + private static CraftingInput inventory(String name, Item rock) { if ("mossy_cobblestone_from_vine".equals(name)) return shapeless(rock, Blocks.VINE.asItem()); if ("mossy_cobblestone_from_moss_block".equals(name)) { @@ -520,22 +563,22 @@ private static List emptyGrid() { } private static Item requireItem(String namespace, String path) { - Item result = BuiltInRegistries.ITEM.get( - ResourceLocation.fromNamespaceAndPath(namespace, path)); + Item result = BuiltInRegistries.ITEM.getValue( + Identifier.fromNamespaceAndPath(namespace, path)); if (result == null) throw new IllegalStateException("Missing item " + namespace + ':' + path); return result; } private static Block requireBlock(String namespace, String path) { - ResourceLocation id = ResourceLocation.fromNamespaceAndPath(namespace, path); - Block block = BuiltInRegistries.BLOCK.get(id); + Identifier id = Identifier.fromNamespaceAndPath(namespace, path); + Block block = BuiltInRegistries.BLOCK.getValue(id); require(block != null && block != Blocks.AIR, "missing block " + id); return block; } - private static ResourceLocation expectedOutput(String name) { + private static Identifier expectedOutput(String name) { String path = name.startsWith("mossy_cobblestone_from_") ? "mossy_cobblestone" : name; - return ResourceLocation.fromNamespaceAndPath("minecraft", path); + return Identifier.fromNamespaceAndPath("minecraft", path); } private static int expectedCount(String name) { @@ -560,6 +603,7 @@ private static void writeMarker(boolean enabled, String phase) { + "equivalence_enabled=" + enabled + "\n" + "phase=" + phase + "\n" + "covered_vanilla_recipes=19\n" + + "native_stone_spear_verified=true\n" + "legacy_rock_families=27\n" + "native_rock_aliases=5\n" + "pickaxe_mining_blocks_verified=1133\n" diff --git a/src/recipeIntegrationTest/java/zone/moddev/mc/mineralogy/recipeprobe/RegionPaletteAudit.java b/src/recipeIntegrationTest/java/zone/moddev/mc/mineralogy/recipeprobe/RegionPaletteAudit.java index 58c3634f6..0febe819f 100644 --- a/src/recipeIntegrationTest/java/zone/moddev/mc/mineralogy/recipeprobe/RegionPaletteAudit.java +++ b/src/recipeIntegrationTest/java/zone/moddev/mc/mineralogy/recipeprobe/RegionPaletteAudit.java @@ -126,16 +126,16 @@ private static InputStream decompress(int compression, InputStream input) throws private static void auditChunk(CompoundTag chunk, Audit audit) { audit.chunks++; - ListTag sections = chunk.getList("sections", Tag.TAG_COMPOUND); + ListTag sections = chunk.getListOrEmpty("sections"); Map sectionsByY = new HashMap<>(); boolean containsOil = false; for (int sectionIndex = 0; sectionIndex < sections.size(); sectionIndex++) { - CompoundTag section = sections.getCompound(sectionIndex); - sectionsByY.put((int) section.getByte("Y"), section); - CompoundTag blockStates = section.getCompound("block_states"); - ListTag palette = blockStates.getList("palette", Tag.TAG_COMPOUND); + CompoundTag section = sections.getCompoundOrEmpty(sectionIndex); + sectionsByY.put((int) section.getByteOr("Y", (byte) 0), section); + CompoundTag blockStates = section.getCompoundOrEmpty("block_states"); + ListTag palette = blockStates.getListOrEmpty("palette"); for (int paletteIndex = 0; paletteIndex < palette.size(); paletteIndex++) { - String name = palette.getCompound(paletteIndex).getString("Name"); + String name = palette.getCompoundOrEmpty(paletteIndex).getStringOr("Name", ""); containsOil |= "mineralogy:crude_oil".equals(name); audit.paletteEntries++; if (audit.targets.containsKey(name)) audit.targets.merge(name, 1L, Long::sum); @@ -143,28 +143,28 @@ private static void auditChunk(CompoundTag chunk, Audit audit) { } } if (containsOil) auditOilCover(sectionsByY, audit); - auditRockFurnaces(chunk.getList("block_entities", Tag.TAG_COMPOUND), audit); + auditRockFurnaces(chunk.getListOrEmpty("block_entities"), audit); } private static void auditRockFurnaces(ListTag blockEntities, Audit audit) { for (int index = 0; index < blockEntities.size(); index++) { - CompoundTag blockEntity = blockEntities.getCompound(index); - if (!"mineralogy:rock_furnace".equals(blockEntity.getString("id"))) continue; + CompoundTag blockEntity = blockEntities.getCompoundOrEmpty(index); + if (!"mineralogy:rock_furnace".equals(blockEntity.getStringOr("id", ""))) continue; Map furnace = new LinkedHashMap<>(); - furnace.put("id", blockEntity.getString("id")); - furnace.put("x", blockEntity.getInt("x")); - furnace.put("y", blockEntity.getInt("y")); - furnace.put("z", blockEntity.getInt("z")); + furnace.put("id", blockEntity.getStringOr("id", "")); + furnace.put("x", blockEntity.getIntOr("x", 0)); + furnace.put("y", blockEntity.getIntOr("y", 0)); + furnace.put("z", blockEntity.getIntOr("z", 0)); furnace.put("burn_time", numericValue(blockEntity, "BurnTime", "burn_time")); furnace.put("cook_time", numericValue(blockEntity, "CookTime", "cook_time")); furnace.put("cook_total", numericValue(blockEntity, "CookTimeTotal", "cook_time_total")); List> items = new ArrayList<>(); - ListTag itemTags = blockEntity.getList("Items", Tag.TAG_COMPOUND); + ListTag itemTags = blockEntity.getListOrEmpty("Items"); for (int itemIndex = 0; itemIndex < itemTags.size(); itemIndex++) { - CompoundTag item = itemTags.getCompound(itemIndex); + CompoundTag item = itemTags.getCompoundOrEmpty(itemIndex); Map value = new LinkedHashMap<>(); value.put("slot", numericValue(item, "Slot", "slot")); - value.put("id", item.getString("id")); + value.put("id", item.getStringOr("id", "")); value.put("count", numericValue(item, "Count", "count")); items.add(value); } @@ -174,13 +174,13 @@ private static void auditRockFurnaces(ListTag blockEntities, Audit audit) { } private static int numericValue(CompoundTag tag, String legacyName, String currentName) { - return tag.contains(currentName, Tag.TAG_ANY_NUMERIC) ? tag.getInt(currentName) : tag.getInt(legacyName); + return tag.contains(currentName) ? tag.getIntOr(currentName, 0) : tag.getIntOr(legacyName, 0); } private static void auditOilCover(Map sectionsByY, Audit audit) { Map decoded = new HashMap<>(); for (Map.Entry entry : sectionsByY.entrySet()) { - decoded.put(entry.getKey(), decodeSection(entry.getValue().getCompound("block_states"))); + decoded.put(entry.getKey(), decodeSection(entry.getValue().getCompoundOrEmpty("block_states"))); } Map highestOilByColumn = new HashMap<>(); for (Map.Entry entry : decoded.entrySet()) { @@ -214,21 +214,21 @@ && isSolidCover(blockAt(decoded, localX, topOilY + 2, localZ))) { } private static String[] decodeSection(CompoundTag blockStates) { - ListTag palette = blockStates.getList("palette", Tag.TAG_COMPOUND); + ListTag palette = blockStates.getListOrEmpty("palette"); String[] names = new String[palette.size()]; for (int index = 0; index < palette.size(); index++) { - names[index] = palette.getCompound(index).getString("Name"); + names[index] = palette.getCompoundOrEmpty(index).getStringOr("Name", ""); } String[] states = new String[4096]; if (names.length == 0) return states; - if (names.length == 1 || !blockStates.contains("data", Tag.TAG_LONG_ARRAY)) { + if (names.length == 1 || !blockStates.contains("data")) { java.util.Arrays.fill(states, names[0]); return states; } int bits = Math.max(4, 32 - Integer.numberOfLeadingZeros(names.length - 1)); int valuesPerLong = 64 / bits; long mask = (1L << bits) - 1L; - long[] data = blockStates.getLongArray("data"); + long[] data = blockStates.getLongArray("data").orElseGet(() -> new long[0]); for (int index = 0; index < states.length; index++) { int longIndex = index / valuesPerLong; if (longIndex >= data.length) break; diff --git a/src/recipeIntegrationTest/resources/META-INF/neoforge.mods.toml b/src/recipeIntegrationTest/resources/META-INF/neoforge.mods.toml index beba3ce0a..a69660d4e 100644 --- a/src/recipeIntegrationTest/resources/META-INF/neoforge.mods.toml +++ b/src/recipeIntegrationTest/resources/META-INF/neoforge.mods.toml @@ -1,5 +1,3 @@ -modLoader="javafml" -loaderVersion="[3,)" license="LGPL-2.1-only" [[mods]] @@ -10,13 +8,13 @@ displayName="Mineralogy Recipe Integration Probe" [[dependencies.mineralogyrecipeprobe]] modId="neoforge" type="required" -versionRange="[21.1.247,21.2)" +versionRange="[21.11.45,21.12)" ordering="NONE" side="BOTH" [[dependencies.mineralogyrecipeprobe]] modId="mineralogy" type="required" -versionRange="[6.1.2.121012]" +versionRange="[6.1.2.121112]" ordering="AFTER" side="BOTH" diff --git a/src/test/java/zone/moddev/mc/mineralogy/ConfigurationAndMigrationTest.java b/src/test/java/zone/moddev/mc/mineralogy/ConfigurationAndMigrationTest.java index 73c01201c..ebc2124c5 100644 --- a/src/test/java/zone/moddev/mc/mineralogy/ConfigurationAndMigrationTest.java +++ b/src/test/java/zone/moddev/mc/mineralogy/ConfigurationAndMigrationTest.java @@ -8,6 +8,7 @@ import zone.moddev.mc.mineralogy.migration.LegacyOreConfigMigrator; import java.io.File; +import java.io.InputStream; import java.io.Reader; import java.nio.charset.StandardCharsets; import java.nio.file.Files; @@ -333,9 +334,12 @@ public void documentationExportIsMissingOnlyAndCopiesExactProvider() throws Exce Files.delete(output.resolve("PLAYER_GUIDE.md")); assertEquals(1, DocumentationExporter.exportMissing(output)); assertArrayEquals(edited, Files.readAllBytes(readme)); - assertArrayEquals(Files.readAllBytes(new File( - "src/main/resources/data/mineralogy/orespawn/provider.json").toPath()), - Files.readAllBytes(output.resolve("examples/mineralogy-provider.json"))); + try (InputStream bundledProvider = ConfigurationAndMigrationTest.class.getResourceAsStream( + "/data/mineralogy/orespawn/provider.json")) { + assertNotNull(bundledProvider); + assertArrayEquals(bundledProvider.readAllBytes(), + Files.readAllBytes(output.resolve("examples/mineralogy-provider.json"))); + } try (Stream files = Files.walk(output)) { assertFalse(files.anyMatch(path -> path.getFileName().toString().endsWith(".tmp"))); } diff --git a/src/test/java/zone/moddev/mc/mineralogy/GameplayContractTest.java b/src/test/java/zone/moddev/mc/mineralogy/GameplayContractTest.java index df946e240..d3b1139e7 100644 --- a/src/test/java/zone/moddev/mc/mineralogy/GameplayContractTest.java +++ b/src/test/java/zone/moddev/mc/mineralogy/GameplayContractTest.java @@ -8,6 +8,9 @@ import zone.moddev.mc.mineralogy.blocks.RockSlab; import zone.moddev.mc.mineralogy.blocks.RockStairs; import zone.moddev.mc.mineralogy.blocks.RockWall; +import zone.moddev.mc.mineralogy.init.MineralogyItemGroups; +import net.neoforged.bus.api.SubscribeEvent; +import net.neoforged.neoforge.event.BuildCreativeModeTabContentsEvent; import java.io.File; import java.nio.charset.StandardCharsets; @@ -21,7 +24,7 @@ public class GameplayContractTest { @Test public void reliefOpenCentreDoesNotCullItsSupportingBlockFace() throws Exception { String relief = text("src/main/java/zone/moddev/mc/mineralogy/blocks/RockRelief.java"); - assertTrue(relief.contains("VoxelShape getOcclusionShape(BlockState state, BlockGetter world, BlockPos pos)")); + assertTrue(relief.contains("VoxelShape getOcclusionShape(BlockState state)")); assertTrue(relief.contains("VoxelShape getVisualShape(BlockState state, BlockGetter world, BlockPos pos,")); assertTrue(relief.contains("return Shapes.empty();")); } @@ -52,7 +55,12 @@ public void creativePolicyUsesReliefBeforeSlabAndFiveGroups() throws Exception { assertTrue(groups.contains("CreativeModeTabs.INGREDIENTS")); assertTrue(groups.contains(".withSearchBar()")); assertTrue(groups.contains("BuildCreativeModeTabContentsEvent")); + assertTrue(groups.replace("\r", "").contains( + "@SubscribeEvent\n\tpublic static void buildTabContents(BuildCreativeModeTabContentsEvent event)")); assertTrue(groups.contains("Registries.CREATIVE_MODE_TAB")); + assertNotNull(MineralogyItemGroups.class + .getDeclaredMethod("buildTabContents", BuildCreativeModeTabContentsEvent.class) + .getAnnotation(SubscribeEvent.class)); CreativeTabPolicy grouped = new CreativeTabPolicy(true); assertTrue(grouped.groupTabsByType()); @@ -82,12 +90,14 @@ public void dropsSlabsAndFurnacePersistenceFollowAcceptedSemantics() throws Exce assertTrue(furnace.contains("Block block = state.getBlock()")); assertTrue(furnace.contains("getBurnModifier()")); assertTrue(furnace.contains("ContainerHelper.loadAllItems")); - String furnaceBlock = text("src/main/java/zone/moddev/mc/mineralogy/blocks/RockFurnace.java"); - assertTrue(furnaceBlock.contains("BlockState newState = newBlock.defaultBlockState()")); - assertTrue(furnaceBlock.contains("try {")); - assertTrue(furnaceBlock.contains("finally {")); - assertTrue(furnaceBlock.contains("tileEntity.setBlockState(newState)")); - assertTrue(furnaceBlock.contains("world.setBlockEntity(tileEntity)")); + String furnaceBlock = text("src/main/java/zone/moddev/mc/mineralogy/blocks/RockFurnace.java"); + assertTrue(furnaceBlock.contains("BlockState newState = newBlock.defaultBlockState()")); + assertTrue(furnaceBlock.contains("try {")); + assertTrue(furnaceBlock.contains("finally {")); + assertTrue(furnaceBlock.contains("tileEntity.setBlockState(newState)")); + assertTrue(furnaceBlock.contains("world.setBlockEntity(tileEntity)")); + assertTrue(furnaceBlock.contains("shouldChangedStateKeepBlockEntity")); + assertTrue(furnaceBlock.contains("previousState.getBlock() instanceof RockFurnace")); String lamp = text("src/main/java/zone/moddev/mc/mineralogy/blocks/RockSaltLamp.java"); assertTrue(lamp.contains("facing.getAxis().isVertical()")); @@ -98,16 +108,16 @@ public void dropsSlabsAndFurnacePersistenceFollowAcceptedSemantics() throws Exce public void cobblestonePolicyReappliesAfterReloadAndKeepsSpecialCases() throws Exception { String policy = text("src/main/java/zone/moddev/mc/mineralogy/compat/CobblestoneTagPolicy.java"); assertTrue(policy.contains("onTagsUpdated(TagsUpdatedEvent event)")); - assertTrue(policy.contains("onServerAboutToStart(ServerAboutToStartEvent event)")); - assertTrue(policy.contains("event.getRegistryAccess()")); + assertTrue(policy.contains("event.getLookupProvider()")); assertTrue(policy.contains("event.shouldUpdateStaticData()")); assertTrue(policy.contains("MaterialData.allIncludingRockSalt()")); assertTrue(policy.contains("\"stones/\" + material.id()")); assertTrue(policy.contains("rawRockHolders(blockRegistry")); assertTrue(policy.contains("rawRockHolders(itemRegistry")); assertTrue(policy.contains("\"chert\", \"pumice\"")); - assertTrue(policy.contains("blockRegistry.bindTags(blockTags)")); - assertTrue(policy.contains("itemRegistry.bindTags(itemTags)")); + assertTrue(policy.contains("HolderSet.Named tag")); + assertTrue(policy.contains("tag.bind(replacement)")); + assertTrue(policy.contains("reference.bindTags(tags)")); assertTrue(policy.contains("STONE_CRAFTING_MATERIALS")); assertTrue(policy.contains("STONE_TOOL_MATERIALS")); assertTrue(policy.contains("COMMON_COBBLESTONES")); @@ -116,17 +126,27 @@ public void cobblestonePolicyReappliesAfterReloadAndKeepsSpecialCases() throws E assertTrue(policy.contains("TagKey.create")); assertFalse(policy.contains("java.lang.reflect")); assertFalse(policy.contains("Ingredient.invalidateAll()")); - assertTrue(policy.contains("invalidateRecipeIngredients")); - assertTrue(policy.contains("ingredient.itemStacks = null")); - assertTrue(policy.contains("ingredient.stackingIds = null")); String accessTransformer = text("src/main/resources/META-INF/accesstransformer.cfg"); - assertTrue(accessTransformer.contains("Ingredient itemStacks")); - assertTrue(accessTransformer.contains("Ingredient stackingIds")); + assertTrue(accessTransformer.contains("Holder$Reference bindTags")); + assertTrue(accessTransformer.contains("HolderSet$Named bind")); String metadata = text("src/main/resources/META-INF/neoforge.mods.toml"); assertTrue(metadata.contains("[[accessTransformers]]")); assertTrue(metadata.contains("file=\"META-INF/accesstransformer.cfg\"")); } + @Test + public void forge61ConstructionReceivesStableIdsBeforeRegistration() throws Exception { + String helper = text("src/main/java/zone/moddev/mc/mineralogy/init/RegistrationProperties.java"); + assertTrue(helper.contains("properties.setId(ResourceKey.create(Registries.BLOCK")); + assertTrue(helper.contains("properties.setId(ResourceKey.create(Registries.ITEM")); + String fluids = text("src/main/java/zone/moddev/mc/mineralogy/init/MineralogyFluids.java"); + assertTrue(fluids.contains("RegistrationProperties.block(")); + assertTrue(fluids.contains("RegistrationProperties.item(")); + String items = text("src/main/java/zone/moddev/mc/mineralogy/init/Items.java"); + assertTrue(items.contains("RegistrationProperties.item(new Item.Properties(), name.getPath())")); + assertTrue(items.contains(".useBlockDescriptionPrefix()")); + } + @Test public void optionalGunpowderDustsCannotCollapseToTwoIngredients() throws Exception { String generator = text("scripts/generate-recipes.ps1"); @@ -137,7 +157,7 @@ public void optionalGunpowderDustsCannotCollapseToTwoIngredients() throws Except } @Test - public void neoforge20UsesModelBlockLayersAndNativeFlowingFluidRendering() throws Exception { + public void neoForge2111UsesModelBlockLayersAndNativeFlowingFluidRendering() throws Exception { String fluid = text("src/main/java/zone/moddev/mc/mineralogy/init/MineralogyFluids.java"); assertTrue(fluid.contains("BaseFlowingFluid.Source")); assertTrue(fluid.contains("BaseFlowingFluid.Flowing")); @@ -145,9 +165,13 @@ public void neoforge20UsesModelBlockLayersAndNativeFlowingFluidRendering() throw assertTrue(fluid.contains("MineralogyBucketItem")); assertTrue(fluid.contains("blocks/crude_oil_still")); assertTrue(fluid.contains("blocks/crude_oil_flow")); + String bucketModel = text("src/main/resources/assets/mineralogy/models/item/crude_oil_bucket.json"); + assertTrue(bucketModel.contains("\"parent\": \"minecraft:item/generated\"")); + assertTrue(bucketModel.contains("\"layer0\": \"mineralogy:items/crude_oil_bucket\"")); + assertFalse(bucketModel.contains("forge:fluid_container")); String client = text("src/main/java/zone/moddev/mc/mineralogy/client/ClientSetup.java"); assertTrue(client.contains("ItemBlockRenderTypes.setRenderLayer(MineralogyFluids.CRUDE_OIL.get()")); - assertTrue(client.contains("RenderType.translucent()")); + assertTrue(client.contains("ChunkSectionLayer.TRANSLUCENT")); assertFalse(client.contains("setRenderLayer(block")); for (String model : new String[] { "pane_n", "pane_ne", "pane_ns", "pane_nse", "pane_nsew", "rocksaltlamp", "rocksaltlamp_down", "rocksaltlamp_wall", "rocksaltstreetlamp" }) { @@ -167,9 +191,8 @@ public void legacyWorldConversionPreservesIndexedChunksAndFurnaces() throws Exce assertTrue(hook.contains("rewriteLegacyRockFurnaceTileEntities")); assertTrue(hook.contains("tileEntity.putString(\"id\", ROCK_FURNACE_TILE_ENTITY)")); - String transformer = text("src/main/resources/coremods/mineralogy_legacy_world_fix.js"); - assertTrue(transformer.contains("mineralogy_legacy_chunk_data")); - assertTrue(transformer.contains("net.minecraft.world.level.chunk.storage.ChunkStorage")); + String transformer = text("src/main/java/zone/moddev/mc/mineralogy/mixin/SimpleRegionStorageMixin.java"); + assertTrue(transformer.contains("SimpleRegionStorage.class")); assertTrue(transformer.contains("prepareLegacyChunk")); assertTrue(transformer.contains("finalizeLegacyChunk")); @@ -187,16 +210,22 @@ public void legacyWorldConversionPreservesIndexedChunksAndFurnaces() throws Exce public void legacyFlatteningUsesTheExpandedArrayAndReinstallsTheSelectedWorldMapping() throws Exception { String hook = text("src/main/java/zone/moddev/mc/mineralogy/patching/LegacyWorldDataHook.java"); assertTrue(hook.contains("expandFlatteningTable(highestStateId + 1)")); - assertTrue(hook.contains("type.getComponentType() != Dynamic.class")); - assertTrue(hook.contains("legacyStates[stateId] = BlockStateData.parse(stateNbt)")); - assertTrue(hook.contains("unsafe.putObjectVolatile(base, offset, expanded)")); + assertTrue(hook.contains("BlockStateDataAccessor.mineralogy$getLegacyStateMap()")); + assertTrue(hook.contains("legacyStates[stateId] = new Dynamic<>(NbtOps.INSTANCE")); + assertTrue(hook.contains("NbtUtils.writeBlockState(legacyState(block, meta))")); assertTrue(hook.contains("captureLegacyLevelData(CompoundTag root,")); assertTrue(hook.contains("LevelStorageSource.LevelDirectory levelDirectory)")); - assertTrue(hook.contains("root.getCompound(\"FML\")")); - assertTrue(hook.contains("root.getCompound(\"fml\")")); - String transformer = text("src/main/resources/coremods/mineralogy_legacy_world_fix.js"); + assertTrue(hook.contains("root.getCompoundOrEmpty(\"FML\")")); + assertTrue(hook.contains("root.getCompoundOrEmpty(\"fml\")")); + String transformer = text("src/main/java/zone/moddev/mc/mineralogy/mixin/CommonHooksMixin.java"); assertTrue(transformer.contains("net.neoforged.neoforge.common.CommonHooks")); - assertTrue(transformer.contains("net/minecraft/world/level/storage/LevelStorageSource$LevelDirectory")); + assertTrue(transformer.contains("LevelStorageSource.LevelDirectory")); + String tableMixin = text("src/main/java/zone/moddev/mc/mineralogy/mixin/BlockStateDataMixin.java"); + assertTrue(tableMixin.contains("Arrays.copyOf(MAP, 65_536)")); + assertTrue(tableMixin.contains("Arrays.copyOf(BLOCK_DEFAULTS, 4_096)")); + assertTrue(new File("src/main/resources/mineralogy.mixins.json").isFile()); + assertFalse(new File("src/main/resources/META-INF/coremods.json").exists()); + assertFalse(new File("src/main/resources/coremods/mineralogy_legacy_world_fix.js").exists()); assertTrue(hook.contains("writeSidecar(levelDat.getParentFile(), blocks)")); assertTrue(hook.contains("prepareLegacyWorld(levelDat)")); diff --git a/src/test/java/zone/moddev/mc/mineralogy/LocalizationQualityTest.java b/src/test/java/zone/moddev/mc/mineralogy/LocalizationQualityTest.java index 7a6cf7fd3..c588dd7a2 100644 --- a/src/test/java/zone/moddev/mc/mineralogy/LocalizationQualityTest.java +++ b/src/test/java/zone/moddev/mc/mineralogy/LocalizationQualityTest.java @@ -23,7 +23,7 @@ import static org.junit.Assert.*; -/** Quality policy for the reviewed 1.21.1 JSON localization inventory. */ +/** Quality policy for the reviewed 1.21.11 JSON localization inventory. */ public class LocalizationQualityTest { private static final File LANG_DIR = new File("src/main/resources/assets/mineralogy/lang"); private static final Set ENGLISH_LOCALES = new HashSet(Arrays.asList( diff --git a/src/test/java/zone/moddev/mc/mineralogy/NativeRecipeManagerTest.java b/src/test/java/zone/moddev/mc/mineralogy/NativeRecipeManagerTest.java index 8d24a1384..0a1232e6f 100644 --- a/src/test/java/zone/moddev/mc/mineralogy/NativeRecipeManagerTest.java +++ b/src/test/java/zone/moddev/mc/mineralogy/NativeRecipeManagerTest.java @@ -96,8 +96,7 @@ private static void assertSlabConversion(String name, String source, String resu JsonObject recipe = json(new File(MINERALOGY_RECIPE_ROOT, name + ".json")); assertEquals(name, "minecraft:crafting_shapeless", recipe.get("type").getAsString()); assertEquals(name, 1, recipe.getAsJsonArray("ingredients").size()); - assertEquals(name, source, recipe.getAsJsonArray("ingredients").get(0) - .getAsJsonObject().get("item").getAsString()); + assertEquals(name, source, recipe.getAsJsonArray("ingredients").get(0).getAsString()); assertEquals(name, result, recipe.getAsJsonObject("result").get("id").getAsString()); assertEquals(name, 1, resultCount(recipe)); assertFalse(name, recipe.has("neoforge:conditions")); @@ -121,6 +120,7 @@ private static boolean containsIngredient(JsonElement element, String wanted) { } return false; } + if (element.isJsonPrimitive()) return wanted.equals(element.getAsString()); if (!element.isJsonObject()) return false; JsonObject object = element.getAsJsonObject(); if (wanted.startsWith("#") && object.has("tag") diff --git a/src/test/java/zone/moddev/mc/mineralogy/ResourceContractTest.java b/src/test/java/zone/moddev/mc/mineralogy/ResourceContractTest.java index 81382cdcb..c73028f50 100644 --- a/src/test/java/zone/moddev/mc/mineralogy/ResourceContractTest.java +++ b/src/test/java/zone/moddev/mc/mineralogy/ResourceContractTest.java @@ -4,7 +4,7 @@ import com.google.gson.JsonElement; import com.google.gson.JsonObject; import com.google.gson.JsonParser; -import net.minecraft.resources.ResourceLocation; +import net.minecraft.resources.Identifier; import org.junit.Test; import java.io.File; @@ -49,8 +49,10 @@ public void providerUsesOreSpawnFourAndOwnsNoVanillaGeneration() throws Exceptio .getAsJsonObject("mineralogy:rock/minecraft/tuff").get("block").getAsString()); assertFalse(text.contains("metadata")); assertTrue(text.contains("minecraft:deepslate")); - assertTrue(text.contains("minecraft:stone_ore_replaceables")); - assertTrue(text.contains("minecraft:deepslate_ore_replaceables")); + assertTrue(text.contains("\"host_blocks\"")); + assertFalse("NeoForge 21.11 common setup must not resolve unbound host tags", + text.contains("minecraft:stone_ore_replaceables") + || text.contains("minecraft:deepslate_ore_replaceables")); for (Map.Entry entry : provider.getAsJsonObject("rocks").entrySet()) { JsonObject rock = entry.getValue().getAsJsonObject(); assertEquals(entry.getKey(), -64, rock.get("min_y").getAsInt()); @@ -139,8 +141,8 @@ public void advancementsUseMinecraft1206HolderSetPredicateSchema() throws Except File minecraft = new File(ROOT, "data/minecraft/advancement/recipes"); for (File file : jsonFiles(minecraft)) { JsonObject wrapper = json(file); - if (wrapper.has("advancements")) { - for (JsonElement branch : wrapper.getAsJsonArray("advancements")) { + if (wrapper.has("forge:conditional")) { + for (JsonElement branch : wrapper.getAsJsonArray("forge:conditional")) { assertInventoryPredicates(file.getPath(), branch.getAsJsonObject()); } } else { @@ -263,9 +265,9 @@ public void nativeRockAliasesDriveRecipesAndAdvancementsWithoutStealingVanillaFo assertEquals("minecraft:crafting_shapeless", vanillaPolished.get("type").getAsString()); assertEquals("minecraft:" + family, vanillaPolished.getAsJsonArray("ingredients") - .get(0).getAsJsonObject().get("item").getAsString()); + .get(0).getAsString()); assertEquals("minecraft:sand", vanillaPolished.getAsJsonArray("ingredients") - .get(1).getAsJsonObject().get("item").getAsString()); + .get(1).getAsString()); assertEquals("minecraft:polished_" + family, vanillaPolished .getAsJsonObject("result").get("id").getAsString()); assertEquals(1, vanillaPolished.getAsJsonObject("result").get("count").getAsInt()); @@ -296,6 +298,56 @@ public void nativeRockAliasesDriveRecipesAndAdvancementsWithoutStealingVanillaFo assertFalse(allResources.contains("minecraft:polished_basalt_slab")); } + @Test + public void nativeEquivalentRockFamiliesReuseMinecraftTextures() throws Exception { + File models = new File(ROOT, "assets/mineralogy/models/block"); + StringBuilder contents = new StringBuilder(); + for (File model : jsonFiles(models)) { + contents.append(new String(Files.readAllBytes(model.toPath()), StandardCharsets.UTF_8)); + } + String allModels = contents.toString(); + + for (String family : Arrays.asList("andesite", "diorite", "granite")) { + assertEquals(family, 26, occurrences(allModels, + "\"minecraft:block/" + family + "\"")); + assertEquals(family, 83, occurrences(allModels, + "\"minecraft:block/polished_" + family + "\"")); + assertEquals(family, 0, occurrences(allModels, + "\"mineralogy:blocks/" + family + "\"")); + assertEquals(family, 0, occurrences(allModels, + "\"mineralogy:blocks/" + family + "_smooth\"")); + } + assertEquals(13, occurrences(allModels, "\"minecraft:block/basalt_top\"")); + assertEquals(14, occurrences(allModels, "\"minecraft:block/basalt_side\"")); + assertEquals(13, occurrences(allModels, + "\"minecraft:block/polished_basalt_top\"")); + assertEquals(171, occurrences(allModels, + "\"minecraft:block/polished_basalt_side\"")); + assertEquals(0, occurrences(allModels, "\"mineralogy:blocks/basalt\"")); + assertEquals(0, occurrences(allModels, "\"mineralogy:blocks/basalt_smooth\"")); + + assertEquals(26, occurrences(allModels, "\"minecraft:block/tuff\"")); + assertEquals(83, occurrences(allModels, "\"minecraft:block/polished_tuff\"")); + assertEquals(28, occurrences(allModels, "\"minecraft:block/tuff_bricks\"")); + assertEquals(0, occurrences(allModels, "\"mineralogy:blocks/tuff\"")); + assertEquals(0, occurrences(allModels, "\"mineralogy:blocks/tuff_smooth\"")); + assertEquals(0, occurrences(allModels, "\"mineralogy:blocks/tuff_brick_top\"")); + assertEquals(0, occurrences(allModels, "\"mineralogy:blocks/tuff_brick_side\"")); + + // Smooth brick has no native tuff equivalent, and every furnace retains its + // Mineralogy-specific front while inheriting the matching native family surface. + assertEquals(15, occurrences(allModels, + "\"mineralogy:blocks/tuff_smooth_brick_top\"")); + assertEquals(13, occurrences(allModels, + "\"mineralogy:blocks/tuff_smooth_brick_side\"")); + for (String finish : Arrays.asList("", "_smooth", "_brick", "_smooth_brick")) { + assertEquals(finish, 1, occurrences(allModels, + "\"mineralogy:blocks/tuff" + finish + "_furnace_front_off\"")); + assertEquals(finish, 1, occurrences(allModels, + "\"mineralogy:blocks/tuff" + finish + "_furnace_front_on\"")); + } + } + @Test public void acceptedRecipeDetailsArePresent() throws Exception { File recipes = new File(ROOT, "data/mineralogy/recipe"); @@ -303,28 +355,31 @@ public void acceptedRecipeDetailsArePresent() throws Exception { .getAsJsonObject("result").get("count").getAsInt()); assertEquals(2, json(new File(recipes, "gypsum.json")).getAsJsonArray("pattern").size()); assertEquals("minecraft:charcoal", json(new File(recipes, "gunpowder_from_charcoal.json")) - .getAsJsonArray("ingredients").get(0).getAsJsonObject().get("item").getAsString()); + .getAsJsonArray("ingredients").get(0).getAsString()); assertFalse(new File(recipes, "gunpowder_from_coal.json").exists()); assertGunpowderRecipe(recipes, "gunpowder_from_sugar", null); assertGunpowderRecipe(recipes, "gunpowder_from_charcoal", null); assertGunpowderRecipe(recipes, "gunpowder_from_carbon_dust", "c:dusts/carbon"); assertGunpowderRecipe(recipes, "gunpowder_from_coal_dust", "c:dusts/coal"); - assertEquals("mineralogy:stones/basalt", json(new File(recipes, "basalt_slab.json")) - .getAsJsonObject("key").getAsJsonObject("x").get("tag").getAsString()); + assertEquals("#mineralogy:stones/basalt", json(new File(recipes, "basalt_slab.json")) + .getAsJsonObject("key").get("x").getAsString()); assertEquals("mineralogy:basalt", json(new File(recipes, "basalt_raw_slab_recombination.json")) .getAsJsonObject("result").get("id").getAsString()); - assertEquals("c:sands", json(new File(recipes, "basalt_brick_block_polishing.json")) - .getAsJsonArray("ingredients").get(1).getAsJsonObject().get("tag").getAsString()); + assertEquals("#c:sands", json(new File(recipes, "basalt_brick_block_polishing.json")) + .getAsJsonArray("ingredients").get(1).getAsString()); JsonObject furnace = json(new File(recipes, "basalt_furnace.json")); - assertEquals("mineralogy:slabs/basalt", furnace.getAsJsonObject("key") - .getAsJsonObject("x").get("tag").getAsString()); + assertEquals("#mineralogy:slabs/basalt", furnace.getAsJsonObject("key") + .get("x").getAsString()); assertEquals("minecraft:furnace", furnace.getAsJsonObject("key") - .getAsJsonObject("y").get("item").getAsString()); + .get("y").getAsString()); assertFalse(new File(recipes, "basalt_furnace_from_rock.json").exists()); JsonObject vanillaFurnace = json(new File(ROOT, "data/minecraft/recipe/furnace.json")); - assertEquals("mineralogy:stone_crafting_materials", vanillaFurnace.getAsJsonObject("key") - .getAsJsonObject("#").get("tag").getAsString()); + assertEquals("#mineralogy:stone_crafting_materials", vanillaFurnace.getAsJsonObject("key") + .get("#").getAsString()); assertTrue(new File(ROOT, "data/minecraft/recipe/stone_pickaxe.json").isFile()); + assertFalse(new File(ROOT, "data/minecraft/recipe/stone_spear.json").exists()); + assertFalse(new File(ROOT, + "data/minecraft/advancement/recipes/combat/stone_spear.json").exists()); assertEquals("#c:cobblestones", json(new File(ROOT, "data/minecraft/tags/item/stone_crafting_materials.json")) .getAsJsonArray("values").get(0).getAsString()); @@ -337,6 +392,18 @@ public void acceptedRecipeDetailsArePresent() throws Exception { "mineralogy:chert", "mineralogy:pumice"); assertTagValues(new File(ROOT, "data/forge/tags/item/cobblestone.json"), "#c:cobblestones"); + assertTagValues(new File(ROOT, "data/c/tags/item/paper.json"), + "minecraft:paper"); + assertTagValues(new File(ROOT, "data/forge/tags/item/paper.json"), + "#c:paper"); + assertTagValues(new File(ROOT, "data/c/tags/item/lamps/rock_salt.json"), + "mineralogy:rocksaltlamp"); + assertTagValues(new File(ROOT, "data/forge/tags/item/lamps/rock_salt.json"), + "#c:lamps/rock_salt"); + assertEquals("#c:paper", json(new File(recipes, "drywall.json")) + .getAsJsonObject("key").get("p").getAsString()); + assertEquals("#c:lamps/rock_salt", json(new File(recipes, "rocksaltstreetlamp.json")) + .getAsJsonObject("key").get("x").getAsString()); assertFalse(new File(ROOT, "data/mineralogy/tags/item/vanilla_furnace_materials.json").exists()); for (String moss : Arrays.asList("mossy_cobblestone_from_vine", "mossy_cobblestone_from_moss_block")) { @@ -344,11 +411,11 @@ public void acceptedRecipeDetailsArePresent() throws Exception { assertEquals(moss, "mossy_cobblestone", recipe.get("group").getAsString()); } assertEquals("minecraft:red_dye", json(new File(recipes, "drywall_red.json")) - .getAsJsonArray("ingredients").get(1).getAsJsonObject().get("item").getAsString()); + .getAsJsonArray("ingredients").get(1).getAsString()); assertEquals("minecraft:green_dye", json(new File(recipes, "drywall_green.json")) - .getAsJsonArray("ingredients").get(1).getAsJsonObject().get("item").getAsString()); + .getAsJsonArray("ingredients").get(1).getAsString()); assertEquals("minecraft:yellow_dye", json(new File(recipes, "drywall_yellow.json")) - .getAsJsonArray("ingredients").get(1).getAsJsonObject().get("item").getAsString()); + .getAsJsonArray("ingredients").get(1).getAsString()); } @Test @@ -389,9 +456,13 @@ public void allSeventeenLocalesHaveOrdered938KeyParity() throws Exception { @Test public void neoForge211ResourcesRetainNativeWallsTagsAndPackFormats() throws Exception { JsonObject pack = json(new File(ROOT, "pack.mcmeta")); - assertEquals(34, pack.getAsJsonObject("pack").get("pack_format").getAsInt()); - assertFalse(pack.getAsJsonObject("pack").has("forge:resource_pack_format")); - assertFalse(pack.getAsJsonObject("pack").has("forge:data_pack_format")); + assertEquals(94, pack.getAsJsonObject("pack").get("max_format").getAsInt()); + JsonArray dataMinimum = pack.getAsJsonObject("pack").getAsJsonArray("min_format"); + assertEquals(94, dataMinimum.get(0).getAsInt()); + assertEquals(1, dataMinimum.get(1).getAsInt()); + JsonObject resourcePack = json(new File("resourcepack/x16/pack.mcmeta")); + assertEquals(75, resourcePack.getAsJsonObject("pack").get("min_format").getAsInt()); + assertEquals(75, resourcePack.getAsJsonObject("pack").get("max_format").getAsInt()); File blockstates = new File(ROOT, "assets/mineralogy/blockstates"); File[] wallStates = blockstates.listFiles((dir, name) -> name.endsWith("_wall.json")); @@ -449,12 +520,12 @@ public void neoForge211ResourcesRetainNativeWallsTagsAndPackFormats() throws Exc assertEquals(id, "#S#", enabled.getAsJsonArray("pattern").get(0).getAsString()); assertEquals(id, "#C#", enabled.getAsJsonArray("pattern").get(1).getAsString()); assertEquals(id, "###", enabled.getAsJsonArray("pattern").get(2).getAsString()); - assertEquals(id, "mineralogy:cobblestone_equivalents", - enabled.getAsJsonObject("key").getAsJsonObject("C").get("tag").getAsString()); + assertEquals(id, "#mineralogy:cobblestone_equivalents", + enabled.getAsJsonObject("key").get("C").getAsString()); assertEquals(id, "minecraft:" + id, - enabled.getAsJsonObject("key").getAsJsonObject("S").get("item").getAsString()); + enabled.getAsJsonObject("key").get("S").getAsString()); assertEquals(id, "minecraft:diamond", - enabled.getAsJsonObject("key").getAsJsonObject("#").get("item").getAsString()); + enabled.getAsJsonObject("key").get("#").getAsString()); assertEquals(id, "minecraft:" + id, enabled.getAsJsonObject("result").get("id").getAsString()); assertEquals(id, 2, enabled.getAsJsonObject("result").get("count").getAsInt()); @@ -501,8 +572,8 @@ public void generatedRecipeAdvancementsDisableTelemetry() throws Exception { assertEquals(21, overrides.size()); for (File file : overrides) { JsonObject wrapper = json(file); - if (wrapper.has("advancements")) { - for (JsonElement branch : wrapper.getAsJsonArray("advancements")) { + if (wrapper.has("forge:conditional")) { + for (JsonElement branch : wrapper.getAsJsonArray("forge:conditional")) { JsonObject advancement = branch.getAsJsonObject(); assertTrue(file.getPath(), advancement.has("sends_telemetry_event")); assertFalse(file.getPath(), advancement.get("sends_telemetry_event").getAsBoolean()); @@ -592,15 +663,16 @@ public void nativeSlabsAndCobblestoneOverridesUseStableConditionalTags() throws @Test public void oilAndBuildMetadataUseStableTargetIdentities() throws Exception { String properties = new String(Files.readAllBytes(new File("gradle.properties").toPath()), StandardCharsets.UTF_8); - assertTrue(properties.contains("mod_version=6.1.2.121012")); - assertTrue(properties.contains("orespawn_curse_file_id=8807135")); + assertTrue(properties.contains("mod_version=6.1.2.121112")); + assertTrue(properties.contains("orespawn_curse_file_id=8809764")); String build = new String(Files.readAllBytes(new File("build.gradle").toPath()), StandardCharsets.UTF_8); assertTrue(build.contains("runtimeOnly(orespawnCoordinate)")); assertTrue(build.contains("https://maven.moddev.zone/releases")); assertTrue(build.contains("CurseMavenOreSpawnFallback")); assertTrue(build.contains("orespawnRelease")); String metadata = new String(Files.readAllBytes(new File(ROOT, "META-INF/neoforge.mods.toml").toPath()), StandardCharsets.UTF_8); - assertTrue(metadata.contains("loaderVersion=\"${loader_version_range}\"")); + assertFalse(metadata.contains("modLoader=")); + assertFalse(metadata.contains("loaderVersion=")); assertTrue(metadata.contains("versionRange=\"${neo_version_range}\"")); assertTrue(metadata.contains("versionRange=\"[4.0.6,5.0.0)\"")); assertTrue(metadata.contains("ordering=\"AFTER\"")); @@ -610,14 +682,14 @@ public void oilAndBuildMetadataUseStableTargetIdentities() throws Exception { "src/main/java/zone/moddev/mc/mineralogy/init/MineralogyFluids.java").toPath()), StandardCharsets.UTF_8); assertTrue(fluidSource.contains("\"flowing_crude_oil\"")); assertTrue(fluidSource.contains("\"crude_oil_bucket\"")); - assertFalse(fluidSource.contains("new ResourceLocation(\"crude_oil\")")); + assertFalse(fluidSource.contains("new Identifier(\"crude_oil\")")); // Power Advantage historically registered its oil in its own namespace. Keep // Mineralogy's registry identity isolated while contributing both fluids to the // shared, non-replacing common tag so a future compatible Power Advantage build can // consume either fluid without a registry collision. - ResourceLocation mineralogyOil = ResourceLocation.tryParse("mineralogy:crude_oil"); - ResourceLocation historicalPowerAdvantageOil = ResourceLocation.tryParse("poweradvantage:crude_oil"); + Identifier mineralogyOil = Identifier.tryParse("mineralogy:crude_oil"); + Identifier historicalPowerAdvantageOil = Identifier.tryParse("poweradvantage:crude_oil"); assertNotEquals(historicalPowerAdvantageOil, mineralogyOil); JsonObject fluidTag = json(new File(ROOT, "data/c/tags/fluid/crude_oil.json")); @@ -648,6 +720,7 @@ private static String criterionItem(JsonObject advancement, String criterion) { } private static void assertInventoryPredicates(String source, JsonObject advancement) { + assertNotNull(source, advancement.getAsJsonObject("criteria")); for (Map.Entry entry : advancement.getAsJsonObject("criteria").entrySet()) { JsonObject criterion = entry.getValue().getAsJsonObject(); if (!"minecraft:inventory_changed".equals(criterion.get("trigger").getAsString())) { @@ -700,11 +773,11 @@ private static void assertRecipeIngredient(String recipeName, String key, String throws Exception { JsonObject recipe = json(new File(ROOT, "data/mineralogy/recipe/" + recipeName + ".json")); - JsonObject ingredient = recipe.has("key") - ? recipe.getAsJsonObject("key").getAsJsonObject("x") - : recipe.getAsJsonArray("ingredients").get(0).getAsJsonObject(); - assertEquals(recipeName, value, ingredient.get(key).getAsString()); - assertEquals(recipeName, 1, ingredient.size()); + JsonElement ingredient = recipe.has("key") + ? recipe.getAsJsonObject("key").get("x") + : recipe.getAsJsonArray("ingredients").get(0); + String expected = "tag".equals(key) ? "#" + value : value; + assertEquals(recipeName, expected, ingredient.getAsString()); } private static void assertAdvancementIngredient(String recipeName, String key, String value) @@ -724,7 +797,7 @@ private static void assertNativeSlabOverride(String recipeName, String source, JsonObject enabled = json(new File(ROOT, "data/minecraft/recipe/" + recipeName + ".json")); assertEquals(recipeName, "minecraft:crafting_shaped", enabled.get("type").getAsString()); assertEquals(recipeName, source, enabled.getAsJsonObject("key") - .getAsJsonObject("#").get("item").getAsString()); + .get("#").getAsString()); assertEquals(recipeName, mineralogyResult, enabled.getAsJsonObject("result").get("id").getAsString()); assertEquals(recipeName, count, @@ -736,7 +809,7 @@ private static void assertNativeStonecuttingOverride(String recipeName, String s JsonObject enabled = json(new File(ROOT, "data/minecraft/recipe/" + recipeName + ".json")); assertEquals(recipeName, "minecraft:stonecutting", enabled.get("type").getAsString()); assertEquals(recipeName, source, - enabled.getAsJsonObject("ingredient").get("item").getAsString()); + enabled.get("ingredient").getAsString()); assertEquals(recipeName, mineralogyResult, enabled.getAsJsonObject("result").get("id").getAsString()); assertEquals(recipeName, 2, @@ -751,7 +824,7 @@ private static void assertNativeSlabConversion(String recipeName, String source, assertEquals(recipeName, "minecraft:crafting_shapeless", recipe.get("type").getAsString()); assertEquals(recipeName, 1, recipe.getAsJsonArray("ingredients").size()); assertEquals(recipeName, source, recipe.getAsJsonArray("ingredients").get(0) - .getAsJsonObject().get("item").getAsString()); + .getAsString()); assertEquals(recipeName, result, recipe.getAsJsonObject("result").get("id").getAsString()); assertEquals(recipeName, 1, recipe.getAsJsonObject("result").get("count").getAsInt()); assertFalse(recipeName, recipe.has("neoforge:conditions")); @@ -841,65 +914,20 @@ private static List jsonFiles(File directory) { return files; } - @Test - public void miningTagsUseSupportedOptionalEntryObjects() throws Exception { - String[] paths = { - "data/minecraft/tags/block/mineable/pickaxe.json", - "data/minecraft/tags/block/needs_iron_tool.json", - "data/minecraft/tags/block/needs_stone_tool.json" - }; - int[] totals = { 1133, 123, 329 }; - int[] optionalTotals = { 1080, 120, 320 }; - assertMiningTagContracts(paths, totals, optionalTotals); - } - private static JsonObject json(File file) throws Exception { try (java.io.Reader reader = Files.newBufferedReader(file.toPath(), StandardCharsets.UTF_8)) { return JsonParser.parseReader(reader).getAsJsonObject(); } } - private static void assertMiningTagContracts(String[] paths, int[] totals, - int[] optionalTotals) throws Exception { - for (int index = 0; index < paths.length; index++) { - JsonObject tag = json(new File(ROOT, paths[index])); - assertFalse(paths[index], tag.has("optional")); - JsonArray values = tag.getAsJsonArray("values"); - assertEquals(paths[index], totals[index], values.size()); - Set ids = new HashSet(); - int optionalEntries = 0; - for (JsonElement value : values) { - String id; - if (value.isJsonObject()) { - JsonObject entry = value.getAsJsonObject(); - assertEquals(paths[index], 2, entry.size()); - assertTrue(paths[index], entry.has("id")); - assertTrue(paths[index], entry.has("required")); - assertFalse(paths[index], entry.get("required").getAsBoolean()); - id = entry.get("id").getAsString(); - assertTrue(paths[index], id.startsWith("mineralogy:")); - optionalEntries++; - } else { - id = value.getAsString(); - } - assertTrue(paths[index] + " duplicate " + id, ids.add(id)); - } - assertEquals(paths[index], optionalTotals[index], optionalEntries); - } - JsonArray pickaxe = json(new File(ROOT, paths[0])).getAsJsonArray("values"); - JsonArray iron = json(new File(ROOT, paths[1])).getAsJsonArray("values"); - assertTrue(pickaxe.contains(JsonParser.parseString("\"mineralogy:basalt\""))); - assertTrue(iron.contains(JsonParser.parseString("\"mineralogy:basalt\""))); - assertTrue(hasOptionalTagEntry(pickaxe, "mineralogy:basalt_smooth")); - assertTrue(hasOptionalTagEntry(iron, "mineralogy:basalt_smooth")); - } - private static boolean hasOptionalTagEntry(JsonArray values, String id) { for (JsonElement value : values) { if (!value.isJsonObject()) continue; JsonObject entry = value.getAsJsonObject(); if (id.equals(entry.get("id").getAsString()) - && !entry.get("required").getAsBoolean()) return true; + && !entry.get("required").getAsBoolean()) { + return true; + } } return false; } @@ -958,4 +986,14 @@ private static boolean containsJava(File directory) { } return false; } + + private static int occurrences(String text, String needle) { + int count = 0; + int index = 0; + while ((index = text.indexOf(needle, index)) >= 0) { + count++; + index += needle.length(); + } + return count; + } } diff --git a/src/test/java/zone/moddev/mc/mineralogy/WorkflowContractTest.java b/src/test/java/zone/moddev/mc/mineralogy/WorkflowContractTest.java index 25b86ece2..e708f8a0e 100644 --- a/src/test/java/zone/moddev/mc/mineralogy/WorkflowContractTest.java +++ b/src/test/java/zone/moddev/mc/mineralogy/WorkflowContractTest.java @@ -19,8 +19,8 @@ public void releaseMetadataIdentifiesTheGenericNeoForgeTarget() throws Exception try (FileInputStream input = new FileInputStream("gradle.properties")) { properties.load(input); } - assertEquals("6.1.2.121012", properties.getProperty("mod_version")); - assertEquals("1.21.1", properties.getProperty("minecraft_version")); + assertEquals("6.1.2.121112", properties.getProperty("mod_version")); + assertEquals("1.21.11", properties.getProperty("minecraft_version")); assertEquals(properties.getProperty("mc_version"), properties.getProperty("minecraft_version")); assertEquals("neoforge", properties.getProperty("loader_name")); assertEquals("2", properties.getProperty("loader_code")); @@ -29,10 +29,12 @@ public void releaseMetadataIdentifiesTheGenericNeoForgeTarget() throws Exception assertEquals("21", properties.getProperty("gradle_java_version")); assertEquals("240974", properties.getProperty("curseforge_project_id")); assertEquals("zone.moddev.mc.mineralogy", properties.getProperty("mod_group")); - assertEquals("4.0.16.121012", properties.getProperty("orespawn_version")); - assertEquals("8807135", properties.getProperty("orespawn_curse_file_id")); - assertEquals("B0659E071633D9EC42A96D9759895DE2F5126C205A4BDBFEE0EB8E3F226D158B", + assertEquals("4.0.16.121112", properties.getProperty("orespawn_version")); + assertEquals("8809764", properties.getProperty("orespawn_curse_file_id")); + assertEquals("F7F2840D11090EC3B6A7A73AD380CFCAC3C034D3C8FCD9914CA1AAD4219E19E9", properties.getProperty("orespawn_sha256")); + String wrapper = text("gradle/wrapper/gradle-wrapper.properties"); + assertTrue(wrapper.contains("gradle-9.2.1-bin.zip")); } @Test @@ -42,7 +44,7 @@ public void ciAndSecurityChecksUsePinnedTargetNativeBuilds() throws Exception { String wrapper = text(".github/workflows/validate-gradle-build.yml"); String staging = text("gradle/stage-orespawn-release.sh"); assertTrue(ci.contains("name: Build, test, and audit")); - assertTrue(ci.contains("master-1.21.1-neo")); + assertTrue(ci.contains("master-1.21.11-neo")); assertTrue(ci.contains("java-version: '21.0.7+6.0.LTS'")); assertTrue(ci.contains("Install exact Java 21")); assertTrue(ci.contains("Cold NeoForge bootstrap")); @@ -83,6 +85,12 @@ public void buildPublishesOnlyThePreparedRemoteBundle() throws Exception { assertTrue(build.contains("def releaseJar = tasks.named('jar', Jar)")); assertTrue(build.contains("preserveFileTimestamps = false")); assertTrue(build.contains("reproducibleFileOrder = true")); + assertTrue(build.contains("filesMatching('META-INF/neoforge.mods.toml')")); + assertTrue(build.contains("from('docs')")); + assertTrue(build.contains("NeoForge 21.11 uses official names")); + assertTrue(build.contains("'zone/moddev/mc/mineralogy/Mineralogy.class'")); + assertTrue(build.contains("928 NeoForge 21.11 item definitions")); + assertTrue(build.contains("assets/mineralogy/items/")); assertTrue(build.contains("def preparedReleaseDir = project.findProperty('preparedReleaseDir')")); assertTrue(build.contains("tasks.register('verifyPreparedReleaseArtifacts')")); assertTrue(build.contains("tasks.withType(PublishToMavenRepository).configureEach")); diff --git a/src/test/java/zone/moddev/mc/mineralogy/compat/CobblestoneTagPolicyTest.java b/src/test/java/zone/moddev/mc/mineralogy/compat/CobblestoneTagPolicyTest.java index e1954e45b..2988c8b83 100644 --- a/src/test/java/zone/moddev/mc/mineralogy/compat/CobblestoneTagPolicyTest.java +++ b/src/test/java/zone/moddev/mc/mineralogy/compat/CobblestoneTagPolicyTest.java @@ -3,84 +3,40 @@ import static org.junit.Assert.assertEquals; import java.util.ArrayList; -import java.util.Collections; -import java.util.IdentityHashMap; import java.util.LinkedHashSet; import java.util.List; -import java.util.Map; import java.util.Set; -import java.lang.reflect.Field; -import net.minecraft.SharedConstants; -import net.minecraft.core.Holder; -import net.minecraft.core.Registry; -import net.minecraft.core.registries.BuiltInRegistries; -import net.minecraft.core.registries.Registries; -import net.minecraft.resources.ResourceLocation; -import net.minecraft.tags.TagKey; -import net.minecraft.world.item.Item; -import net.minecraft.world.level.block.Blocks; -import net.minecraft.server.Bootstrap; -import net.neoforged.fml.loading.LoadingModList; -import net.neoforged.neoforge.registries.GameData; - -import org.junit.BeforeClass; import org.junit.Test; public class CobblestoneTagPolicyTest { - @BeforeClass - public static void initializeRegistries() { - SharedConstants.tryDetectVersion(); - try { - Field field = Bootstrap.class.getDeclaredField("isBootstrapped"); - field.setAccessible(true); - if (!field.getBoolean(null)) { - field.setBoolean(null, true); - LoadingModList.of(Collections.emptyList(), Collections.emptyList(), - Collections.emptyList(), Collections.emptyList(), Collections.emptyMap()); - BuiltInRegistries.BLOCK.size(); - BuiltInRegistries.bootStrap(); - GameData.vanillaSnapshot(); - } - } catch (ReflectiveOperationException exception) { - throw new AssertionError("Unable to initialize the isolated tag registry", exception); - } - } - @Test public void rebuiltTagPreservesVanillaAndAddsOrRemovesConfiguredElements() { - Holder vanilla = holder(Blocks.COBBLESTONE.asItem()); - Holder mineralogyStandIn = holder(Blocks.BASALT.asItem()); - TagKey cobblestone = TagKey.create(Registries.ITEM, - ResourceLocation.fromNamespaceAndPath("forge", "cobblestone")); - Map, List>> tags = new IdentityHashMap<>(); - tags.put(cobblestone, list(vanilla)); - - CobblestoneTagPolicy.updateTag(tags, BuiltInRegistries.ITEM, Registries.ITEM, - cobblestone.location(), set(mineralogyStandIn), true); - assertEquals(list(vanilla, mineralogyStandIn), tags.get(cobblestone)); - - CobblestoneTagPolicy.updateTag(tags, BuiltInRegistries.ITEM, Registries.ITEM, - cobblestone.location(), set(mineralogyStandIn), false); - assertEquals(list(vanilla), tags.get(cobblestone)); - } - - private static Holder holder(Item item) { - return BuiltInRegistries.ITEM.getHolderOrThrow( - BuiltInRegistries.ITEM.getResourceKey(item).get()); + assertEquals(list("minecraft:cobblestone", "mineralogy:basalt", "mineralogy:chert"), + CobblestoneTagPolicy.rebuildValues( + list("minecraft:cobblestone"), + set("mineralogy:basalt"), true, set("mineralogy:chert"))); + assertEquals(list("minecraft:cobblestone", "mineralogy:chert"), + CobblestoneTagPolicy.rebuildValues( + list("minecraft:cobblestone", "mineralogy:basalt", "mineralogy:chert"), + set("mineralogy:basalt"), false, set("mineralogy:chert"))); } @SafeVarargs private static Set set(T... values) { Set result = new LinkedHashSet<>(); - for (T value : values) result.add(value); + for (T value : values) { + result.add(value); + } return result; } @SafeVarargs private static List list(T... values) { List result = new ArrayList<>(); - for (T value : values) result.add(value); + for (T value : values) { + result.add(value); + } return result; } }